blob: bad97f47eb9f5b02385c76c67f902c74a8721f5e [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"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070060#include "iwl-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/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -070094 * iwl_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 Berg246ed352010-08-23 10:46:32 +0200101int iwl_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);
Zhu Yib481de92007-09-25 17:54:57 -0700108
Tomas Winklerfee12472008-04-03 16:05:21 -0700109 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800110 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700111
112 /* always get timestamp with Rx frame */
Johannes Berg246ed352010-08-23 10:46:32 +0200113 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700114
Johannes Berg246ed352010-08-23 10:46:32 +0200115 ret = iwl_check_rxon_cmd(priv, ctx);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800116 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800117 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700118 return -EINVAL;
119 }
120
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800121 /*
122 * receive commit_rxon request
123 * abort any previous channel switch if still in process
124 */
125 if (priv->switch_rxon.switch_in_progress &&
Johannes Berg246ed352010-08-23 10:46:32 +0200126 (priv->switch_rxon.channel != ctx->staging.channel)) {
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800127 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
128 le16_to_cpu(priv->switch_rxon.channel));
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700129 iwl_chswitch_done(priv, false);
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800130 }
131
Zhu Yib481de92007-09-25 17:54:57 -0700132 /* If we don't need to send a full RXON, we can use
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700133 * iwl_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700134 * and other flags for the current radio configuration. */
Johannes Berg246ed352010-08-23 10:46:32 +0200135 if (!iwl_full_rxon_required(priv, ctx)) {
136 ret = iwl_send_rxon_assoc(priv, ctx);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800137 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800138 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800139 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700140 }
141
Johannes Berg246ed352010-08-23 10:46:32 +0200142 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
143 iwl_print_rx_config_cmd(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -0700144 return 0;
145 }
146
Zhu Yib481de92007-09-25 17:54:57 -0700147 /* If we are currently associated and the new config requires
148 * an RXON_ASSOC and the new config wants the associated mask enabled,
149 * we must clear the associated from the active configuration
150 * before we apply the new config */
Johannes Berg246ed352010-08-23 10:46:32 +0200151 if (iwl_is_associated_ctx(ctx) && new_assoc) {
Tomas Winklere1623442009-01-27 14:27:56 -0800152 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700153 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
154
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200155 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200156 sizeof(struct iwl_rxon_cmd),
157 active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700158
159 /* If the mask clearing failed then we set
160 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800161 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700162 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800163 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800164 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700165 }
Johannes Bergdcef7322010-08-27 08:55:52 -0700166 iwl_clear_ucode_stations(priv, ctx);
167 iwl_restore_stations(priv, ctx);
Johannes Bergc10afb62010-08-23 10:46:43 +0200168 ret = iwl_restore_default_wep_keys(priv, ctx);
Johannes Berg335348b2010-03-30 10:11:46 -0700169 if (ret) {
170 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
171 return ret;
172 }
Zhu Yib481de92007-09-25 17:54:57 -0700173 }
174
Tomas Winklere1623442009-01-27 14:27:56 -0800175 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700176 "* with%s RXON_FILTER_ASSOC_MSK\n"
177 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700178 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800179 (new_assoc ? "" : "out"),
Johannes Berg246ed352010-08-23 10:46:32 +0200180 le16_to_cpu(ctx->staging.channel),
181 ctx->staging.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700182
Johannes Berg246ed352010-08-23 10:46:32 +0200183 iwl_set_rxon_hwcrypto(priv, ctx, !priv->cfg->mod_params->sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800184
185 /* Apply the new configuration
Reinette Chatre7e246192010-02-18 22:58:32 -0800186 * RXON unassoc clears the station table in uCode so restoration of
187 * stations is needed after it (the RXON command) completes
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800188 */
189 if (!new_assoc) {
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200190 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200191 sizeof(struct iwl_rxon_cmd), &ctx->staging);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800192 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800193 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800194 return ret;
195 }
Frans Pop91dd6c22010-03-24 14:19:58 -0700196 IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON.\n");
Johannes Berg246ed352010-08-23 10:46:32 +0200197 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
Johannes Bergdcef7322010-08-27 08:55:52 -0700198 iwl_clear_ucode_stations(priv, ctx);
199 iwl_restore_stations(priv, ctx);
Johannes Bergc10afb62010-08-23 10:46:43 +0200200 ret = iwl_restore_default_wep_keys(priv, ctx);
Johannes Berg335348b2010-03-30 10:11:46 -0700201 if (ret) {
202 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
203 return ret;
204 }
Zhu Yib481de92007-09-25 17:54:57 -0700205 }
206
Johannes Berg19cc1082009-05-08 13:44:36 -0700207 priv->start_calib = 0;
Tomas Winkler91851592008-06-30 17:23:14 +0800208 if (new_assoc) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800209 /* Apply the new configuration
210 * RXON assoc doesn't clear the station table in uCode,
211 */
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200212 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200213 sizeof(struct iwl_rxon_cmd), &ctx->staging);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800214 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800215 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800216 return ret;
217 }
Johannes Berg246ed352010-08-23 10:46:32 +0200218 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700219 }
Johannes Berg246ed352010-08-23 10:46:32 +0200220 iwl_print_rx_config_cmd(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -0700221
Zhu Yi36da7d72008-07-11 11:53:40 +0800222 iwl_init_sensitivity(priv);
223
224 /* If we issue a new RXON command which required a tune then we must
225 * send a new TXPOWER command or we won't be able to Tx any frames */
226 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
227 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800228 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800229 return ret;
230 }
231
Zhu Yib481de92007-09-25 17:54:57 -0700232 return 0;
233}
234
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700235void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700236{
Johannes Berg246ed352010-08-23 10:46:32 +0200237 struct iwl_rxon_context *ctx;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700238
Johannes Berg246ed352010-08-23 10:46:32 +0200239 if (priv->cfg->ops->hcmd->set_rxon_chain) {
240 for_each_context(priv, ctx) {
241 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
242 iwlcore_commit_rxon(priv, ctx);
243 }
244 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700245}
246
Tomas Winklerfcab4232008-05-15 13:54:01 +0800247static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700248{
249 struct list_head *element;
250
Tomas Winklere1623442009-01-27 14:27:56 -0800251 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700252 priv->frames_count);
253
254 while (!list_empty(&priv->free_frames)) {
255 element = priv->free_frames.next;
256 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800257 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700258 priv->frames_count--;
259 }
260
261 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800262 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700263 priv->frames_count);
264 priv->frames_count = 0;
265 }
266}
267
Tomas Winklerfcab4232008-05-15 13:54:01 +0800268static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700269{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800270 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700271 struct list_head *element;
272 if (list_empty(&priv->free_frames)) {
273 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
274 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800275 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700276 return NULL;
277 }
278
279 priv->frames_count++;
280 return frame;
281 }
282
283 element = priv->free_frames.next;
284 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800285 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700286}
287
Tomas Winklerfcab4232008-05-15 13:54:01 +0800288static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700289{
290 memset(frame, 0, sizeof(*frame));
291 list_add(&frame->list, &priv->free_frames);
292}
293
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800294static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800295 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200296 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700297{
Johannes Berg6abbe552010-07-15 05:59:07 -0700298 if (!priv->ibss_beacon)
Zhu Yib481de92007-09-25 17:54:57 -0700299 return 0;
300
301 if (priv->ibss_beacon->len > left)
302 return 0;
303
304 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
305
306 return priv->ibss_beacon->len;
307}
308
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800309/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
310static void iwl_set_beacon_tim(struct iwl_priv *priv,
311 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
312 u8 *beacon, u32 frame_size)
313{
314 u16 tim_idx;
315 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
316
317 /*
318 * The index is relative to frame start but we start looking at the
319 * variable-length part of the beacon.
320 */
321 tim_idx = mgmt->u.beacon.variable - beacon;
322
323 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
324 while ((tim_idx < (frame_size - 2)) &&
325 (beacon[tim_idx] != WLAN_EID_TIM))
326 tim_idx += beacon[tim_idx+1] + 2;
327
328 /* If TIM field was found, set variables */
329 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
330 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
331 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
332 } else
333 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
334}
335
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700336static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800337 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800338{
339 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800340 u32 frame_size;
341 u32 rate_flags;
342 u32 rate;
343 /*
344 * We have to set up the TX command, the TX Beacon command, and the
345 * beacon contents.
346 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800347
Johannes Berg76d04812010-08-23 10:46:47 +0200348 lockdep_assert_held(&priv->mutex);
349
350 if (!priv->beacon_ctx) {
351 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
352 return -EINVAL;
353 }
354
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800355 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800356 tx_beacon_cmd = &frame->u.beacon;
357 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
358
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800359 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800360 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800361 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800362 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
363 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800364
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800365 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800366 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Johannes Berg76d04812010-08-23 10:46:47 +0200367 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800368 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800369 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800370 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
371
372 /* Set up TX beacon command fields */
373 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
374 frame_size);
375
376 /* Set up packet rate and flags */
Johannes Berg76d04812010-08-23 10:46:47 +0200377 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
Johannes Berg0e1654f2010-05-18 02:48:36 -0700378 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
379 priv->hw_params.valid_tx_ant);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800380 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
381 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
382 rate_flags |= RATE_MCS_CCK_MSK;
383 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
384 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800385
386 return sizeof(*tx_beacon_cmd) + frame_size;
387}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700388static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700389{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800390 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700391 unsigned int frame_size;
392 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700393
Tomas Winklerfcab4232008-05-15 13:54:01 +0800394 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700395 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800396 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700397 "command.\n");
398 return -ENOMEM;
399 }
400
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800401 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
402 if (!frame_size) {
403 IWL_ERR(priv, "Error configuring the beacon command\n");
404 iwl_free_frame(priv, frame);
405 return -EINVAL;
406 }
Zhu Yib481de92007-09-25 17:54:57 -0700407
Tomas Winkler857485c2008-03-21 13:53:44 -0700408 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700409 &frame->u.cmd[0]);
410
Tomas Winklerfcab4232008-05-15 13:54:01 +0800411 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700412
413 return rc;
414}
415
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800416static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
417{
418 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
419
420 dma_addr_t addr = get_unaligned_le32(&tb->lo);
421 if (sizeof(dma_addr_t) > sizeof(u32))
422 addr |=
423 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
424
425 return addr;
426}
427
428static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
429{
430 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
431
432 return le16_to_cpu(tb->hi_n_len) >> 4;
433}
434
435static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
436 dma_addr_t addr, u16 len)
437{
438 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
439 u16 hi_n_len = len << 4;
440
441 put_unaligned_le32(addr, &tb->lo);
442 if (sizeof(dma_addr_t) > sizeof(u32))
443 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
444
445 tb->hi_n_len = cpu_to_le16(hi_n_len);
446
447 tfd->num_tbs = idx + 1;
448}
449
450static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
451{
452 return tfd->num_tbs & 0x1f;
453}
454
455/**
456 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
457 * @priv - driver private data
458 * @txq - tx queue
459 *
460 * Does NOT advance any TFD circular buffer read/write indexes
461 * Does NOT free the TFD itself (which is within circular buffer)
462 */
463void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
464{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800465 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800466 struct iwl_tfd *tfd;
467 struct pci_dev *dev = priv->pci_dev;
468 int index = txq->q.read_ptr;
469 int i;
470 int num_tbs;
471
472 tfd = &tfd_tmp[index];
473
474 /* Sanity check on number of chunks */
475 num_tbs = iwl_tfd_get_num_tbs(tfd);
476
477 if (num_tbs >= IWL_NUM_OF_TBS) {
478 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
479 /* @todo issue fatal error, it is quite serious situation */
480 return;
481 }
482
483 /* Unmap tx_cmd */
484 if (num_tbs)
485 pci_unmap_single(dev,
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900486 dma_unmap_addr(&txq->meta[index], mapping),
487 dma_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800488 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800489
490 /* Unmap chunks, if any. */
Johannes Bergff0d91c2010-05-17 02:37:34 -0700491 for (i = 1; i < num_tbs; i++)
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800492 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
493 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
494
Johannes Bergff0d91c2010-05-17 02:37:34 -0700495 /* free SKB */
496 if (txq->txb) {
497 struct sk_buff *skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700498
Johannes Bergff0d91c2010-05-17 02:37:34 -0700499 skb = txq->txb[txq->q.read_ptr].skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700500
Johannes Bergff0d91c2010-05-17 02:37:34 -0700501 /* can be called from irqs-disabled context */
502 if (skb) {
503 dev_kfree_skb_any(skb);
504 txq->txb[txq->q.read_ptr].skb = NULL;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800505 }
506 }
507}
508
509int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
510 struct iwl_tx_queue *txq,
511 dma_addr_t addr, u16 len,
512 u8 reset, u8 pad)
513{
514 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800515 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800516 u32 num_tbs;
517
518 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800519 tfd_tmp = (struct iwl_tfd *)txq->tfds;
520 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800521
522 if (reset)
523 memset(tfd, 0, sizeof(*tfd));
524
525 num_tbs = iwl_tfd_get_num_tbs(tfd);
526
527 /* Each TFD can point to a maximum 20 Tx buffers */
528 if (num_tbs >= IWL_NUM_OF_TBS) {
529 IWL_ERR(priv, "Error can not send more than %d chunks\n",
530 IWL_NUM_OF_TBS);
531 return -EINVAL;
532 }
533
534 BUG_ON(addr & ~DMA_BIT_MASK(36));
535 if (unlikely(addr & ~IWL_TX_DMA_MASK))
536 IWL_ERR(priv, "Unaligned address = %llx\n",
537 (unsigned long long)addr);
538
539 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
540
541 return 0;
542}
543
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800544/*
545 * Tell nic where to find circular buffer of Tx Frame Descriptors for
546 * given Tx queue, and enable the DMA channel used for that queue.
547 *
548 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
549 * channels supported in hardware.
550 */
551int iwl_hw_tx_queue_init(struct iwl_priv *priv,
552 struct iwl_tx_queue *txq)
553{
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800554 int txq_id = txq->q.id;
555
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800556 /* Circular buffer (TFD queue in DRAM) physical base address */
557 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
558 txq->q.dma_addr >> 8);
559
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800560 return 0;
561}
562
Zhu Yib481de92007-09-25 17:54:57 -0700563/******************************************************************************
564 *
565 * Generic RX handler implementations
566 *
567 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800568static void iwl_rx_reply_alive(struct iwl_priv *priv,
569 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700570{
Zhu Yi2f301222009-10-09 17:19:45 +0800571 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800572 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700573 struct delayed_work *pwork;
574
575 palive = &pkt->u.alive_frame;
576
Tomas Winklere1623442009-01-27 14:27:56 -0800577 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700578 "0x%01X 0x%01X\n",
579 palive->is_valid, palive->ver_type,
580 palive->ver_subtype);
581
582 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800583 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700584 memcpy(&priv->card_alive_init,
585 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800586 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700587 pwork = &priv->init_alive_start;
588 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800589 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700590 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800591 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700592 pwork = &priv->alive_start;
593 }
594
595 /* We delay the ALIVE response by 5ms to
596 * give the HW RF Kill time to activate... */
597 if (palive->is_valid == UCODE_VALID_OK)
598 queue_delayed_work(priv->workqueue, pwork,
599 msecs_to_jiffies(5));
600 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800601 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700602}
603
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700604static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700605{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700606 struct iwl_priv *priv =
607 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700608 struct sk_buff *beacon;
609
Johannes Berg76d04812010-08-23 10:46:47 +0200610 mutex_lock(&priv->mutex);
611 if (!priv->beacon_ctx) {
612 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
613 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700614 }
615
Johannes Berg76d04812010-08-23 10:46:47 +0200616 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
617 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
618 if (!beacon) {
619 IWL_ERR(priv, "update beacon failed\n");
620 goto out;
621 }
622
Zhu Yib481de92007-09-25 17:54:57 -0700623 /* new beacon skb is allocated every time; dispose previous.*/
624 if (priv->ibss_beacon)
625 dev_kfree_skb(priv->ibss_beacon);
626
627 priv->ibss_beacon = beacon;
Zhu Yib481de92007-09-25 17:54:57 -0700628
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700629 iwl_send_beacon_cmd(priv);
Johannes Berg76d04812010-08-23 10:46:47 +0200630 out:
631 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -0700632}
633
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700634static void iwl_bg_bt_runtime_config(struct work_struct *work)
635{
636 struct iwl_priv *priv =
637 container_of(work, struct iwl_priv, bt_runtime_config);
638
639 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
640 return;
641
642 /* dont send host command if rf-kill is on */
643 if (!iwl_is_ready_rf(priv))
644 return;
645 priv->cfg->ops->hcmd->send_bt_config(priv);
646}
647
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700648static void iwl_bg_bt_full_concurrency(struct work_struct *work)
649{
650 struct iwl_priv *priv =
651 container_of(work, struct iwl_priv, bt_full_concurrency);
Johannes Berg246ed352010-08-23 10:46:32 +0200652 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700653
654 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
655 return;
656
657 /* dont send host command if rf-kill is on */
658 if (!iwl_is_ready_rf(priv))
659 return;
660
661 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
662 priv->bt_full_concurrent ?
663 "full concurrency" : "3-wire");
664
665 /*
666 * LQ & RXON updated cmds must be sent before BT Config cmd
667 * to avoid 3-wire collisions
668 */
Johannes Berg246ed352010-08-23 10:46:32 +0200669 mutex_lock(&priv->mutex);
670 for_each_context(priv, ctx) {
671 if (priv->cfg->ops->hcmd->set_rxon_chain)
672 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
673 iwlcore_commit_rxon(priv, ctx);
674 }
675 mutex_unlock(&priv->mutex);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700676
677 priv->cfg->ops->hcmd->send_bt_config(priv);
678}
679
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800680/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700681 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800682 *
683 * This callback is provided in order to send a statistics request.
684 *
685 * This timer function is continually reset to execute within
686 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
687 * was received. We need to ensure we receive the statistics in order
688 * to update the temperature used for calibrating the TXPOWER.
689 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700690static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800691{
692 struct iwl_priv *priv = (struct iwl_priv *)data;
693
694 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
695 return;
696
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700697 /* dont send host command if rf-kill is on */
698 if (!iwl_is_ready_rf(priv))
699 return;
700
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800701 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800702}
703
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800704
705static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
706 u32 start_idx, u32 num_events,
707 u32 mode)
708{
709 u32 i;
710 u32 ptr; /* SRAM byte address of log data */
711 u32 ev, time, data; /* event log data */
712 unsigned long reg_flags;
713
714 if (mode == 0)
715 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
716 else
717 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
718
719 /* Make sure device is powered up for SRAM reads */
720 spin_lock_irqsave(&priv->reg_lock, reg_flags);
721 if (iwl_grab_nic_access(priv)) {
722 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
723 return;
724 }
725
726 /* Set starting address; reads will auto-increment */
727 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
728 rmb();
729
730 /*
731 * "time" is actually "data" for mode 0 (no timestamp).
732 * place event id # at far right for easier visual parsing.
733 */
734 for (i = 0; i < num_events; i++) {
735 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
736 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
737 if (mode == 0) {
738 trace_iwlwifi_dev_ucode_cont_event(priv,
739 0, time, ev);
740 } else {
741 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
742 trace_iwlwifi_dev_ucode_cont_event(priv,
743 time, data, ev);
744 }
745 }
746 /* Allow device to power down */
747 iwl_release_nic_access(priv);
748 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
749}
750
Johannes Berg875295f2010-01-22 14:22:55 -0800751static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800752{
753 u32 capacity; /* event log capacity in # entries */
754 u32 base; /* SRAM byte address of event log header */
755 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
756 u32 num_wraps; /* # times uCode wrapped to top of log */
757 u32 next_entry; /* index of next entry to be written by uCode */
758
759 if (priv->ucode_type == UCODE_INIT)
760 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
761 else
762 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
763 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
764 capacity = iwl_read_targ_mem(priv, base);
765 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
766 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
767 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
768 } else
769 return;
770
771 if (num_wraps == priv->event_log.num_wraps) {
772 iwl_print_cont_event_trace(priv,
773 base, priv->event_log.next_entry,
774 next_entry - priv->event_log.next_entry,
775 mode);
776 priv->event_log.non_wraps_count++;
777 } else {
778 if ((num_wraps - priv->event_log.num_wraps) > 1)
779 priv->event_log.wraps_more_count++;
780 else
781 priv->event_log.wraps_once_count++;
782 trace_iwlwifi_dev_ucode_wrap_event(priv,
783 num_wraps - priv->event_log.num_wraps,
784 next_entry, priv->event_log.next_entry);
785 if (next_entry < priv->event_log.next_entry) {
786 iwl_print_cont_event_trace(priv, base,
787 priv->event_log.next_entry,
788 capacity - priv->event_log.next_entry,
789 mode);
790
791 iwl_print_cont_event_trace(priv, base, 0,
792 next_entry, mode);
793 } else {
794 iwl_print_cont_event_trace(priv, base,
795 next_entry, capacity - next_entry,
796 mode);
797
798 iwl_print_cont_event_trace(priv, base, 0,
799 next_entry, mode);
800 }
801 }
802 priv->event_log.num_wraps = num_wraps;
803 priv->event_log.next_entry = next_entry;
804}
805
806/**
807 * iwl_bg_ucode_trace - Timer callback to log ucode event
808 *
809 * The timer is continually set to execute every
810 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
811 * this function is to perform continuous uCode event logging operation
812 * if enabled
813 */
814static void iwl_bg_ucode_trace(unsigned long data)
815{
816 struct iwl_priv *priv = (struct iwl_priv *)data;
817
818 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
819 return;
820
821 if (priv->event_log.ucode_trace) {
822 iwl_continuous_event_trace(priv);
823 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
824 mod_timer(&priv->ucode_trace,
825 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
826 }
827}
828
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700829static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800830 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700831{
Zhu Yi2f301222009-10-09 17:19:45 +0800832 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800833 struct iwl4965_beacon_notif *beacon =
834 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700835#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326a2008-06-12 09:47:11 +0800836 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700837
Tomas Winklere1623442009-01-27 14:27:56 -0800838 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700839 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800840 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700841 beacon->beacon_notify_hdr.failure_frame,
842 le32_to_cpu(beacon->ibss_mgr_status),
843 le32_to_cpu(beacon->high_tsf),
844 le32_to_cpu(beacon->low_tsf), rate);
845#endif
846
Johannes Berga85d7cc2010-07-31 08:34:10 -0700847 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
848
Johannes Berg05c914f2008-09-11 00:01:58 +0200849 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700850 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
851 queue_work(priv->workqueue, &priv->beacon_update);
852}
853
Zhu Yib481de92007-09-25 17:54:57 -0700854/* Handle notification from uCode that card's power state is changing
855 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700856static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800857 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700858{
Zhu Yi2f301222009-10-09 17:19:45 +0800859 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700860 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
861 unsigned long status = priv->status;
862
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800863 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700864 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800865 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
866 (flags & CT_CARD_DISABLED) ?
867 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700868
869 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800870 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700871
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700872 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700873 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
874
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700875 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
876 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700877
878 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700879 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700880 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700881 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700882 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700883 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800884 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -0700885 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700886 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800887 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -0700888 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700889
890 if (flags & HW_CARD_DISABLED)
891 set_bit(STATUS_RF_KILL_HW, &priv->status);
892 else
893 clear_bit(STATUS_RF_KILL_HW, &priv->status);
894
895
Zhu Yib481de92007-09-25 17:54:57 -0700896 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800897 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700898
899 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200900 test_bit(STATUS_RF_KILL_HW, &priv->status)))
901 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
902 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700903 else
904 wake_up_interruptible(&priv->wait_command_queue);
905}
906
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700907int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800908{
Tomas Winklere2e3c572008-07-18 13:53:04 +0800909 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800910 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800911 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
912 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
913 ~APMG_PS_CTRL_MSK_PWR_SRC);
914 } else {
915 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
916 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
917 ~APMG_PS_CTRL_MSK_PWR_SRC);
918 }
919
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700920 return 0;
Tomas Winklere2e3c572008-07-18 13:53:04 +0800921}
922
Wey-Yi Guy65550632010-06-24 13:18:35 -0700923static void iwl_bg_tx_flush(struct work_struct *work)
924{
925 struct iwl_priv *priv =
926 container_of(work, struct iwl_priv, tx_flush);
927
928 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
929 return;
930
931 /* do nothing if rf-kill is on */
932 if (!iwl_is_ready_rf(priv))
933 return;
934
935 if (priv->cfg->ops->lib->txfifo_flush) {
936 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
937 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
938 }
939}
940
Zhu Yib481de92007-09-25 17:54:57 -0700941/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700942 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700943 *
944 * Setup the RX handlers for each of the reply types sent from the uCode
945 * to the host.
946 *
947 * This function chains into the hardware specific files for them to setup
948 * any hardware specific handlers as well.
949 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800950static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700951{
Tomas Winkler885ba202008-05-29 16:34:55 +0800952 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700953 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
954 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800955 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
956 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700957 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700958 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700959 iwl_rx_pm_debug_statistics_notif;
960 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700961
Ben Cahill9fbab512007-11-29 11:09:47 +0800962 /*
963 * The same handler is used for both the REPLY to a discrete
964 * statistics request from the host as well as for the periodic
965 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700966 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800967 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800968 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800969
970 iwl_setup_rx_scan_handlers(priv);
971
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800972 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700973 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700974
Tomas Winklerc1354752008-05-29 16:35:04 +0800975 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
976 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800977 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700978 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
979 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800980 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700981 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800982 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700983 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700984}
985
Zhu Yib481de92007-09-25 17:54:57 -0700986/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800987 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700988 *
989 * Uses the priv->rx_handlers callback function array to invoke
990 * the appropriate handlers, including command responses,
991 * frame-received notifications, and other notifications.
992 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800993void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700994{
Tomas Winklera55360e2008-05-05 10:22:28 +0800995 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800996 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800997 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700998 u32 r, i;
999 int reclaim;
1000 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001001 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001002 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001003 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -07001004
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001005 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1006 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001007 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001008 i = rxq->read;
1009
1010 /* Rx interrupt, but nothing sent from uCode */
1011 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001012 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001013
Mohamed Abbas4752c932009-05-22 11:01:51 -07001014 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001015 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001016 if (total_empty < 0)
1017 total_empty += RX_QUEUE_SIZE;
1018
1019 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001020 fill_rx = 1;
1021
Zhu Yib481de92007-09-25 17:54:57 -07001022 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001023 int len;
1024
Zhu Yib481de92007-09-25 17:54:57 -07001025 rxb = rxq->queue[i];
1026
Ben Cahill9fbab512007-11-29 11:09:47 +08001027 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001028 * then a bug has been introduced in the queue refilling
1029 * routines -- catch it here */
1030 BUG_ON(rxb == NULL);
1031
1032 rxq->queue[i] = NULL;
1033
Zhu Yi2f301222009-10-09 17:19:45 +08001034 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1035 PAGE_SIZE << priv->hw_params.rx_page_order,
1036 PCI_DMA_FROMDEVICE);
1037 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001038
Johannes Bergf4989d92010-05-28 04:08:30 -07001039 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1040 len += sizeof(u32); /* account for status word */
1041 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001042
Zhu Yib481de92007-09-25 17:54:57 -07001043 /* Reclaim a command buffer only if this packet is a response
1044 * to a (driver-originated) command.
1045 * If the packet (e.g. Rx frame) originated from uCode,
1046 * there is no command buffer to reclaim.
1047 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1048 * but apparently a few don't get set; catch them here. */
1049 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1050 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001051 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001052 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001053 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001054 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1055 (pkt->hdr.cmd != REPLY_TX);
1056
1057 /* Based on type of command response or notification,
1058 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001059 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001060 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001061 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001062 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001063 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001064 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001065 } else {
1066 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001067 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001068 "r %d i %d No handler needed for %s, 0x%02x\n",
1069 r, i, get_cmd_string(pkt->hdr.cmd),
1070 pkt->hdr.cmd);
1071 }
1072
Zhu Yi29b1b262009-10-23 13:42:25 -07001073 /*
1074 * XXX: After here, we should always check rxb->page
1075 * against NULL before touching it or its virtual
1076 * memory (pkt). Because some rx_handler might have
1077 * already taken or freed the pages.
1078 */
1079
Zhu Yib481de92007-09-25 17:54:57 -07001080 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001081 /* Invoke any callbacks, transfer the buffer to caller,
1082 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001083 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001084 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001085 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001086 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001087 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001088 }
1089
Zhu Yi73005152009-10-23 13:42:32 -07001090 /* Reuse the page if possible. For notification packets and
1091 * SKBs that fail to Rx correctly, add them back into the
1092 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001093 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001094 if (rxb->page != NULL) {
1095 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1096 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1097 PCI_DMA_FROMDEVICE);
1098 list_add_tail(&rxb->list, &rxq->rx_free);
1099 rxq->free_count++;
1100 } else
1101 list_add_tail(&rxb->list, &rxq->rx_used);
1102
Zhu Yib481de92007-09-25 17:54:57 -07001103 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001104
Zhu Yib481de92007-09-25 17:54:57 -07001105 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001106 /* If there are a lot of unused frames,
1107 * restock the Rx queue so ucode wont assert. */
1108 if (fill_rx) {
1109 count++;
1110 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001111 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001112 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001113 count = 0;
1114 }
1115 }
Zhu Yib481de92007-09-25 17:54:57 -07001116 }
1117
1118 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001119 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001120 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001121 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -07001122 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001123 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001124}
Tomas Winklera55360e2008-05-05 10:22:28 +08001125
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001126/* call this function to flush any scheduled tasklet */
1127static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1128{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001129 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001130 synchronize_irq(priv->pci_dev->irq);
1131 tasklet_kill(&priv->irq_tasklet);
1132}
1133
Mohamed Abbasef850d72009-05-22 11:01:50 -07001134static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001135{
1136 u32 inta, handled = 0;
1137 u32 inta_fh;
1138 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001139 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001140#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001141 u32 inta_mask;
1142#endif
1143
1144 spin_lock_irqsave(&priv->lock, flags);
1145
1146 /* Ack/clear/reset pending uCode interrupts.
1147 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1148 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001149 inta = iwl_read32(priv, CSR_INT);
1150 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001151
1152 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1153 * Any new interrupts that happen after this, either while we're
1154 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001155 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1156 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001157
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001158#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001159 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001160 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001161 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001162 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001163 inta, inta_mask, inta_fh);
1164 }
1165#endif
1166
Zhu Yi2f301222009-10-09 17:19:45 +08001167 spin_unlock_irqrestore(&priv->lock, flags);
1168
Zhu Yib481de92007-09-25 17:54:57 -07001169 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1170 * atomic, make sure that inta covers all the interrupts that
1171 * we've discovered, even if FH interrupt came in just after
1172 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001173 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001174 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001175 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001176 inta |= CSR_INT_BIT_FH_TX;
1177
1178 /* Now service all interrupt bits discovered above. */
1179 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001180 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001181
1182 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001183 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001184
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001185 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001186 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001187
1188 handled |= CSR_INT_BIT_HW_ERR;
1189
Zhu Yib481de92007-09-25 17:54:57 -07001190 return;
1191 }
1192
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001193#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001194 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001195 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001196 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001197 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001198 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001199 priv->isr_stats.sch++;
1200 }
Zhu Yib481de92007-09-25 17:54:57 -07001201
1202 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001203 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001204 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001205 priv->isr_stats.alive++;
1206 }
Zhu Yib481de92007-09-25 17:54:57 -07001207 }
1208#endif
1209 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001210 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001211
Ben Cahill9fbab512007-11-29 11:09:47 +08001212 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001213 if (inta & CSR_INT_BIT_RF_KILL) {
1214 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001215 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001216 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1217 hw_rf_kill = 1;
1218
Reinette Chatre4c423a22009-07-17 09:30:26 -07001219 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001220 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001221
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001222 priv->isr_stats.rfkill++;
1223
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001224 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001225 * the driver allows loading the ucode even if the radio
1226 * is killed. Hence update the killswitch state here. The
1227 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001228 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001229 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1230 if (hw_rf_kill)
1231 set_bit(STATUS_RF_KILL_HW, &priv->status);
1232 else
1233 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001234 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001235 }
Zhu Yib481de92007-09-25 17:54:57 -07001236
1237 handled |= CSR_INT_BIT_RF_KILL;
1238 }
1239
Ben Cahill9fbab512007-11-29 11:09:47 +08001240 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001241 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001242 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001243 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001244 handled |= CSR_INT_BIT_CT_KILL;
1245 }
1246
1247 /* Error detected by uCode */
1248 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001249 IWL_ERR(priv, "Microcode SW error detected. "
1250 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001251 priv->isr_stats.sw++;
1252 priv->isr_stats.sw_err = inta;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001253 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001254 handled |= CSR_INT_BIT_SW_ERR;
1255 }
1256
Ben Cahillc2e61da2009-10-30 14:36:09 -07001257 /*
1258 * uCode wakes up after power-down sleep.
1259 * Tell device about any new tx or host commands enqueued,
1260 * and about any Rx buffers made available while asleep.
1261 */
Zhu Yib481de92007-09-25 17:54:57 -07001262 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001263 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001264 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001265 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1266 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001267 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001268 handled |= CSR_INT_BIT_WAKEUP;
1269 }
1270
1271 /* All uCode command responses, including Tx command responses,
1272 * Rx "responses" (frame-received notification), and other
1273 * notifications from uCode come through here*/
1274 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001275 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001276 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001277 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1278 }
1279
Ben Cahillc72cd192009-10-30 14:36:08 -07001280 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001281 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001282 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001283 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001284 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001285 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001286 priv->ucode_write_complete = 1;
1287 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001288 }
1289
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001290 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001291 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001292 priv->isr_stats.unhandled++;
1293 }
Zhu Yib481de92007-09-25 17:54:57 -07001294
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001295 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001296 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001297 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001298 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001299 }
1300
1301 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001302 /* only Re-enable if diabled by irq */
1303 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001304 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001305
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001306#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001307 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001308 inta = iwl_read32(priv, CSR_INT);
1309 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1310 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001311 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001312 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1313 }
1314#endif
Zhu Yib481de92007-09-25 17:54:57 -07001315}
1316
Mohamed Abbasef850d72009-05-22 11:01:50 -07001317/* tasklet for iwlagn interrupt */
1318static void iwl_irq_tasklet(struct iwl_priv *priv)
1319{
1320 u32 inta = 0;
1321 u32 handled = 0;
1322 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001323 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001324#ifdef CONFIG_IWLWIFI_DEBUG
1325 u32 inta_mask;
1326#endif
1327
1328 spin_lock_irqsave(&priv->lock, flags);
1329
1330 /* Ack/clear/reset pending uCode interrupts.
1331 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1332 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001333 /* There is a hardware bug in the interrupt mask function that some
1334 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1335 * they are disabled in the CSR_INT_MASK register. Furthermore the
1336 * ICT interrupt handling mechanism has another bug that might cause
1337 * these unmasked interrupts fail to be detected. We workaround the
1338 * hardware bugs here by ACKing all the possible interrupts so that
1339 * interrupt coalescing can still be achieved.
1340 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001341 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001342
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001343 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001344
1345#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001346 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001347 /* just for debug */
1348 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1349 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1350 inta, inta_mask);
1351 }
1352#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001353
1354 spin_unlock_irqrestore(&priv->lock, flags);
1355
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001356 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1357 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001358
1359 /* Now service all interrupt bits discovered above. */
1360 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001361 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001362
1363 /* Tell the device to stop sending interrupts */
1364 iwl_disable_interrupts(priv);
1365
1366 priv->isr_stats.hw++;
1367 iwl_irq_handle_error(priv);
1368
1369 handled |= CSR_INT_BIT_HW_ERR;
1370
Mohamed Abbasef850d72009-05-22 11:01:50 -07001371 return;
1372 }
1373
1374#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001375 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001376 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1377 if (inta & CSR_INT_BIT_SCD) {
1378 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1379 "the frame/frames.\n");
1380 priv->isr_stats.sch++;
1381 }
1382
1383 /* Alive notification via Rx interrupt will do the real work */
1384 if (inta & CSR_INT_BIT_ALIVE) {
1385 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1386 priv->isr_stats.alive++;
1387 }
1388 }
1389#endif
1390 /* Safely ignore these bits for debug checks below */
1391 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1392
1393 /* HW RF KILL switch toggled */
1394 if (inta & CSR_INT_BIT_RF_KILL) {
1395 int hw_rf_kill = 0;
1396 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1397 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1398 hw_rf_kill = 1;
1399
Reinette Chatre4c423a22009-07-17 09:30:26 -07001400 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001401 hw_rf_kill ? "disable radio" : "enable radio");
1402
1403 priv->isr_stats.rfkill++;
1404
1405 /* driver only loads ucode once setting the interface up.
1406 * the driver allows loading the ucode even if the radio
1407 * is killed. Hence update the killswitch state here. The
1408 * rfkill handler will care about restarting if needed.
1409 */
1410 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1411 if (hw_rf_kill)
1412 set_bit(STATUS_RF_KILL_HW, &priv->status);
1413 else
1414 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001415 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001416 }
1417
1418 handled |= CSR_INT_BIT_RF_KILL;
1419 }
1420
1421 /* Chip got too hot and stopped itself */
1422 if (inta & CSR_INT_BIT_CT_KILL) {
1423 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1424 priv->isr_stats.ctkill++;
1425 handled |= CSR_INT_BIT_CT_KILL;
1426 }
1427
1428 /* Error detected by uCode */
1429 if (inta & CSR_INT_BIT_SW_ERR) {
1430 IWL_ERR(priv, "Microcode SW error detected. "
1431 " Restarting 0x%X.\n", inta);
1432 priv->isr_stats.sw++;
1433 priv->isr_stats.sw_err = inta;
1434 iwl_irq_handle_error(priv);
1435 handled |= CSR_INT_BIT_SW_ERR;
1436 }
1437
1438 /* uCode wakes up after power-down sleep */
1439 if (inta & CSR_INT_BIT_WAKEUP) {
1440 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1441 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001442 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1443 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001444
1445 priv->isr_stats.wakeup++;
1446
1447 handled |= CSR_INT_BIT_WAKEUP;
1448 }
1449
1450 /* All uCode command responses, including Tx command responses,
1451 * Rx "responses" (frame-received notification), and other
1452 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001453 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1454 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001455 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001456 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1457 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1458 iwl_write32(priv, CSR_FH_INT_STATUS,
1459 CSR49_FH_INT_RX_MASK);
1460 }
1461 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1462 handled |= CSR_INT_BIT_RX_PERIODIC;
1463 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1464 }
1465 /* Sending RX interrupt require many steps to be done in the
1466 * the device:
1467 * 1- write interrupt to current index in ICT table.
1468 * 2- dma RX frame.
1469 * 3- update RX shared data to indicate last write index.
1470 * 4- send interrupt.
1471 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001472 * but the shared data changes does not reflect this;
1473 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001474 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001475
1476 /* Disable periodic interrupt; we use it as just a one-shot. */
1477 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001478 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001479 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001480
1481 /*
1482 * Enable periodic interrupt in 8 msec only if we received
1483 * real RX interrupt (instead of just periodic int), to catch
1484 * any dangling Rx interrupt. If it was just the periodic
1485 * interrupt, there was no dangling Rx activity, and no need
1486 * to extend the periodic interrupt; one-shot is enough.
1487 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001488 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001489 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001490 CSR_INT_PERIODIC_ENA);
1491
Mohamed Abbasef850d72009-05-22 11:01:50 -07001492 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001493 }
1494
Ben Cahillc72cd192009-10-30 14:36:08 -07001495 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001496 if (inta & CSR_INT_BIT_FH_TX) {
1497 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001498 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001499 priv->isr_stats.tx++;
1500 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001501 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001502 priv->ucode_write_complete = 1;
1503 wake_up_interruptible(&priv->wait_command_queue);
1504 }
1505
1506 if (inta & ~handled) {
1507 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1508 priv->isr_stats.unhandled++;
1509 }
1510
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001511 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001512 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001513 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001514 }
1515
Mohamed Abbasef850d72009-05-22 11:01:50 -07001516 /* Re-enable all interrupts */
1517 /* only Re-enable if diabled by irq */
1518 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1519 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001520}
1521
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001522/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1523#define ACK_CNT_RATIO (50)
1524#define BA_TIMEOUT_CNT (5)
1525#define BA_TIMEOUT_MAX (16)
1526
1527/**
1528 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1529 *
1530 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1531 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1532 * operation state.
1533 */
1534bool iwl_good_ack_health(struct iwl_priv *priv,
1535 struct iwl_rx_packet *pkt)
1536{
1537 bool rc = true;
1538 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1539 int ba_timeout_delta;
1540
1541 actual_ack_cnt_delta =
1542 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001543 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001544 expected_ack_cnt_delta =
1545 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001546 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001547 ba_timeout_delta =
1548 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001549 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001550 if ((priv->_agn.agg_tids_count > 0) &&
1551 (expected_ack_cnt_delta > 0) &&
1552 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1553 < ACK_CNT_RATIO) &&
1554 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1555 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1556 " expected_ack_cnt = %d\n",
1557 actual_ack_cnt_delta, expected_ack_cnt_delta);
1558
Johannes Bergd73e4922010-05-06 12:18:41 -07001559#ifdef CONFIG_IWLWIFI_DEBUGFS
1560 /*
1561 * This is ifdef'ed on DEBUGFS because otherwise the
1562 * statistics aren't available. If DEBUGFS is set but
1563 * DEBUG is not, these will just compile out.
1564 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001565 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001566 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001567 IWL_DEBUG_RADIO(priv,
1568 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001569 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001570 ack_or_ba_timeout_collision);
1571#endif
1572 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1573 ba_timeout_delta);
1574 if (!actual_ack_cnt_delta &&
1575 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1576 rc = false;
1577 }
1578 return rc;
1579}
1580
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001581
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001582/*****************************************************************************
1583 *
1584 * sysfs attributes
1585 *
1586 *****************************************************************************/
1587
1588#ifdef CONFIG_IWLWIFI_DEBUG
1589
1590/*
1591 * The following adds a new attribute to the sysfs representation
1592 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1593 * used for controlling the debug level.
1594 *
1595 * See the level definitions in iwl for details.
1596 *
1597 * The debug_level being managed using sysfs below is a per device debug
1598 * level that is used instead of the global debug level if it (the per
1599 * device debug level) is set.
1600 */
1601static ssize_t show_debug_level(struct device *d,
1602 struct device_attribute *attr, char *buf)
1603{
1604 struct iwl_priv *priv = dev_get_drvdata(d);
1605 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1606}
1607static ssize_t store_debug_level(struct device *d,
1608 struct device_attribute *attr,
1609 const char *buf, size_t count)
1610{
1611 struct iwl_priv *priv = dev_get_drvdata(d);
1612 unsigned long val;
1613 int ret;
1614
1615 ret = strict_strtoul(buf, 0, &val);
1616 if (ret)
1617 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1618 else {
1619 priv->debug_level = val;
1620 if (iwl_alloc_traffic_mem(priv))
1621 IWL_ERR(priv,
1622 "Not enough memory to generate traffic log\n");
1623 }
1624 return strnlen(buf, count);
1625}
1626
1627static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1628 show_debug_level, store_debug_level);
1629
1630
1631#endif /* CONFIG_IWLWIFI_DEBUG */
1632
1633
1634static ssize_t show_temperature(struct device *d,
1635 struct device_attribute *attr, char *buf)
1636{
1637 struct iwl_priv *priv = dev_get_drvdata(d);
1638
1639 if (!iwl_is_alive(priv))
1640 return -EAGAIN;
1641
1642 return sprintf(buf, "%d\n", priv->temperature);
1643}
1644
1645static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1646
1647static ssize_t show_tx_power(struct device *d,
1648 struct device_attribute *attr, char *buf)
1649{
1650 struct iwl_priv *priv = dev_get_drvdata(d);
1651
1652 if (!iwl_is_ready_rf(priv))
1653 return sprintf(buf, "off\n");
1654 else
1655 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1656}
1657
1658static ssize_t store_tx_power(struct device *d,
1659 struct device_attribute *attr,
1660 const char *buf, size_t count)
1661{
1662 struct iwl_priv *priv = dev_get_drvdata(d);
1663 unsigned long val;
1664 int ret;
1665
1666 ret = strict_strtoul(buf, 10, &val);
1667 if (ret)
1668 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1669 else {
1670 ret = iwl_set_tx_power(priv, val, false);
1671 if (ret)
1672 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1673 ret);
1674 else
1675 ret = count;
1676 }
1677 return ret;
1678}
1679
1680static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1681
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001682static struct attribute *iwl_sysfs_entries[] = {
1683 &dev_attr_temperature.attr,
1684 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001685#ifdef CONFIG_IWLWIFI_DEBUG
1686 &dev_attr_debug_level.attr,
1687#endif
1688 NULL
1689};
1690
1691static struct attribute_group iwl_attribute_group = {
1692 .name = NULL, /* put in device directory */
1693 .attrs = iwl_sysfs_entries,
1694};
1695
Zhu Yib481de92007-09-25 17:54:57 -07001696/******************************************************************************
1697 *
1698 * uCode download functions
1699 *
1700 ******************************************************************************/
1701
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001702static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001703{
Tomas Winkler98c92212008-01-14 17:46:20 -08001704 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1705 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1706 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1707 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1708 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1709 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001710}
1711
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001712static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001713{
1714 /* Remove all resets to allow NIC to operate */
1715 iwl_write32(priv, CSR_RESET, 0);
1716}
1717
Johannes Bergdd7a2502010-04-28 23:33:10 -07001718struct iwlagn_ucode_capabilities {
1719 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001720 u32 standard_phy_calibration_size;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001721 bool pan;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001722};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001723
Johannes Bergb08dfd02010-01-29 11:54:56 -08001724static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001725static int iwl_mac_setup_register(struct iwl_priv *priv,
1726 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001727
Jay Sternberg39396082010-08-12 10:24:07 -07001728#define UCODE_EXPERIMENTAL_INDEX 100
1729#define UCODE_EXPERIMENTAL_TAG "exp"
1730
Johannes Bergb08dfd02010-01-29 11:54:56 -08001731static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001732{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001733 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001734 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001735
Jay Sternberg39396082010-08-12 10:24:07 -07001736 if (first) {
1737#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1738 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1739 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1740 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1741#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001742 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001743 sprintf(tag, "%d", priv->fw_index);
1744 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001745 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001746 sprintf(tag, "%d", priv->fw_index);
1747 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001748
1749 if (priv->fw_index < priv->cfg->ucode_api_min) {
1750 IWL_ERR(priv, "no suitable firmware found!\n");
1751 return -ENOENT;
1752 }
1753
Jay Sternberg39396082010-08-12 10:24:07 -07001754 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001755
Jay Sternberg39396082010-08-12 10:24:07 -07001756 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1757 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1758 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001759 priv->firmware_name);
1760
1761 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1762 &priv->pci_dev->dev, GFP_KERNEL, priv,
1763 iwl_ucode_callback);
1764}
1765
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001766struct iwlagn_firmware_pieces {
1767 const void *inst, *data, *init, *init_data, *boot;
1768 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1769
1770 u32 build;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001771
1772 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1773 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001774};
1775
1776static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1777 const struct firmware *ucode_raw,
1778 struct iwlagn_firmware_pieces *pieces)
1779{
1780 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1781 u32 api_ver, hdr_size;
1782 const u8 *src;
1783
1784 priv->ucode_ver = le32_to_cpu(ucode->ver);
1785 api_ver = IWL_UCODE_API(priv->ucode_ver);
1786
1787 switch (api_ver) {
1788 default:
1789 /*
1790 * 4965 doesn't revision the firmware file format
1791 * along with the API version, it always uses v1
1792 * file format.
1793 */
1794 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1795 CSR_HW_REV_TYPE_4965) {
1796 hdr_size = 28;
1797 if (ucode_raw->size < hdr_size) {
1798 IWL_ERR(priv, "File size too small!\n");
1799 return -EINVAL;
1800 }
1801 pieces->build = le32_to_cpu(ucode->u.v2.build);
1802 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1803 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1804 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1805 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1806 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1807 src = ucode->u.v2.data;
1808 break;
1809 }
1810 /* fall through for 4965 */
1811 case 0:
1812 case 1:
1813 case 2:
1814 hdr_size = 24;
1815 if (ucode_raw->size < hdr_size) {
1816 IWL_ERR(priv, "File size too small!\n");
1817 return -EINVAL;
1818 }
1819 pieces->build = 0;
1820 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1821 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1822 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1823 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1824 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1825 src = ucode->u.v1.data;
1826 break;
1827 }
1828
1829 /* Verify size of file vs. image size info in file's header */
1830 if (ucode_raw->size != hdr_size + pieces->inst_size +
1831 pieces->data_size + pieces->init_size +
1832 pieces->init_data_size + pieces->boot_size) {
1833
1834 IWL_ERR(priv,
1835 "uCode file size %d does not match expected size\n",
1836 (int)ucode_raw->size);
1837 return -EINVAL;
1838 }
1839
1840 pieces->inst = src;
1841 src += pieces->inst_size;
1842 pieces->data = src;
1843 src += pieces->data_size;
1844 pieces->init = src;
1845 src += pieces->init_size;
1846 pieces->init_data = src;
1847 src += pieces->init_data_size;
1848 pieces->boot = src;
1849 src += pieces->boot_size;
1850
1851 return 0;
1852}
1853
Johannes Bergdd7a2502010-04-28 23:33:10 -07001854static int iwlagn_wanted_ucode_alternative = 1;
1855
1856static int iwlagn_load_firmware(struct iwl_priv *priv,
1857 const struct firmware *ucode_raw,
1858 struct iwlagn_firmware_pieces *pieces,
1859 struct iwlagn_ucode_capabilities *capa)
1860{
1861 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1862 struct iwl_ucode_tlv *tlv;
1863 size_t len = ucode_raw->size;
1864 const u8 *data;
1865 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1866 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001867 u32 tlv_len;
1868 enum iwl_ucode_tlv_type tlv_type;
1869 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001870
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001871 if (len < sizeof(*ucode)) {
1872 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001873 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001874 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001875
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001876 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1877 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1878 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001879 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001880 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001881
1882 /*
1883 * Check which alternatives are present, and "downgrade"
1884 * when the chosen alternative is not present, warning
1885 * the user when that happens. Some files may not have
1886 * any alternatives, so don't warn in that case.
1887 */
1888 alternatives = le64_to_cpu(ucode->alternatives);
1889 tmp = wanted_alternative;
1890 if (wanted_alternative > 63)
1891 wanted_alternative = 63;
1892 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1893 wanted_alternative--;
1894 if (wanted_alternative && wanted_alternative != tmp)
1895 IWL_WARN(priv,
1896 "uCode alternative %d not available, choosing %d\n",
1897 tmp, wanted_alternative);
1898
1899 priv->ucode_ver = le32_to_cpu(ucode->ver);
1900 pieces->build = le32_to_cpu(ucode->build);
1901 data = ucode->data;
1902
1903 len -= sizeof(*ucode);
1904
Johannes Berg704da532010-07-14 09:34:50 -07001905 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001906 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001907
1908 len -= sizeof(*tlv);
1909 tlv = (void *)data;
1910
1911 tlv_len = le32_to_cpu(tlv->length);
1912 tlv_type = le16_to_cpu(tlv->type);
1913 tlv_alt = le16_to_cpu(tlv->alternative);
1914 tlv_data = tlv->data;
1915
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001916 if (len < tlv_len) {
1917 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1918 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001919 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001920 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001921 len -= ALIGN(tlv_len, 4);
1922 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1923
1924 /*
1925 * Alternative 0 is always valid.
1926 *
1927 * Skip alternative TLVs that are not selected.
1928 */
1929 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1930 continue;
1931
1932 switch (tlv_type) {
1933 case IWL_UCODE_TLV_INST:
1934 pieces->inst = tlv_data;
1935 pieces->inst_size = tlv_len;
1936 break;
1937 case IWL_UCODE_TLV_DATA:
1938 pieces->data = tlv_data;
1939 pieces->data_size = tlv_len;
1940 break;
1941 case IWL_UCODE_TLV_INIT:
1942 pieces->init = tlv_data;
1943 pieces->init_size = tlv_len;
1944 break;
1945 case IWL_UCODE_TLV_INIT_DATA:
1946 pieces->init_data = tlv_data;
1947 pieces->init_data_size = tlv_len;
1948 break;
1949 case IWL_UCODE_TLV_BOOT:
1950 pieces->boot = tlv_data;
1951 pieces->boot_size = tlv_len;
1952 break;
1953 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001954 if (tlv_len != sizeof(u32))
1955 goto invalid_tlv_len;
1956 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001957 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001958 break;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001959 case IWL_UCODE_TLV_PAN:
1960 if (tlv_len)
1961 goto invalid_tlv_len;
1962 capa->pan = true;
1963 break;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001964 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001965 if (tlv_len != sizeof(u32))
1966 goto invalid_tlv_len;
1967 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001968 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001969 break;
1970 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001971 if (tlv_len != sizeof(u32))
1972 goto invalid_tlv_len;
1973 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001974 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001975 break;
1976 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001977 if (tlv_len != sizeof(u32))
1978 goto invalid_tlv_len;
1979 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001980 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001981 break;
1982 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001983 if (tlv_len != sizeof(u32))
1984 goto invalid_tlv_len;
1985 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001986 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001987 break;
1988 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001989 if (tlv_len != sizeof(u32))
1990 goto invalid_tlv_len;
1991 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001992 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001993 break;
1994 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001995 if (tlv_len != sizeof(u32))
1996 goto invalid_tlv_len;
1997 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001998 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001999 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002000 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
2001 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07002002 goto invalid_tlv_len;
2003 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002004 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002005 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002006 if (tlv_len != sizeof(u32))
2007 goto invalid_tlv_len;
2008 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002009 le32_to_cpup((__le32 *)tlv_data);
2010 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002011 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002012 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07002013 break;
2014 }
2015 }
2016
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002017 if (len) {
2018 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
2019 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07002020 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002021 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07002022
Johannes Berg704da532010-07-14 09:34:50 -07002023 return 0;
2024
2025 invalid_tlv_len:
2026 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
2027 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
2028
2029 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002030}
2031
Johannes Bergb08dfd02010-01-29 11:54:56 -08002032/**
2033 * iwl_ucode_callback - callback when firmware was loaded
2034 *
2035 * If loaded successfully, copies the firmware into buffers
2036 * for the card to fetch (via DMA).
2037 */
2038static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
2039{
2040 struct iwl_priv *priv = context;
2041 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002042 int err;
2043 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002044 const unsigned int api_max = priv->cfg->ucode_api_max;
2045 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002046 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07002047 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002048 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002049 struct iwlagn_ucode_capabilities ucode_capa = {
2050 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002051 .standard_phy_calibration_size =
2052 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07002053 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002054
2055 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07002056
Johannes Bergb08dfd02010-01-29 11:54:56 -08002057 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07002058 if (priv->fw_index <= priv->cfg->ucode_api_max)
2059 IWL_ERR(priv,
2060 "request for firmware file '%s' failed.\n",
2061 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002062 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002063 }
2064
Johannes Bergb08dfd02010-01-29 11:54:56 -08002065 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
2066 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07002067
Johannes Berg22adba22010-04-28 12:09:14 -07002068 /* Make sure that we got at least the API version number */
2069 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002070 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08002071 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002072 }
2073
2074 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002075 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002076
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002077 if (ucode->ver)
2078 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
2079 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07002080 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
2081 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002082
2083 if (err)
2084 goto try_again;
2085
Reinette Chatrea0987a82008-12-02 12:14:06 -08002086 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002087 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07002088
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002089 /*
2090 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08002091 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002092 * on the API version read from firmware header from here on forward
2093 */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002094 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002095 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002096 "Driver supports v%u, firmware is v%u.\n",
2097 api_max, api_ver);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002098 goto try_again;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002099 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08002100
Reinette Chatrea0987a82008-12-02 12:14:06 -08002101 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08002102 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002103 "got v%u. New firmware can be obtained "
2104 "from http://www.intellinuxwireless.org.\n",
2105 api_max, api_ver);
2106
Johannes Berg3e4de762010-04-28 12:09:12 -07002107 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07002108 sprintf(buildstr, " build %u%s", build,
2109 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
2110 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07002111 else
2112 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08002113
Johannes Berg3e4de762010-04-28 12:09:12 -07002114 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002115 IWL_UCODE_MAJOR(priv->ucode_ver),
2116 IWL_UCODE_MINOR(priv->ucode_ver),
2117 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07002118 IWL_UCODE_SERIAL(priv->ucode_ver),
2119 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002120
Johannes Berg3e4de762010-04-28 12:09:12 -07002121 snprintf(priv->hw->wiphy->fw_version,
2122 sizeof(priv->hw->wiphy->fw_version),
2123 "%u.%u.%u.%u%s",
2124 IWL_UCODE_MAJOR(priv->ucode_ver),
2125 IWL_UCODE_MINOR(priv->ucode_ver),
2126 IWL_UCODE_API(priv->ucode_ver),
2127 IWL_UCODE_SERIAL(priv->ucode_ver),
2128 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07002129
Johannes Bergb08dfd02010-01-29 11:54:56 -08002130 /*
2131 * For any of the failures below (before allocating pci memory)
2132 * we will try to load a version with a smaller API -- maybe the
2133 * user just got a corrupted version of the latest API.
2134 */
2135
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002136 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2137 priv->ucode_ver);
2138 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
2139 pieces.inst_size);
2140 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
2141 pieces.data_size);
2142 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2143 pieces.init_size);
2144 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2145 pieces.init_data_size);
2146 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2147 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002148
2149 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002150 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2151 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2152 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002153 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002154 }
2155
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002156 if (pieces.data_size > priv->hw_params.max_data_size) {
2157 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2158 pieces.data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002159 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002160 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002161
2162 if (pieces.init_size > priv->hw_params.max_inst_size) {
2163 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2164 pieces.init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002165 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002166 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002167
2168 if (pieces.init_data_size > priv->hw_params.max_data_size) {
2169 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2170 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002171 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002172 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002173
2174 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2175 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2176 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002177 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002178 }
2179
2180 /* Allocate ucode buffers for card's bus-master loading ... */
2181
2182 /* Runtime instructions and 2 copies of data:
2183 * 1) unmodified from disk
2184 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002185 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002186 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002187
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002188 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002189 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002190
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002191 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002192 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002193
Zhu, Yi1f304e42009-01-23 13:45:22 -08002194 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2195 !priv->ucode_data_backup.v_addr)
2196 goto err_pci_alloc;
2197
Zhu Yib481de92007-09-25 17:54:57 -07002198 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002199 if (pieces.init_size && pieces.init_data_size) {
2200 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002201 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002202
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002203 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002204 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002205
2206 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2207 goto err_pci_alloc;
2208 }
Zhu Yib481de92007-09-25 17:54:57 -07002209
2210 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002211 if (pieces.boot_size) {
2212 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002213 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002214
Tomas Winkler90e759d2007-11-29 11:09:41 +08002215 if (!priv->ucode_boot.v_addr)
2216 goto err_pci_alloc;
2217 }
Zhu Yib481de92007-09-25 17:54:57 -07002218
Johannes Bergb2e640d2010-05-05 23:24:54 -07002219 /* Now that we can no longer fail, copy information */
2220
2221 /*
2222 * The (size - 16) / 12 formula is based on the information recorded
2223 * for each event, which is of mode 1 (including timestamp) for all
2224 * new microcodes that include this information.
2225 */
2226 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2227 if (pieces.init_evtlog_size)
2228 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2229 else
2230 priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size;
2231 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2232 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2233 if (pieces.inst_evtlog_size)
2234 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2235 else
2236 priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size;
2237 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2238
Johannes Bergece9c4e2010-08-23 10:46:49 +02002239 if (ucode_capa.pan) {
2240 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
Johannes Bergc10afb62010-08-23 10:46:43 +02002241 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
Johannes Bergece9c4e2010-08-23 10:46:49 +02002242 } else
2243 priv->sta_key_max_num = STA_KEY_MAX_NUM;
Johannes Bergc10afb62010-08-23 10:46:43 +02002244
Zhu Yib481de92007-09-25 17:54:57 -07002245 /* Copy images into buffers for card's bus-master reads ... */
2246
2247 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002248 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2249 pieces.inst_size);
2250 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002251
Tomas Winklere1623442009-01-27 14:27:56 -08002252 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002253 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2254
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002255 /*
2256 * Runtime data
2257 * NOTE: Copy into backup buffer will be done in iwl_up()
2258 */
2259 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2260 pieces.data_size);
2261 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2262 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002263
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002264 /* Initialization instructions */
2265 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002266 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002267 pieces.init_size);
2268 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002269 }
2270
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002271 /* Initialization data */
2272 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002273 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002274 pieces.init_data_size);
2275 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2276 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002277 }
2278
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002279 /* Bootstrap instructions */
2280 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2281 pieces.boot_size);
2282 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002283
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002284 /*
2285 * figure out the offset of chain noise reset and gain commands
2286 * base on the size of standard phy calibration commands table size
2287 */
2288 if (ucode_capa.standard_phy_calibration_size >
2289 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2290 ucode_capa.standard_phy_calibration_size =
2291 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2292
2293 priv->_agn.phy_calib_chain_noise_reset_cmd =
2294 ucode_capa.standard_phy_calibration_size;
2295 priv->_agn.phy_calib_chain_noise_gain_cmd =
2296 ucode_capa.standard_phy_calibration_size + 1;
2297
Johannes Bergb08dfd02010-01-29 11:54:56 -08002298 /**************************************************
2299 * This is still part of probe() in a sense...
2300 *
2301 * 9. Setup and register with mac80211 and debugfs
2302 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002303 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002304 if (err)
2305 goto out_unbind;
2306
2307 err = iwl_dbgfs_register(priv, DRV_NAME);
2308 if (err)
2309 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2310
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002311 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2312 &iwl_attribute_group);
2313 if (err) {
2314 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2315 goto out_unbind;
2316 }
2317
Zhu Yib481de92007-09-25 17:54:57 -07002318 /* We have our copies now, allow OS release its copies */
2319 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002320 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002321 return;
2322
2323 try_again:
2324 /* try next, if any */
2325 if (iwl_request_firmware(priv, false))
2326 goto out_unbind;
2327 release_firmware(ucode_raw);
2328 return;
Zhu Yib481de92007-09-25 17:54:57 -07002329
2330 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002331 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002332 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002333 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002334 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002335 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002336 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002337}
2338
Reinette Chatreb7a79402009-09-25 14:24:23 -07002339static const char *desc_lookup_text[] = {
2340 "OK",
2341 "FAIL",
2342 "BAD_PARAM",
2343 "BAD_CHECKSUM",
2344 "NMI_INTERRUPT_WDG",
2345 "SYSASSERT",
2346 "FATAL_ERROR",
2347 "BAD_COMMAND",
2348 "HW_ERROR_TUNE_LOCK",
2349 "HW_ERROR_TEMPERATURE",
2350 "ILLEGAL_CHAN_FREQ",
2351 "VCC_NOT_STABLE",
2352 "FH_ERROR",
2353 "NMI_INTERRUPT_HOST",
2354 "NMI_INTERRUPT_ACTION_PT",
2355 "NMI_INTERRUPT_UNKNOWN",
2356 "UCODE_VERSION_MISMATCH",
2357 "HW_ERROR_ABS_LOCK",
2358 "HW_ERROR_CAL_LOCK_FAIL",
2359 "NMI_INTERRUPT_INST_ACTION_PT",
2360 "NMI_INTERRUPT_DATA_ACTION_PT",
2361 "NMI_TRM_HW_ER",
2362 "NMI_INTERRUPT_TRM",
2363 "NMI_INTERRUPT_BREAK_POINT"
2364 "DEBUG_0",
2365 "DEBUG_1",
2366 "DEBUG_2",
2367 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002368};
2369
Jay Sternberg4b586452010-07-02 15:49:10 -07002370static struct { char *name; u8 num; } advanced_lookup[] = {
2371 { "NMI_INTERRUPT_WDG", 0x34 },
2372 { "SYSASSERT", 0x35 },
2373 { "UCODE_VERSION_MISMATCH", 0x37 },
2374 { "BAD_COMMAND", 0x38 },
2375 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2376 { "FATAL_ERROR", 0x3D },
2377 { "NMI_TRM_HW_ERR", 0x46 },
2378 { "NMI_INTERRUPT_TRM", 0x4C },
2379 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2380 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2381 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2382 { "NMI_INTERRUPT_HOST", 0x66 },
2383 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2384 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2385 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2386 { "ADVANCED_SYSASSERT", 0 },
2387};
2388
2389static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002390{
Jay Sternberg4b586452010-07-02 15:49:10 -07002391 int i;
2392 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002393
Jay Sternberg4b586452010-07-02 15:49:10 -07002394 if (num < max)
2395 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002396
Jay Sternberg4b586452010-07-02 15:49:10 -07002397 max = ARRAY_SIZE(advanced_lookup) - 1;
2398 for (i = 0; i < max; i++) {
2399 if (advanced_lookup[i].num == num)
2400 break;;
2401 }
2402 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002403}
2404
2405#define ERROR_START_OFFSET (1 * sizeof(u32))
2406#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2407
2408void iwl_dump_nic_error_log(struct iwl_priv *priv)
2409{
2410 u32 data2, line;
2411 u32 desc, time, count, base, data1;
2412 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002413 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002414
Johannes Bergb2e640d2010-05-05 23:24:54 -07002415 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002416 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002417 if (!base)
2418 base = priv->_agn.init_errlog_ptr;
2419 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002420 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002421 if (!base)
2422 base = priv->_agn.inst_errlog_ptr;
2423 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002424
2425 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002426 IWL_ERR(priv,
2427 "Not valid error log pointer 0x%08X for %s uCode\n",
2428 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002429 return;
2430 }
2431
2432 count = iwl_read_targ_mem(priv, base);
2433
2434 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2435 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2436 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2437 priv->status, count);
2438 }
2439
2440 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002441 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002442 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2443 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2444 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2445 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2446 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2447 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2448 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2449 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002450 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002451
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002452 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2453 blink1, blink2, ilink1, ilink2);
2454
Jay Sternberg87563712010-06-14 14:40:40 -07002455 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002456 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002457 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002458 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002459 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2460 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2461 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002462}
2463
2464#define EVENT_START_OFFSET (4 * sizeof(u32))
2465
2466/**
2467 * iwl_print_event_log - Dump error event log to syslog
2468 *
2469 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002470static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2471 u32 num_events, u32 mode,
2472 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002473{
2474 u32 i;
2475 u32 base; /* SRAM byte address of event log header */
2476 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2477 u32 ptr; /* SRAM byte address of log data */
2478 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002479 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002480
2481 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002482 return pos;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002483
2484 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002485 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002486 if (!base)
2487 base = priv->_agn.init_evtlog_ptr;
2488 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002489 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002490 if (!base)
2491 base = priv->_agn.inst_evtlog_ptr;
2492 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002493
2494 if (mode == 0)
2495 event_size = 2 * sizeof(u32);
2496 else
2497 event_size = 3 * sizeof(u32);
2498
2499 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2500
Ben Cahille5854472009-11-06 14:52:58 -08002501 /* Make sure device is powered up for SRAM reads */
2502 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2503 iwl_grab_nic_access(priv);
2504
2505 /* Set starting address; reads will auto-increment */
2506 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2507 rmb();
2508
Reinette Chatreb7a79402009-09-25 14:24:23 -07002509 /* "time" is actually "data" for mode 0 (no timestamp).
2510 * place event id # at far right for easier visual parsing. */
2511 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002512 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2513 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002514 if (mode == 0) {
2515 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002516 if (bufsz) {
2517 pos += scnprintf(*buf + pos, bufsz - pos,
2518 "EVT_LOG:0x%08x:%04u\n",
2519 time, ev);
2520 } else {
2521 trace_iwlwifi_dev_ucode_event(priv, 0,
2522 time, ev);
2523 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2524 time, ev);
2525 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002526 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002527 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002528 if (bufsz) {
2529 pos += scnprintf(*buf + pos, bufsz - pos,
2530 "EVT_LOGT:%010u:0x%08x:%04u\n",
2531 time, data, ev);
2532 } else {
2533 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002534 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002535 trace_iwlwifi_dev_ucode_event(priv, time,
2536 data, ev);
2537 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002538 }
2539 }
Ben Cahille5854472009-11-06 14:52:58 -08002540
2541 /* Allow device to power down */
2542 iwl_release_nic_access(priv);
2543 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002544 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002545}
2546
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002547/**
2548 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2549 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002550static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2551 u32 num_wraps, u32 next_entry,
2552 u32 size, u32 mode,
2553 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002554{
2555 /*
2556 * display the newest DEFAULT_LOG_ENTRIES entries
2557 * i.e the entries just before the next ont that uCode would fill.
2558 */
2559 if (num_wraps) {
2560 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002561 pos = iwl_print_event_log(priv,
2562 capacity - (size - next_entry),
2563 size - next_entry, mode,
2564 pos, buf, bufsz);
2565 pos = iwl_print_event_log(priv, 0,
2566 next_entry, mode,
2567 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002568 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002569 pos = iwl_print_event_log(priv, next_entry - size,
2570 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002571 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002572 if (next_entry < size) {
2573 pos = iwl_print_event_log(priv, 0, next_entry,
2574 mode, pos, buf, bufsz);
2575 } else {
2576 pos = iwl_print_event_log(priv, next_entry - size,
2577 size, mode, pos, buf, bufsz);
2578 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002579 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002580 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002581}
2582
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002583#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2584
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002585int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2586 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002587{
2588 u32 base; /* SRAM byte address of event log header */
2589 u32 capacity; /* event log capacity in # entries */
2590 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2591 u32 num_wraps; /* # times uCode wrapped to top of log */
2592 u32 next_entry; /* index of next entry to be written by uCode */
2593 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d2010-05-05 23:24:54 -07002594 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002595 int pos = 0;
2596 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002597
Johannes Bergb2e640d2010-05-05 23:24:54 -07002598 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002599 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002600 logsize = priv->_agn.init_evtlog_size;
2601 if (!base)
2602 base = priv->_agn.init_evtlog_ptr;
2603 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002604 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002605 logsize = priv->_agn.inst_evtlog_size;
2606 if (!base)
2607 base = priv->_agn.inst_evtlog_ptr;
2608 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002609
2610 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002611 IWL_ERR(priv,
2612 "Invalid event log pointer 0x%08X for %s uCode\n",
2613 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002614 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002615 }
2616
2617 /* event log header */
2618 capacity = iwl_read_targ_mem(priv, base);
2619 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2620 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2621 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2622
Johannes Bergb2e640d2010-05-05 23:24:54 -07002623 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002624 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002625 capacity, logsize);
2626 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002627 }
2628
Johannes Bergb2e640d2010-05-05 23:24:54 -07002629 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002630 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002631 next_entry, logsize);
2632 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002633 }
2634
Reinette Chatreb7a79402009-09-25 14:24:23 -07002635 size = num_wraps ? capacity : next_entry;
2636
2637 /* bail out if nothing in log */
2638 if (size == 0) {
2639 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002640 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002641 }
2642
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002643 /* enable/disable bt channel announcement */
2644 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2645
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002646#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002647 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002648 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2649 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2650#else
2651 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2652 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002653#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002654 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2655 size);
2656
2657#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002658 if (display) {
2659 if (full_log)
2660 bufsz = capacity * 48;
2661 else
2662 bufsz = size * 48;
2663 *buf = kmalloc(bufsz, GFP_KERNEL);
2664 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002665 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002666 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002667 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2668 /*
2669 * if uCode has wrapped back to top of log,
2670 * start at the oldest entry,
2671 * i.e the next one that uCode would fill.
2672 */
2673 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002674 pos = iwl_print_event_log(priv, next_entry,
2675 capacity - next_entry, mode,
2676 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002677 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002678 pos = iwl_print_event_log(priv, 0,
2679 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002680 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002681 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2682 next_entry, size, mode,
2683 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002684#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002685 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2686 next_entry, size, mode,
2687 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002688#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002689 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002690}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002691
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002692static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2693{
2694 struct iwl_ct_kill_config cmd;
2695 struct iwl_ct_kill_throttling_config adv_cmd;
2696 unsigned long flags;
2697 int ret = 0;
2698
2699 spin_lock_irqsave(&priv->lock, flags);
2700 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2701 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2702 spin_unlock_irqrestore(&priv->lock, flags);
2703 priv->thermal_throttle.ct_kill_toggle = false;
2704
2705 if (priv->cfg->support_ct_kill_exit) {
2706 adv_cmd.critical_temperature_enter =
2707 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2708 adv_cmd.critical_temperature_exit =
2709 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2710
2711 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2712 sizeof(adv_cmd), &adv_cmd);
2713 if (ret)
2714 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2715 else
2716 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2717 "succeeded, "
2718 "critical temperature enter is %d,"
2719 "exit is %d\n",
2720 priv->hw_params.ct_kill_threshold,
2721 priv->hw_params.ct_kill_exit_threshold);
2722 } else {
2723 cmd.critical_temperature_R =
2724 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2725
2726 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2727 sizeof(cmd), &cmd);
2728 if (ret)
2729 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2730 else
2731 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2732 "succeeded, "
2733 "critical temperature is %d\n",
2734 priv->hw_params.ct_kill_threshold);
2735 }
2736}
2737
Zhu Yib481de92007-09-25 17:54:57 -07002738/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002739 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002740 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002741 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002742 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002743static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002744{
Tomas Winkler57aab752008-04-14 21:16:03 -07002745 int ret = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02002746 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Zhu Yib481de92007-09-25 17:54:57 -07002747
Tomas Winklere1623442009-01-27 14:27:56 -08002748 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002749
2750 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2751 /* We had an error bringing up the hardware, so take it
2752 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002753 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002754 goto restart;
2755 }
2756
2757 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2758 * This is a paranoid check, because we would not have gotten the
2759 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002760 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002761 /* Runtime instruction load was bad;
2762 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002763 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002764 goto restart;
2765 }
2766
Tomas Winkler57aab752008-04-14 21:16:03 -07002767 ret = priv->cfg->ops->lib->alive_notify(priv);
2768 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002769 IWL_WARN(priv,
2770 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002771 goto restart;
2772 }
2773
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002774 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002775 set_bit(STATUS_ALIVE, &priv->status);
2776
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002777 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2778 /* Enable timer to monitor the driver queues */
2779 mod_timer(&priv->monitor_recover,
2780 jiffies +
2781 msecs_to_jiffies(priv->cfg->monitor_recover_period));
2782 }
2783
Tomas Winklerfee12472008-04-03 16:05:21 -07002784 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002785 return;
2786
Johannes Berg36d68252008-05-15 12:55:26 +02002787 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002788
Johannes Berg470ab2d2010-01-21 11:23:30 -08002789 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002790
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002791 /* Configure Tx antenna selection based on H/W config */
2792 if (priv->cfg->ops->hcmd->set_tx_ant)
2793 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2794
Johannes Berg246ed352010-08-23 10:46:32 +02002795 if (iwl_is_associated_ctx(ctx)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002796 struct iwl_rxon_cmd *active_rxon =
Johannes Berg246ed352010-08-23 10:46:32 +02002797 (struct iwl_rxon_cmd *)&ctx->active;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002798 /* apply any changes in staging */
Johannes Berg246ed352010-08-23 10:46:32 +02002799 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002800 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2801 } else {
2802 /* Initialize our rx_config data */
Johannes Berg1dda6d22010-04-29 04:43:06 -07002803 iwl_connection_init_rx_config(priv, NULL);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002804
2805 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02002806 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002807 }
2808
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002809 if (!priv->cfg->advanced_bt_coexist) {
2810 /* Configure Bluetooth device coexistence support */
2811 priv->cfg->ops->hcmd->send_bt_config(priv);
2812 }
Zhu Yib481de92007-09-25 17:54:57 -07002813
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002814 iwl_reset_run_time_calib(priv);
2815
Zhu Yib481de92007-09-25 17:54:57 -07002816 /* Configure the adapter for unassociated operation */
Johannes Berg246ed352010-08-23 10:46:32 +02002817 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002818
2819 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002820 iwl_rf_kill_ct_config(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002821
Johannes Berge932a602009-10-02 13:44:03 -07002822 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002823
Tomas Winklere1623442009-01-27 14:27:56 -08002824 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002825 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002826 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002827
Johannes Berge312c242009-08-07 15:41:51 -07002828 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002829 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2830
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002831
Zhu Yib481de92007-09-25 17:54:57 -07002832 return;
2833
2834 restart:
2835 queue_work(priv->workqueue, &priv->restart);
2836}
2837
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002838static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002839
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002840static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002841{
2842 unsigned long flags;
2843 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002844
Tomas Winklere1623442009-01-27 14:27:56 -08002845 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002846
Zhu Yib481de92007-09-25 17:54:57 -07002847 if (!exit_pending)
2848 set_bit(STATUS_EXIT_PENDING, &priv->status);
2849
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002850 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2851 * to prevent rearm timer */
2852 if (priv->cfg->ops->lib->recover_from_tx_stall)
2853 del_timer_sync(&priv->monitor_recover);
2854
Johannes Bergdcef7322010-08-27 08:55:52 -07002855 iwl_clear_ucode_stations(priv, NULL);
Johannes Berga194e322010-08-27 08:53:46 -07002856 iwl_dealloc_bcast_stations(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002857 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002858
Johannes Berga1174132010-08-23 07:56:59 -07002859 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002860 priv->bt_status = 0;
Wey-Yi Guya4b96cc2010-08-23 07:57:08 -07002861 priv->bt_traffic_load = priv->cfg->bt_init_traffic_load;
Johannes Berga1174132010-08-23 07:56:59 -07002862 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002863 priv->bt_full_concurrent = false;
2864 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002865
Zhu Yib481de92007-09-25 17:54:57 -07002866 /* Unblock any waiting calls */
2867 wake_up_interruptible_all(&priv->wait_command_queue);
2868
Zhu Yib481de92007-09-25 17:54:57 -07002869 /* Wipe out the EXIT_PENDING status bit if we are not actually
2870 * exiting the module */
2871 if (!exit_pending)
2872 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2873
2874 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002875 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002876
2877 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002878 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002879 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002880 spin_unlock_irqrestore(&priv->lock, flags);
2881 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002882
2883 if (priv->mac80211_registered)
2884 ieee80211_stop_queues(priv->hw);
2885
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002886 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002887 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002888 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002889 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2890 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002891 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2892 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002893 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2894 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002895 goto exit;
2896 }
2897
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002898 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002899 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002900 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2901 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002902 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2903 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002904 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002905 STATUS_FW_ERROR |
2906 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2907 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002908
Mohamed Abbasef850d72009-05-22 11:01:50 -07002909 /* device going down, Stop using ICT table */
2910 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002911
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002912 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002913 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002914
Ben Cahill309e7312009-11-06 14:53:03 -08002915 /* Power-down device's busmaster DMA clocks */
2916 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002917 udelay(5);
2918
Ben Cahill309e7312009-11-06 14:53:03 -08002919 /* Make sure (redundant) we've released our request to stay awake */
2920 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2921
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002922 /* Stop the device, and put it in low power state */
2923 priv->cfg->ops->lib->apm_ops.stop(priv);
2924
Zhu Yib481de92007-09-25 17:54:57 -07002925 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002926 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002927
2928 if (priv->ibss_beacon)
2929 dev_kfree_skb(priv->ibss_beacon);
2930 priv->ibss_beacon = NULL;
2931
2932 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002933 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002934}
2935
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002936static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002937{
2938 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002939 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002940 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002941
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002942 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002943}
2944
Mohamed Abbas086ed112009-05-22 11:01:54 -07002945#define HW_READY_TIMEOUT (50)
2946
2947static int iwl_set_hw_ready(struct iwl_priv *priv)
2948{
2949 int ret = 0;
2950
2951 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2952 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2953
2954 /* See if we got it */
2955 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2956 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2957 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2958 HW_READY_TIMEOUT);
2959 if (ret != -ETIMEDOUT)
2960 priv->hw_ready = true;
2961 else
2962 priv->hw_ready = false;
2963
2964 IWL_DEBUG_INFO(priv, "hardware %s\n",
2965 (priv->hw_ready == 1) ? "ready" : "not ready");
2966 return ret;
2967}
2968
2969static int iwl_prepare_card_hw(struct iwl_priv *priv)
2970{
2971 int ret = 0;
2972
Frans Pop91dd6c22010-03-24 14:19:58 -07002973 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07002974
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002975 ret = iwl_set_hw_ready(priv);
2976 if (priv->hw_ready)
2977 return ret;
2978
2979 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002980 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2981 CSR_HW_IF_CONFIG_REG_PREPARE);
2982
2983 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2984 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
2985 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
2986
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002987 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002988 if (ret != -ETIMEDOUT)
2989 iwl_set_hw_ready(priv);
2990
2991 return ret;
2992}
2993
Zhu Yib481de92007-09-25 17:54:57 -07002994#define MAX_HW_RESTARTS 5
2995
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002996static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002997{
Johannes Berga194e322010-08-27 08:53:46 -07002998 struct iwl_rxon_context *ctx;
Tomas Winkler57aab752008-04-14 21:16:03 -07002999 int i;
3000 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003001
3002 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003003 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003004 return -EIO;
3005 }
3006
Reinette Chatree903fbd2008-01-30 22:05:15 -08003007 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003008 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08003009 return -EIO;
3010 }
3011
Johannes Berga194e322010-08-27 08:53:46 -07003012 for_each_context(priv, ctx) {
3013 ret = iwl_alloc_bcast_station(priv, ctx, true);
3014 if (ret) {
3015 iwl_dealloc_bcast_stations(priv);
3016 return ret;
3017 }
3018 }
Johannes Berg2c810cc2010-04-29 00:53:29 -07003019
Mohamed Abbas086ed112009-05-22 11:01:54 -07003020 iwl_prepare_card_hw(priv);
3021
3022 if (!priv->hw_ready) {
3023 IWL_WARN(priv, "Exit HW not ready\n");
3024 return -EIO;
3025 }
3026
Zhu Yie655b9f2008-01-24 02:19:38 -08003027 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08003028 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08003029 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003030 else
Zhu Yie655b9f2008-01-24 02:19:38 -08003031 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003032
Tomas Winklerc1842d62008-08-04 16:00:43 +08003033 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02003034 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
3035
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003036 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02003037 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08003038 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003039 }
3040
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003041 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003042
Johannes Berg13bb9482010-08-23 10:46:33 +02003043 /* must be initialised before iwl_hw_nic_init */
Johannes Berg751ca302010-08-23 10:46:34 +02003044 if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))
3045 priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM;
3046 else
3047 priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM;
Johannes Berg13bb9482010-08-23 10:46:33 +02003048
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003049 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003050 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003051 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07003052 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003053 }
3054
3055 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003056 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3057 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003058 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3059
3060 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003061 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003062 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003063
3064 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003065 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3066 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003067
3068 /* Copy original ucode data image from disk into backup cache.
3069 * This will be used to initialize the on-board processor's
3070 * data SRAM for a clean start when the runtime program first loads. */
3071 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08003072 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003073
Zhu Yib481de92007-09-25 17:54:57 -07003074 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3075
Zhu Yib481de92007-09-25 17:54:57 -07003076 /* load bootstrap state machine,
3077 * load bootstrap program into processor's memory,
3078 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003079 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003080
Tomas Winkler57aab752008-04-14 21:16:03 -07003081 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003082 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
3083 ret);
Zhu Yib481de92007-09-25 17:54:57 -07003084 continue;
3085 }
3086
3087 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003088 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003089
Tomas Winklere1623442009-01-27 14:27:56 -08003090 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003091
3092 return 0;
3093 }
3094
3095 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003096 __iwl_down(priv);
Mohamed Abbas64e72c32008-06-12 09:47:03 +08003097 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003098
3099 /* tried to restart and config the device for as long as our
3100 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003101 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003102 return -EIO;
3103}
3104
3105
3106/*****************************************************************************
3107 *
3108 * Workqueue callbacks
3109 *
3110 *****************************************************************************/
3111
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003112static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003113{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003114 struct iwl_priv *priv =
3115 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003116
3117 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3118 return;
3119
3120 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003121 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003122 mutex_unlock(&priv->mutex);
3123}
3124
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003125static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003126{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003127 struct iwl_priv *priv =
3128 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003129
3130 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3131 return;
3132
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003133 /* enable dram interrupt */
3134 iwl_reset_ict(priv);
3135
Zhu Yib481de92007-09-25 17:54:57 -07003136 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003137 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003138 mutex_unlock(&priv->mutex);
3139}
3140
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003141static void iwl_bg_run_time_calib_work(struct work_struct *work)
3142{
3143 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3144 run_time_calib_work);
3145
3146 mutex_lock(&priv->mutex);
3147
3148 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3149 test_bit(STATUS_SCANNING, &priv->status)) {
3150 mutex_unlock(&priv->mutex);
3151 return;
3152 }
3153
3154 if (priv->start_calib) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003155 if (priv->cfg->bt_statistics) {
3156 iwl_chain_noise_calibration(priv,
3157 (void *)&priv->_agn.statistics_bt);
3158 iwl_sensitivity_calibration(priv,
3159 (void *)&priv->_agn.statistics_bt);
3160 } else {
3161 iwl_chain_noise_calibration(priv,
3162 (void *)&priv->_agn.statistics);
3163 iwl_sensitivity_calibration(priv,
3164 (void *)&priv->_agn.statistics);
3165 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003166 }
3167
3168 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003169}
3170
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003171static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003172{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003173 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003174
3175 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3176 return;
3177
Johannes Berg19cc1082009-05-08 13:44:36 -07003178 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Johannes Berg8bd413e2010-08-23 10:46:40 +02003179 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003180 bool bt_sco, bt_full_concurrent;
3181 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003182 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003183 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003184
Johannes Berg19cc1082009-05-08 13:44:36 -07003185 mutex_lock(&priv->mutex);
Johannes Berg8bd413e2010-08-23 10:46:40 +02003186 for_each_context(priv, ctx)
3187 ctx->vif = NULL;
Johannes Berg19cc1082009-05-08 13:44:36 -07003188 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003189
3190 /*
3191 * __iwl_down() will clear the BT status variables,
3192 * which is correct, but when we restart we really
3193 * want to keep them so restore them afterwards.
3194 *
3195 * The restart process will later pick them up and
3196 * re-configure the hw when we reconfigure the BT
3197 * command.
3198 */
3199 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003200 bt_full_concurrent = priv->bt_full_concurrent;
3201 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003202 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003203 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003204
Johannes Berga1174132010-08-23 07:56:59 -07003205 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003206
3207 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003208 priv->bt_full_concurrent = bt_full_concurrent;
3209 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003210 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003211 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003212
Johannes Berg19cc1082009-05-08 13:44:36 -07003213 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003214 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003215 ieee80211_restart_hw(priv->hw);
3216 } else {
3217 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003218
3219 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3220 return;
3221
3222 mutex_lock(&priv->mutex);
3223 __iwl_up(priv);
3224 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003225 }
Zhu Yib481de92007-09-25 17:54:57 -07003226}
3227
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003228static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003229{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003230 struct iwl_priv *priv =
3231 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003232
3233 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3234 return;
3235
3236 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003237 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003238 mutex_unlock(&priv->mutex);
3239}
3240
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003241#define IWL_DELAY_NEXT_SCAN (HZ*2)
3242
Johannes Berg1dda6d22010-04-29 04:43:06 -07003243void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003244{
Johannes Berg246ed352010-08-23 10:46:32 +02003245 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07003246 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003247 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003248
Johannes Berg1dda6d22010-04-29 04:43:06 -07003249 if (!vif || !priv->is_open)
3250 return;
3251
Johannes Berg246ed352010-08-23 10:46:32 +02003252 ctx = iwl_rxon_ctx_from_vif(vif);
3253
Johannes Berg1dda6d22010-04-29 04:43:06 -07003254 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003255 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003256 return;
3257 }
3258
Zhu Yib481de92007-09-25 17:54:57 -07003259 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3260 return;
3261
Tomas Winkler2a421b92008-06-12 09:47:10 +08003262 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003263
Zhu Yib481de92007-09-25 17:54:57 -07003264 conf = ieee80211_get_hw_conf(priv->hw);
3265
Johannes Berg246ed352010-08-23 10:46:32 +02003266 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3267 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003268
Johannes Berg948f5a22010-07-29 07:07:51 -07003269 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003270 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003271 IWL_WARN(priv, "RXON timing - "
Zhu Yib481de92007-09-25 17:54:57 -07003272 "Attempting to continue.\n");
3273
Johannes Berg246ed352010-08-23 10:46:32 +02003274 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003275
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08003276 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03003277
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003278 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003279 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003280
Johannes Berg246ed352010-08-23 10:46:32 +02003281 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003282
Tomas Winklere1623442009-01-27 14:27:56 -08003283 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003284 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003285
Johannes Bergc213d742010-05-06 12:21:40 -07003286 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003287 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003288 else
Johannes Berg246ed352010-08-23 10:46:32 +02003289 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003290
Johannes Berg246ed352010-08-23 10:46:32 +02003291 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003292 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003293 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003294 else
Johannes Berg246ed352010-08-23 10:46:32 +02003295 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003296 }
3297
Johannes Berg246ed352010-08-23 10:46:32 +02003298 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003299
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003300 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg246ed352010-08-23 10:46:32 +02003301 vif->bss_conf.aid, ctx->active.bssid_addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003302
Johannes Berg1dda6d22010-04-29 04:43:06 -07003303 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003304 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07003305 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003306 case NL80211_IFTYPE_ADHOC:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003307 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003308 break;
Zhu Yib481de92007-09-25 17:54:57 -07003309 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003310 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003311 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003312 break;
3313 }
3314
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08003315 /* the chain noise calibration will enabled PM upon completion
3316 * If chain noise has already been run, then we need to enable
3317 * power management here */
3318 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07003319 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003320
3321 /* Enable Rx differential gain and sensitivity calibrations */
3322 iwl_chain_noise_reset(priv);
3323 priv->start_calib = 1;
3324
Reinette Chatre508e32e2008-04-14 21:16:13 -07003325}
3326
Zhu Yib481de92007-09-25 17:54:57 -07003327/*****************************************************************************
3328 *
3329 * mac80211 entry point functions
3330 *
3331 *****************************************************************************/
3332
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003333#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a669262008-01-14 17:46:18 -08003334
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003335/*
3336 * Not a mac80211 entry point function, but it fits in with all the
3337 * other mac80211 functions grouped here.
3338 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003339static int iwl_mac_setup_register(struct iwl_priv *priv,
3340 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003341{
3342 int ret;
3343 struct ieee80211_hw *hw = priv->hw;
3344 hw->rate_control_algorithm = "iwl-agn-rs";
3345
3346 /* Tell mac80211 our characteristics */
3347 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003348 IEEE80211_HW_AMPDU_AGGREGATION |
3349 IEEE80211_HW_SPECTRUM_MGMT;
3350
3351 if (!priv->cfg->broken_powersave)
3352 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3353 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3354
Johannes Bergba37a3d2009-12-10 14:37:27 -08003355 if (priv->cfg->sku & IWL_SKU_N)
3356 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3357 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3358
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003359 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003360 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3361
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003362 hw->wiphy->interface_modes =
3363 BIT(NL80211_IFTYPE_STATION) |
3364 BIT(NL80211_IFTYPE_ADHOC);
3365
Reinette Chatref6c8f152010-03-12 11:13:26 -08003366 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003367 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003368
3369 /*
3370 * For now, disable PS by default because it affects
3371 * RX performance significantly.
3372 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003373 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003374
Reinette Chatre1382c712010-02-25 10:02:19 -08003375 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003376 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003377 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003378
3379 /* Default value; 4 EDCA QOS priorities */
3380 hw->queues = 4;
3381
3382 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3383
3384 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3385 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3386 &priv->bands[IEEE80211_BAND_2GHZ];
3387 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3388 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3389 &priv->bands[IEEE80211_BAND_5GHZ];
3390
3391 ret = ieee80211_register_hw(priv->hw);
3392 if (ret) {
3393 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3394 return ret;
3395 }
3396 priv->mac80211_registered = 1;
3397
3398 return 0;
3399}
3400
3401
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003402static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003403{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003404 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003405 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003406
Tomas Winklere1623442009-01-27 14:27:56 -08003407 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003408
3409 /* we should be verifying the device is ready to be opened */
3410 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003411 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003412 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003413
Zhu Yie655b9f2008-01-24 02:19:38 -08003414 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003415 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003416
Tomas Winklerc1842d62008-08-04 16:00:43 +08003417 if (iwl_is_rfkill(priv))
3418 goto out;
3419
Tomas Winklere1623442009-01-27 14:27:56 -08003420 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003421
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003422 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a669262008-01-14 17:46:18 -08003423 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003424 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3425 test_bit(STATUS_READY, &priv->status),
3426 UCODE_READY_TIMEOUT);
3427 if (!ret) {
3428 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003429 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003430 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003431 return -ETIMEDOUT;
Zhu Yi5a669262008-01-14 17:46:18 -08003432 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003433 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003434
Johannes Berge932a602009-10-02 13:44:03 -07003435 iwl_led_start(priv);
3436
Tomas Winklerc1842d62008-08-04 16:00:43 +08003437out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003438 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003439 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003440 return 0;
3441}
3442
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003443static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003444{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003445 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003446
Tomas Winklere1623442009-01-27 14:27:56 -08003447 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003448
Johannes Berg19cc1082009-05-08 13:44:36 -07003449 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003450 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003451
Zhu Yib481de92007-09-25 17:54:57 -07003452 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003453
Wey-Yi Guy5bddf542009-08-21 13:34:25 -07003454 if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003455 /* stop mac, cancel any scan request and clear
3456 * RXON_FILTER_ASSOC_MSK BIT
3457 */
Zhu Yi5a669262008-01-14 17:46:18 -08003458 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003459 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003460 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003461 }
3462
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003463 iwl_down(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003464
3465 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003466
3467 /* enable interrupts again in order to receive rfkill changes */
3468 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3469 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003470
Tomas Winklere1623442009-01-27 14:27:56 -08003471 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003472}
3473
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003474static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003475{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003476 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003477
Tomas Winklere1623442009-01-27 14:27:56 -08003478 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003479
Tomas Winklere1623442009-01-27 14:27:56 -08003480 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003481 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003482
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003483 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003484 dev_kfree_skb_any(skb);
3485
Tomas Winklere1623442009-01-27 14:27:56 -08003486 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003487 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003488}
3489
Johannes Berg1dda6d22010-04-29 04:43:06 -07003490void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003491{
Johannes Berg246ed352010-08-23 10:46:32 +02003492 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003493 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003494
Johannes Berg76d04812010-08-23 10:46:47 +02003495 lockdep_assert_held(&priv->mutex);
3496
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003497 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003498 return;
3499
3500 /* The following should be done only at AP bring up */
Johannes Berg246ed352010-08-23 10:46:32 +02003501 if (!iwl_is_associated_ctx(ctx)) {
Zhu Yib481de92007-09-25 17:54:57 -07003502
3503 /* RXON - unassoc (to set timing command) */
Johannes Berg246ed352010-08-23 10:46:32 +02003504 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3505 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003506
3507 /* RXON Timing */
Johannes Berg948f5a22010-07-29 07:07:51 -07003508 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003509 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003510 IWL_WARN(priv, "RXON timing failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003511 "Attempting to continue.\n");
3512
Daniel C Halperinf513dff2009-11-13 11:56:34 -08003513 /* AP has all antennas */
3514 priv->chain_noise_data.active_chains =
3515 priv->hw_params.valid_rx_ant;
3516 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003517 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003518 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003519
Johannes Berg246ed352010-08-23 10:46:32 +02003520 ctx->staging.assoc_id = 0;
Johannes Berg1dda6d22010-04-29 04:43:06 -07003521
Johannes Bergc213d742010-05-06 12:21:40 -07003522 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003523 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003524 RXON_FLG_SHORT_PREAMBLE_MSK;
3525 else
Johannes Berg246ed352010-08-23 10:46:32 +02003526 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003527 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3528
Johannes Berg246ed352010-08-23 10:46:32 +02003529 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003530 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003531 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003532 RXON_FLG_SHORT_SLOT_MSK;
3533 else
Johannes Berg246ed352010-08-23 10:46:32 +02003534 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003535 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003536 }
3537 /* restore RXON assoc */
Johannes Berg246ed352010-08-23 10:46:32 +02003538 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
3539 iwlcore_commit_rxon(priv, ctx);
Zhu Yie1493de2007-09-27 11:27:32 +08003540 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003541 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003542
3543 /* FIXME - we need to add code here to detect a totally new
3544 * configuration, reset the AP, unassoc, rxon timing, assoc,
3545 * clear sta table, add BCAST sta... */
3546}
3547
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003548static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003549 struct ieee80211_vif *vif,
3550 struct ieee80211_key_conf *keyconf,
3551 struct ieee80211_sta *sta,
3552 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003553{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003554
Tomas Winkler9f586712008-11-12 13:14:05 -08003555 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003556 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3557
Tomas Winklere1623442009-01-27 14:27:56 -08003558 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003559
Johannes Berga194e322010-08-27 08:53:46 -07003560 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003561 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003562
Tomas Winklere1623442009-01-27 14:27:56 -08003563 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003564}
3565
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003566static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003567 struct ieee80211_vif *vif,
3568 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003569 struct ieee80211_key_conf *key)
3570{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003571 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003572 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergc10afb62010-08-23 10:46:43 +02003573 struct iwl_rxon_context *ctx = vif_priv->ctx;
Winkler, Tomas42986792009-01-19 15:30:22 -08003574 int ret;
3575 u8 sta_id;
3576 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003577
Tomas Winklere1623442009-01-27 14:27:56 -08003578 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003579
Tomas Winkler90e8e422009-06-19 13:52:42 -07003580 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003581 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003582 return -EOPNOTSUPP;
3583 }
Zhu Yib481de92007-09-25 17:54:57 -07003584
Johannes Berga194e322010-08-27 08:53:46 -07003585 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
Johannes Berg0af8bca2010-04-30 14:08:00 -07003586 if (sta_id == IWL_INVALID_STATION)
3587 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003588
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003589 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003590 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003591
Johannes Berga90178fa2010-03-30 02:44:16 -07003592 /*
3593 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003594 * so far, we are in legacy wep mode (group key only), otherwise we are
3595 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003596 * In legacy wep mode, we use another host command to the uCode.
3597 */
Johannes Berg97359d12010-08-10 09:46:38 +02003598 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3599 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003600 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003601 if (cmd == SET_KEY)
Johannes Bergc10afb62010-08-23 10:46:43 +02003602 is_default_wep_key = !ctx->key_mapping_keys;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003603 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003604 is_default_wep_key =
3605 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003606 }
mabbas052c4b92007-10-25 17:15:43 +08003607
Zhu Yib481de92007-09-25 17:54:57 -07003608 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003609 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003610 if (is_default_wep_key)
Johannes Berg2995baf2010-08-23 10:46:42 +02003611 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003612 else
Johannes Berga194e322010-08-27 08:53:46 -07003613 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3614 key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003615
Tomas Winklere1623442009-01-27 14:27:56 -08003616 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003617 break;
3618 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003619 if (is_default_wep_key)
Johannes Bergc10afb62010-08-23 10:46:43 +02003620 ret = iwl_remove_default_wep_key(priv, ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003621 else
Johannes Bergc10afb62010-08-23 10:46:43 +02003622 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003623
Tomas Winklere1623442009-01-27 14:27:56 -08003624 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003625 break;
3626 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003627 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003628 }
3629
Johannes Berg72e15d72010-02-19 11:42:32 -08003630 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003631 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003632
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003633 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003634}
3635
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003636static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01003637 struct ieee80211_vif *vif,
Johannes Berg832f47e2010-04-29 04:43:07 -07003638 enum ieee80211_ampdu_mlme_action action,
3639 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003640{
3641 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003642 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003643
Tomas Winklere1623442009-01-27 14:27:56 -08003644 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003645 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003646
3647 if (!(priv->cfg->sku & IWL_SKU_N))
3648 return -EACCES;
3649
Johannes Berg4620fef2010-06-16 03:30:27 -07003650 mutex_lock(&priv->mutex);
3651
Tomas Winklerd783b062008-07-18 13:53:02 +08003652 switch (action) {
3653 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003654 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003655 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3656 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003657 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003658 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003659 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003660 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003661 ret = 0;
3662 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003663 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003664 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003665 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003666 if (ret == 0) {
3667 priv->_agn.agg_tids_count++;
3668 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3669 priv->_agn.agg_tids_count);
3670 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003671 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003672 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003673 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003674 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003675 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3676 priv->_agn.agg_tids_count--;
3677 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3678 priv->_agn.agg_tids_count);
3679 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003680 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003681 ret = 0;
Johannes Berg94597ab2010-08-09 10:57:02 -07003682 if (priv->cfg->use_rts_for_aggregation) {
3683 struct iwl_station_priv *sta_priv =
3684 (void *) sta->drv_priv;
3685 /*
3686 * switch off RTS/CTS if it was previously enabled
3687 */
3688
3689 sta_priv->lq_sta.lq.general_params.flags &=
3690 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003691 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3692 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Johannes Berg94597ab2010-08-09 10:57:02 -07003693 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003694 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003695 case IEEE80211_AMPDU_TX_OPERATIONAL:
Johannes Berg94597ab2010-08-09 10:57:02 -07003696 if (priv->cfg->use_rts_for_aggregation) {
3697 struct iwl_station_priv *sta_priv =
3698 (void *) sta->drv_priv;
3699
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003700 /*
3701 * switch to RTS/CTS if it is the prefer protection
3702 * method for HT traffic
3703 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003704
3705 sta_priv->lq_sta.lq.general_params.flags |=
3706 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003707 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3708 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003709 }
3710 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003711 break;
3712 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003713 mutex_unlock(&priv->mutex);
3714
3715 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003716}
Tomas Winkler9f586712008-11-12 13:14:05 -08003717
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003718static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
3719 struct ieee80211_vif *vif,
3720 enum sta_notify_cmd cmd,
3721 struct ieee80211_sta *sta)
3722{
3723 struct iwl_priv *priv = hw->priv;
3724 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3725 int sta_id;
3726
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003727 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003728 case STA_NOTIFY_SLEEP:
3729 WARN_ON(!sta_priv->client);
3730 sta_priv->asleep = true;
3731 if (atomic_read(&sta_priv->pending_frames) > 0)
3732 ieee80211_sta_block_awake(hw, sta, true);
3733 break;
3734 case STA_NOTIFY_AWAKE:
3735 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003736 if (!sta_priv->asleep)
3737 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003738 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003739 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003740 if (sta_id != IWL_INVALID_STATION)
3741 iwl_sta_modify_ps_wake(priv, sta_id);
3742 break;
3743 default:
3744 break;
3745 }
3746}
3747
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003748static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3749 struct ieee80211_vif *vif,
3750 struct ieee80211_sta *sta)
3751{
3752 struct iwl_priv *priv = hw->priv;
3753 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Berga194e322010-08-27 08:53:46 -07003754 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003755 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003756 int ret;
3757 u8 sta_id;
3758
3759 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3760 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003761 mutex_lock(&priv->mutex);
3762 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3763 sta->addr);
3764 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003765
3766 atomic_set(&sta_priv->pending_frames, 0);
3767 if (vif->type == NL80211_IFTYPE_AP)
3768 sta_priv->client = true;
3769
Johannes Berga194e322010-08-27 08:53:46 -07003770 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
Johannes Berg238d7812010-08-23 10:46:45 +02003771 is_ap, sta, &sta_id);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003772 if (ret) {
3773 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3774 sta->addr, ret);
3775 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003776 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003777 return ret;
3778 }
3779
Johannes Bergfd1af152010-04-30 11:30:43 -07003780 sta_priv->common.sta_id = sta_id;
3781
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003782 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003783 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003784 sta->addr);
3785 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003786 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003787
Johannes Bergfd1af152010-04-30 11:30:43 -07003788 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003789}
3790
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003791static void iwl_mac_channel_switch(struct ieee80211_hw *hw,
3792 struct ieee80211_channel_switch *ch_switch)
3793{
3794 struct iwl_priv *priv = hw->priv;
3795 const struct iwl_channel_info *ch_info;
3796 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003797 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003798 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg246ed352010-08-23 10:46:32 +02003799 /*
3800 * MULTI-FIXME
3801 * When we add support for multiple interfaces, we need to
3802 * revisit this. The channel switch command in the device
3803 * only affects the BSS context, but what does that really
3804 * mean? And what if we get a CSA on the second interface?
3805 * This needs a lot of work.
3806 */
3807 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003808 u16 ch;
3809 unsigned long flags = 0;
3810
3811 IWL_DEBUG_MAC80211(priv, "enter\n");
3812
3813 if (iwl_is_rfkill(priv))
3814 goto out_exit;
3815
3816 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3817 test_bit(STATUS_SCANNING, &priv->status))
3818 goto out_exit;
3819
Johannes Berg246ed352010-08-23 10:46:32 +02003820 if (!iwl_is_associated_ctx(ctx))
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003821 goto out_exit;
3822
3823 /* channel switch in progress */
3824 if (priv->switch_rxon.switch_in_progress == true)
3825 goto out_exit;
3826
3827 mutex_lock(&priv->mutex);
3828 if (priv->cfg->ops->lib->set_channel_switch) {
3829
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003830 ch = channel->hw_value;
Johannes Berg246ed352010-08-23 10:46:32 +02003831 if (le16_to_cpu(ctx->active.channel) != ch) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003832 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003833 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003834 ch);
3835 if (!is_channel_valid(ch_info)) {
3836 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3837 goto out;
3838 }
3839 spin_lock_irqsave(&priv->lock, flags);
3840
3841 priv->current_ht_config.smps = conf->smps_mode;
3842
3843 /* Configure HT40 channels */
Johannes Berg7e6a5882010-08-23 10:46:46 +02003844 ctx->ht.enabled = conf_is_ht(conf);
3845 if (ctx->ht.enabled) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003846 if (conf_is_ht40_minus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003847 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003848 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003849 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003850 } else if (conf_is_ht40_plus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003851 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003852 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003853 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003854 } else {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003855 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003856 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003857 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003858 }
3859 } else
Johannes Berg7e6a5882010-08-23 10:46:46 +02003860 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003861
Johannes Berg246ed352010-08-23 10:46:32 +02003862 if ((le16_to_cpu(ctx->staging.channel) != ch))
3863 ctx->staging.flags = 0;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003864
Johannes Berg246ed352010-08-23 10:46:32 +02003865 iwl_set_rxon_channel(priv, channel, ctx);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003866 iwl_set_rxon_ht(priv, ht_conf);
Johannes Berg246ed352010-08-23 10:46:32 +02003867 iwl_set_flags_for_band(priv, ctx, channel->band,
Johannes Berg8bd413e2010-08-23 10:46:40 +02003868 ctx->vif);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003869 spin_unlock_irqrestore(&priv->lock, flags);
3870
3871 iwl_set_rate(priv);
3872 /*
3873 * at this point, staging_rxon has the
3874 * configuration for channel switch
3875 */
3876 if (priv->cfg->ops->lib->set_channel_switch(priv,
3877 ch_switch))
3878 priv->switch_rxon.switch_in_progress = false;
3879 }
3880 }
3881out:
3882 mutex_unlock(&priv->mutex);
3883out_exit:
3884 if (!priv->switch_rxon.switch_in_progress)
Johannes Berg8bd413e2010-08-23 10:46:40 +02003885 ieee80211_chswitch_done(ctx->vif, false);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003886 IWL_DEBUG_MAC80211(priv, "leave\n");
3887}
3888
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003889static void iwlagn_configure_filter(struct ieee80211_hw *hw,
3890 unsigned int changed_flags,
3891 unsigned int *total_flags,
3892 u64 multicast)
3893{
3894 struct iwl_priv *priv = hw->priv;
3895 __le32 filter_or = 0, filter_nand = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02003896 struct iwl_rxon_context *ctx;
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003897
3898#define CHK(test, flag) do { \
3899 if (*total_flags & (test)) \
3900 filter_or |= (flag); \
3901 else \
3902 filter_nand |= (flag); \
3903 } while (0)
3904
3905 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3906 changed_flags, *total_flags);
3907
3908 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3909 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3910 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3911
3912#undef CHK
3913
3914 mutex_lock(&priv->mutex);
3915
Johannes Berg246ed352010-08-23 10:46:32 +02003916 for_each_context(priv, ctx) {
3917 ctx->staging.filter_flags &= ~filter_nand;
3918 ctx->staging.filter_flags |= filter_or;
3919 iwlcore_commit_rxon(priv, ctx);
3920 }
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003921
3922 mutex_unlock(&priv->mutex);
3923
3924 /*
3925 * Receiving all multicast frames is always enabled by the
3926 * default flags setup in iwl_connection_init_rx_config()
3927 * since we currently do not support programming multicast
3928 * filters into the device.
3929 */
3930 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3931 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3932}
3933
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07003934static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop)
3935{
3936 struct iwl_priv *priv = hw->priv;
3937
3938 mutex_lock(&priv->mutex);
3939 IWL_DEBUG_MAC80211(priv, "enter\n");
3940
3941 /* do not support "flush" */
3942 if (!priv->cfg->ops->lib->txfifo_flush)
3943 goto done;
3944
3945 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3946 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
3947 goto done;
3948 }
3949 if (iwl_is_rfkill(priv)) {
3950 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
3951 goto done;
3952 }
3953
3954 /*
3955 * mac80211 will not push any more frames for transmit
3956 * until the flush is completed
3957 */
3958 if (drop) {
3959 IWL_DEBUG_MAC80211(priv, "send flush command\n");
3960 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
3961 IWL_ERR(priv, "flush request fail\n");
3962 goto done;
3963 }
3964 }
3965 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
3966 iwlagn_wait_tx_queue_empty(priv);
3967done:
3968 mutex_unlock(&priv->mutex);
3969 IWL_DEBUG_MAC80211(priv, "leave\n");
3970}
3971
Zhu Yib481de92007-09-25 17:54:57 -07003972/*****************************************************************************
3973 *
Zhu Yib481de92007-09-25 17:54:57 -07003974 * driver setup and teardown
3975 *
3976 *****************************************************************************/
3977
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003978static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003979{
Reinette Chatred21050c2009-02-13 11:51:18 -08003980 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003981
3982 init_waitqueue_head(&priv->wait_command_queue);
3983
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003984 INIT_WORK(&priv->restart, iwl_bg_restart);
3985 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003986 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003987 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07003988 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003989 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003990 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003991 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3992 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003993
Tomas Winkler2a421b92008-06-12 09:47:10 +08003994 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003995
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003996 if (priv->cfg->ops->lib->setup_deferred_work)
3997 priv->cfg->ops->lib->setup_deferred_work(priv);
3998
3999 init_timer(&priv->statistics_periodic);
4000 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004001 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07004002
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004003 init_timer(&priv->ucode_trace);
4004 priv->ucode_trace.data = (unsigned long)priv;
4005 priv->ucode_trace.function = iwl_bg_ucode_trace;
4006
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08004007 if (priv->cfg->ops->lib->recover_from_tx_stall) {
4008 init_timer(&priv->monitor_recover);
4009 priv->monitor_recover.data = (unsigned long)priv;
4010 priv->monitor_recover.function =
4011 priv->cfg->ops->lib->recover_from_tx_stall;
4012 }
4013
Mohamed Abbasef850d72009-05-22 11:01:50 -07004014 if (!priv->cfg->use_isr_legacy)
4015 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4016 iwl_irq_tasklet, (unsigned long)priv);
4017 else
4018 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4019 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004020}
4021
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004022static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004023{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004024 if (priv->cfg->ops->lib->cancel_deferred_work)
4025 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004026
Joonwoo Park3ae6a052007-11-29 10:43:16 +09004027 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004028 cancel_delayed_work(&priv->scan_check);
Johannes Berg88be0262010-04-07 00:21:36 -07004029 cancel_work_sync(&priv->start_internal_scan);
Zhu Yib481de92007-09-25 17:54:57 -07004030 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07004031 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07004032 cancel_work_sync(&priv->beacon_update);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004033 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004034 cancel_work_sync(&priv->bt_runtime_config);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004035 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004036 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07004037}
4038
Reinette Chatre89f186a2009-10-30 14:36:11 -07004039static void iwl_init_hw_rates(struct iwl_priv *priv,
4040 struct ieee80211_rate *rates)
4041{
4042 int i;
4043
4044 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
4045 rates[i].bitrate = iwl_rates[i].ieee * 5;
4046 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4047 rates[i].hw_value_short = i;
4048 rates[i].flags = 0;
4049 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
4050 /*
4051 * If CCK != 1M then set short preamble rate flag.
4052 */
4053 rates[i].flags |=
4054 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
4055 0 : IEEE80211_RATE_SHORT_PREAMBLE;
4056 }
4057 }
4058}
4059
4060static int iwl_init_drv(struct iwl_priv *priv)
4061{
4062 int ret;
4063
4064 priv->ibss_beacon = NULL;
4065
Reinette Chatre89f186a2009-10-30 14:36:11 -07004066 spin_lock_init(&priv->sta_lock);
4067 spin_lock_init(&priv->hcmd_lock);
4068
4069 INIT_LIST_HEAD(&priv->free_frames);
4070
4071 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08004072 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004073
Reinette Chatre89f186a2009-10-30 14:36:11 -07004074 priv->ieee_channels = NULL;
4075 priv->ieee_rates = NULL;
4076 priv->band = IEEE80211_BAND_2GHZ;
4077
4078 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08004079 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08004080 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08004081 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004082
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08004083 /* initialize force reset */
4084 priv->force_reset[IWL_RF_RESET].reset_duration =
4085 IWL_DELAY_NEXT_FORCE_RF_RESET;
4086 priv->force_reset[IWL_FW_RESET].reset_duration =
4087 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004088
4089 /* Choose which receivers/antennas to use */
4090 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02004091 priv->cfg->ops->hcmd->set_rxon_chain(priv,
4092 &priv->contexts[IWL_RXON_CTX_BSS]);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004093
4094 iwl_init_scan_params(priv);
4095
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004096 /* init bt coex */
4097 if (priv->cfg->advanced_bt_coexist) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07004098 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
4099 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
4100 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004101 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
4102 priv->bt_duration = BT_DURATION_LIMIT_DEF;
4103 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
4104 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
4105 }
4106
Reinette Chatre89f186a2009-10-30 14:36:11 -07004107 /* Set the tx_power_user_lmt to the lowest power level
4108 * this value will get overwritten by channel max power avg
4109 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07004110 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004111
4112 ret = iwl_init_channel_map(priv);
4113 if (ret) {
4114 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4115 goto err;
4116 }
4117
4118 ret = iwlcore_init_geos(priv);
4119 if (ret) {
4120 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4121 goto err_free_channel_map;
4122 }
4123 iwl_init_hw_rates(priv, priv->ieee_rates);
4124
4125 return 0;
4126
4127err_free_channel_map:
4128 iwl_free_channel_map(priv);
4129err:
4130 return ret;
4131}
4132
4133static void iwl_uninit_drv(struct iwl_priv *priv)
4134{
4135 iwl_calib_free_results(priv);
4136 iwlcore_free_geos(priv);
4137 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004138 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004139}
4140
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004141static struct ieee80211_ops iwl_hw_ops = {
4142 .tx = iwl_mac_tx,
4143 .start = iwl_mac_start,
4144 .stop = iwl_mac_stop,
4145 .add_interface = iwl_mac_add_interface,
4146 .remove_interface = iwl_mac_remove_interface,
4147 .config = iwl_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02004148 .configure_filter = iwlagn_configure_filter,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004149 .set_key = iwl_mac_set_key,
4150 .update_tkip_key = iwl_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004151 .conf_tx = iwl_mac_conf_tx,
4152 .reset_tsf = iwl_mac_reset_tsf,
4153 .bss_info_changed = iwl_bss_info_changed,
4154 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08004155 .hw_scan = iwl_mac_hw_scan,
4156 .sta_notify = iwl_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08004157 .sta_add = iwlagn_mac_sta_add,
4158 .sta_remove = iwl_mac_sta_remove,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07004159 .channel_switch = iwl_mac_channel_switch,
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004160 .flush = iwl_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07004161 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07004162};
4163
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004164static void iwl_hw_detect(struct iwl_priv *priv)
4165{
4166 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
4167 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
4168 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07004169 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004170}
4171
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07004172static int iwl_set_hw_params(struct iwl_priv *priv)
4173{
4174 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
4175 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
4176 if (priv->cfg->mod_params->amsdu_size_8K)
4177 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
4178 else
4179 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
4180
4181 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
4182
4183 if (priv->cfg->mod_params->disable_11n)
4184 priv->cfg->sku &= ~IWL_SKU_N;
4185
4186 /* Device-specific setup */
4187 return priv->cfg->ops->lib->set_hw_params(priv);
4188}
4189
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004190static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004191{
Johannes Berg246ed352010-08-23 10:46:32 +02004192 int err = 0, i;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004193 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004194 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004195 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004196 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004197 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07004198
Assaf Krauss316c30d2008-03-14 10:38:46 -07004199 /************************
4200 * 1. Allocating HW data
4201 ************************/
4202
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004203 /* Disabling hardware scan means that mac80211 will perform scans
4204 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004205 if (cfg->mod_params->disable_hw_scan) {
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004206 if (iwl_debug_level & IWL_DL_INFO)
Ester Kummerbf403db2008-05-05 10:22:40 +08004207 dev_printk(KERN_DEBUG, &(pdev->dev),
4208 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004209 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004210 }
4211
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004212 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004213 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004214 err = -ENOMEM;
4215 goto out;
4216 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004217 priv = hw->priv;
4218 /* At this point both hw and priv are allocated. */
4219
Johannes Berg246ed352010-08-23 10:46:32 +02004220 /*
4221 * The default context is always valid,
4222 * more may be discovered when firmware
4223 * is loaded.
4224 */
4225 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
4226
4227 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
4228 priv->contexts[i].ctxid = i;
4229
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004230 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
4231 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
4232 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +02004233 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
Johannes Berg2995baf2010-08-23 10:46:42 +02004234 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
Johannes Bergc10afb62010-08-23 10:46:43 +02004235 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004236
4237 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4238 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4239 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4240 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4241 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4242 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4243 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4244 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
4245
4246 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004247
Zhu Yib481de92007-09-25 17:54:57 -07004248 SET_IEEE80211_DEV(hw, &pdev->dev);
4249
Tomas Winklere1623442009-01-27 14:27:56 -08004250 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004251 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004252 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004253 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004254
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004255 /* is antenna coupling more than 35dB ? */
4256 priv->bt_ant_couple_ok =
4257 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4258 true : false;
4259
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004260 /* enable/disable bt channel announcement */
4261 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4262
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004263 if (iwl_alloc_traffic_mem(priv))
4264 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004265
Assaf Krauss316c30d2008-03-14 10:38:46 -07004266 /**************************
4267 * 2. Initializing PCI bus
4268 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004269 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4270 PCIE_LINK_STATE_CLKPM);
4271
Assaf Krauss316c30d2008-03-14 10:38:46 -07004272 if (pci_enable_device(pdev)) {
4273 err = -ENODEV;
4274 goto out_ieee80211_free_hw;
4275 }
4276
4277 pci_set_master(pdev);
4278
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004279 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004280 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004281 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004282 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004283 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004284 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004285 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004286 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004287 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004288 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004289 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004290 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004291 }
4292
4293 err = pci_request_regions(pdev, DRV_NAME);
4294 if (err)
4295 goto out_pci_disable_device;
4296
4297 pci_set_drvdata(pdev, priv);
4298
Assaf Krauss316c30d2008-03-14 10:38:46 -07004299
4300 /***********************
4301 * 3. Read REV register
4302 ***********************/
4303 priv->hw_base = pci_iomap(pdev, 0, 0);
4304 if (!priv->hw_base) {
4305 err = -ENODEV;
4306 goto out_pci_release_regions;
4307 }
4308
Tomas Winklere1623442009-01-27 14:27:56 -08004309 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004310 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004311 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004312
Reinette Chatre731a29b2009-12-14 14:12:11 -08004313 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004314 * we should init now
4315 */
4316 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004317 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004318
4319 /*
4320 * stop and reset the on-board processor just in case it is in a
4321 * strange state ... like being left stranded by a primary kernel
4322 * and this is now the kdump kernel trying to start up
4323 */
4324 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4325
Tomas Winklerb661c812008-04-23 17:14:54 -07004326 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004327 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004328 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004329
Tomas Winklere7b63582008-09-03 11:26:49 +08004330 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4331 * PCI Tx retries from interfering with C3 CPU state */
4332 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4333
Mohamed Abbas086ed112009-05-22 11:01:54 -07004334 iwl_prepare_card_hw(priv);
4335 if (!priv->hw_ready) {
4336 IWL_WARN(priv, "Failed, HW not ready\n");
4337 goto out_iounmap;
4338 }
4339
Assaf Krauss316c30d2008-03-14 10:38:46 -07004340 /*****************
4341 * 4. Read EEPROM
4342 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004343 /* Read the EEPROM */
4344 err = iwl_eeprom_init(priv);
4345 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004346 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004347 goto out_iounmap;
4348 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004349 err = iwl_eeprom_check_version(priv);
4350 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004351 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004352
Ron Rindjunsky02883012008-05-15 13:53:53 +08004353 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004354 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4355 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4356 priv->hw->wiphy->addresses = priv->addresses;
4357 priv->hw->wiphy->n_addresses = 1;
4358 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4359 if (num_mac > 1) {
4360 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4361 ETH_ALEN);
4362 priv->addresses[1].addr[5]++;
4363 priv->hw->wiphy->n_addresses++;
4364 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004365
4366 /************************
4367 * 5. Setup HW constants
4368 ************************/
Ron Rindjunskyda154e32008-06-30 17:23:20 +08004369 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004370 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004371 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004372 }
4373
4374 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004375 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004376 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004377
Tomas Winkler6ba87952008-05-15 13:54:17 +08004378 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004379 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004380 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004381 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004382
Assaf Krauss316c30d2008-03-14 10:38:46 -07004383 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004384 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004385 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004386 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004387 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004388 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004389
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004390 pci_enable_msi(priv->pci_dev);
4391
Mohamed Abbasef850d72009-05-22 11:01:50 -07004392 iwl_alloc_isr_ict(priv);
4393 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4394 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004395 if (err) {
4396 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4397 goto out_disable_msi;
4398 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004399
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004400 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004401 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004402
Johannes Berg158bea02010-01-22 14:22:53 -08004403 /*********************************************
4404 * 8. Enable interrupts and read RFKILL state
4405 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004406
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004407 /* enable interrupts if needed: hw bug w/a */
4408 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4409 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4410 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4411 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4412 }
4413
4414 iwl_enable_interrupts(priv);
4415
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004416 /* If platform's RF_KILL switch is NOT set to KILL */
4417 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4418 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4419 else
4420 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004421
Johannes Berga60e77e2009-06-04 18:26:06 +02004422 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4423 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004424
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004425 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -07004426 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004427
Reinette Chatrea15707d2010-05-10 15:08:11 -07004428 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004429
Johannes Bergb08dfd02010-01-29 11:54:56 -08004430 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004431 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004432 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004433
Zhu Yib481de92007-09-25 17:54:57 -07004434 return 0;
4435
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004436 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004437 destroy_workqueue(priv->workqueue);
4438 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004439 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004440 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004441 out_disable_msi:
4442 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004443 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004444 out_free_eeprom:
4445 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004446 out_iounmap:
4447 pci_iounmap(pdev, priv->hw_base);
4448 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004449 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004450 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004451 out_pci_disable_device:
4452 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004453 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004454 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004455 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004456 out:
4457 return err;
4458}
4459
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004460static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004461{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004462 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004463 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004464
4465 if (!priv)
4466 return;
4467
Reinette Chatrea15707d2010-05-10 15:08:11 -07004468 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004469
Tomas Winklere1623442009-01-27 14:27:56 -08004470 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004471
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004472 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004473 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004474
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004475 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4476 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004477 * we need to set STATUS_EXIT_PENDING bit.
4478 */
4479 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004480 if (priv->mac80211_registered) {
4481 ieee80211_unregister_hw(priv->hw);
4482 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004483 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004484 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004485 }
4486
Ben Cahillc166b252009-10-23 13:42:35 -07004487 /*
4488 * Make sure device is reset to low power before unloading driver.
4489 * This may be redundant with iwl_down(), but there are paths to
4490 * run iwl_down() without calling apm_ops.stop(), and there are
4491 * paths to avoid running iwl_down() at all before leaving driver.
4492 * This (inexpensive) call *makes sure* device is reset.
4493 */
4494 priv->cfg->ops->lib->apm_ops.stop(priv);
4495
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -07004496 iwl_tt_exit(priv);
4497
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004498 /* make sure we flush any pending irq or
4499 * tasklet for the driver
4500 */
4501 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004502 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004503 spin_unlock_irqrestore(&priv->lock, flags);
4504
4505 iwl_synchronize_irq(priv);
4506
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004507 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004508
4509 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004510 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004511 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004512
Tomas Winkler073d3f52008-04-21 15:41:52 -07004513 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004514
Zhu Yib481de92007-09-25 17:54:57 -07004515
Mohamed Abbas948c1712007-10-25 17:15:45 +08004516 /*netif_stop_queue(dev); */
4517 flush_workqueue(priv->workqueue);
4518
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004519 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004520 * priv->workqueue... so we can't take down the workqueue
4521 * until now... */
4522 destroy_workqueue(priv->workqueue);
4523 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004524 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004525
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004526 free_irq(priv->pci_dev->irq, priv);
4527 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004528 pci_iounmap(pdev, priv->hw_base);
4529 pci_release_regions(pdev);
4530 pci_disable_device(pdev);
4531 pci_set_drvdata(pdev, NULL);
4532
Tomas Winkler6ba87952008-05-15 13:54:17 +08004533 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004534
Mohamed Abbasef850d72009-05-22 11:01:50 -07004535 iwl_free_isr_ict(priv);
4536
Zhu Yib481de92007-09-25 17:54:57 -07004537 if (priv->ibss_beacon)
4538 dev_kfree_skb(priv->ibss_beacon);
4539
4540 ieee80211_free_hw(priv->hw);
4541}
4542
Zhu Yib481de92007-09-25 17:54:57 -07004543
4544/*****************************************************************************
4545 *
4546 * driver and module entry point
4547 *
4548 *****************************************************************************/
4549
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004550/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004551static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004552#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004553 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4554 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004555#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004556#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004557/* 5100 Series WiFi */
4558 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4559 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4560 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4561 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4562 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4563 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4564 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4565 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4566 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4567 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4568 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4569 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4570 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4571 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4572 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4573 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4574 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4575 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4576 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4577 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4578 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4579 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4580 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4581 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4582
4583/* 5300 Series WiFi */
4584 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4585 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4586 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4587 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4588 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4589 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4590 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4591 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4592 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4593 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4594 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4595 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4596
4597/* 5350 Series WiFi/WiMax */
4598 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4599 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4600 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4601
4602/* 5150 Series Wifi/WiMax */
4603 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4604 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4605 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4606 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4607 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4608 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4609
4610 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4611 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4612 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4613 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004614
4615/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004616 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4617 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4618 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4619 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4620 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4621 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4622 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4623 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4624 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4625 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004626
Shanyu Zhao95b13012010-04-21 11:46:33 -07004627/* 6x00 Series Gen2a */
4628 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4629 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4630 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004631 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4632 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4633 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4634 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004635 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4636 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4637 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4638 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4639 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4640 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4641 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004642
4643/* 6x00 Series Gen2b */
4644 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4645 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4646 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4647 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4648 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4649 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4650 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4651 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4652 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4653 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4654 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004655 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4656 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4657 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4658 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4659 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4660 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4661 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4662 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4663 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4664 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4665 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4666 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4667 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4668 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4669 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4670 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4671 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004672
4673/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004674 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4675 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4676 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4677 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004678 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4679 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4680
Shanyu Zhao03264332010-06-29 17:27:27 -07004681/* 6x50 WiFi/WiMax Series Gen2 */
4682 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4683 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4684 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4685 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4686 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4687 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4688
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004689/* 1000 Series WiFi */
Wey-Yi Guy4bd09142009-09-17 10:43:52 -07004690 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4691 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4692 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4693 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4694 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4695 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4696 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4697 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4698 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4699 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4700 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4701 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004702#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004703
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004704 {0}
4705};
4706MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4707
4708static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004709 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004710 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004711 .probe = iwl_pci_probe,
4712 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004713#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004714 .suspend = iwl_pci_suspend,
4715 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004716#endif
4717};
4718
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004719static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004720{
4721
4722 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004723 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4724 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004725
Tomas Winklere227cea2008-07-18 13:53:05 +08004726 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004727 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004728 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004729 return ret;
4730 }
4731
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004732 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004733 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004734 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004735 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004736 }
Zhu Yib481de92007-09-25 17:54:57 -07004737
4738 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004739
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004740error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004741 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004742 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004743}
4744
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004745static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004746{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004747 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004748 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004749}
4750
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004751module_exit(iwl_exit);
4752module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004753
4754#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004755module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004756MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004757module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004758MODULE_PARM_DESC(debug, "debug output mask");
4759#endif
4760
Wey-Yi Guy2b068612010-03-22 09:17:39 -07004761module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4762MODULE_PARM_DESC(swcrypto50,
4763 "using crypto in software (default 0 [hardware]) (deprecated)");
4764module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4765MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4766module_param_named(queues_num50,
4767 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4768MODULE_PARM_DESC(queues_num50,
4769 "number of hw queues in 50xx series (deprecated)");
4770module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4771MODULE_PARM_DESC(queues_num, "number of hw queues.");
4772module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4773MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4774module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4775MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4776module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4777 int, S_IRUGO);
4778MODULE_PARM_DESC(amsdu_size_8K50,
4779 "enable 8K amsdu size in 50XX series (deprecated)");
4780module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4781 int, S_IRUGO);
4782MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4783module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4784MODULE_PARM_DESC(fw_restart50,
4785 "restart firmware in case of error (deprecated)");
4786module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4787MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4788module_param_named(
4789 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
4790MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004791
4792module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4793 S_IRUGO);
4794MODULE_PARM_DESC(ucode_alternative,
4795 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004796
4797module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4798MODULE_PARM_DESC(antenna_coupling,
4799 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004800
4801module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4802MODULE_PARM_DESC(bt_ch_announce,
4803 "Enable BT channel announcement mode (default: enable)");