blob: 143c12a29fd8f77c7a7b6e31e05864fab6f6da16 [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 Ortiza8e74e272009-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 Ortiza8e74e272009-01-23 13:45:14 -0800554 int txq_id = txq->q.id;
555
Samuel Ortiza8e74e272009-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 Ortiza8e74e272009-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 Berg60744f62010-08-23 10:46:50 +0200616 if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) {
617 /*
618 * The ucode will send beacon notifications even in
619 * IBSS mode, but we don't want to process them. But
620 * we need to defer the type check to here due to
621 * requiring locking around the beacon_ctx access.
622 */
623 goto out;
624 }
625
Johannes Berg76d04812010-08-23 10:46:47 +0200626 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
627 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
628 if (!beacon) {
629 IWL_ERR(priv, "update beacon failed\n");
630 goto out;
631 }
632
Zhu Yib481de92007-09-25 17:54:57 -0700633 /* new beacon skb is allocated every time; dispose previous.*/
634 if (priv->ibss_beacon)
635 dev_kfree_skb(priv->ibss_beacon);
636
637 priv->ibss_beacon = beacon;
Zhu Yib481de92007-09-25 17:54:57 -0700638
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700639 iwl_send_beacon_cmd(priv);
Johannes Berg76d04812010-08-23 10:46:47 +0200640 out:
641 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -0700642}
643
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700644static void iwl_bg_bt_runtime_config(struct work_struct *work)
645{
646 struct iwl_priv *priv =
647 container_of(work, struct iwl_priv, bt_runtime_config);
648
649 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
650 return;
651
652 /* dont send host command if rf-kill is on */
653 if (!iwl_is_ready_rf(priv))
654 return;
655 priv->cfg->ops->hcmd->send_bt_config(priv);
656}
657
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700658static void iwl_bg_bt_full_concurrency(struct work_struct *work)
659{
660 struct iwl_priv *priv =
661 container_of(work, struct iwl_priv, bt_full_concurrency);
Johannes Berg246ed352010-08-23 10:46:32 +0200662 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700663
664 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
665 return;
666
667 /* dont send host command if rf-kill is on */
668 if (!iwl_is_ready_rf(priv))
669 return;
670
671 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
672 priv->bt_full_concurrent ?
673 "full concurrency" : "3-wire");
674
675 /*
676 * LQ & RXON updated cmds must be sent before BT Config cmd
677 * to avoid 3-wire collisions
678 */
Johannes Berg246ed352010-08-23 10:46:32 +0200679 mutex_lock(&priv->mutex);
680 for_each_context(priv, ctx) {
681 if (priv->cfg->ops->hcmd->set_rxon_chain)
682 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
683 iwlcore_commit_rxon(priv, ctx);
684 }
685 mutex_unlock(&priv->mutex);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700686
687 priv->cfg->ops->hcmd->send_bt_config(priv);
688}
689
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800690/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700691 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800692 *
693 * This callback is provided in order to send a statistics request.
694 *
695 * This timer function is continually reset to execute within
696 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
697 * was received. We need to ensure we receive the statistics in order
698 * to update the temperature used for calibrating the TXPOWER.
699 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700700static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800701{
702 struct iwl_priv *priv = (struct iwl_priv *)data;
703
704 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
705 return;
706
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700707 /* dont send host command if rf-kill is on */
708 if (!iwl_is_ready_rf(priv))
709 return;
710
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800711 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800712}
713
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800714
715static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
716 u32 start_idx, u32 num_events,
717 u32 mode)
718{
719 u32 i;
720 u32 ptr; /* SRAM byte address of log data */
721 u32 ev, time, data; /* event log data */
722 unsigned long reg_flags;
723
724 if (mode == 0)
725 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
726 else
727 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
728
729 /* Make sure device is powered up for SRAM reads */
730 spin_lock_irqsave(&priv->reg_lock, reg_flags);
731 if (iwl_grab_nic_access(priv)) {
732 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
733 return;
734 }
735
736 /* Set starting address; reads will auto-increment */
737 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
738 rmb();
739
740 /*
741 * "time" is actually "data" for mode 0 (no timestamp).
742 * place event id # at far right for easier visual parsing.
743 */
744 for (i = 0; i < num_events; i++) {
745 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
746 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
747 if (mode == 0) {
748 trace_iwlwifi_dev_ucode_cont_event(priv,
749 0, time, ev);
750 } else {
751 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
752 trace_iwlwifi_dev_ucode_cont_event(priv,
753 time, data, ev);
754 }
755 }
756 /* Allow device to power down */
757 iwl_release_nic_access(priv);
758 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
759}
760
Johannes Berg875295f2010-01-22 14:22:55 -0800761static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800762{
763 u32 capacity; /* event log capacity in # entries */
764 u32 base; /* SRAM byte address of event log header */
765 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
766 u32 num_wraps; /* # times uCode wrapped to top of log */
767 u32 next_entry; /* index of next entry to be written by uCode */
768
769 if (priv->ucode_type == UCODE_INIT)
770 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
771 else
772 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
773 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
774 capacity = iwl_read_targ_mem(priv, base);
775 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
776 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
777 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
778 } else
779 return;
780
781 if (num_wraps == priv->event_log.num_wraps) {
782 iwl_print_cont_event_trace(priv,
783 base, priv->event_log.next_entry,
784 next_entry - priv->event_log.next_entry,
785 mode);
786 priv->event_log.non_wraps_count++;
787 } else {
788 if ((num_wraps - priv->event_log.num_wraps) > 1)
789 priv->event_log.wraps_more_count++;
790 else
791 priv->event_log.wraps_once_count++;
792 trace_iwlwifi_dev_ucode_wrap_event(priv,
793 num_wraps - priv->event_log.num_wraps,
794 next_entry, priv->event_log.next_entry);
795 if (next_entry < priv->event_log.next_entry) {
796 iwl_print_cont_event_trace(priv, base,
797 priv->event_log.next_entry,
798 capacity - priv->event_log.next_entry,
799 mode);
800
801 iwl_print_cont_event_trace(priv, base, 0,
802 next_entry, mode);
803 } else {
804 iwl_print_cont_event_trace(priv, base,
805 next_entry, capacity - next_entry,
806 mode);
807
808 iwl_print_cont_event_trace(priv, base, 0,
809 next_entry, mode);
810 }
811 }
812 priv->event_log.num_wraps = num_wraps;
813 priv->event_log.next_entry = next_entry;
814}
815
816/**
817 * iwl_bg_ucode_trace - Timer callback to log ucode event
818 *
819 * The timer is continually set to execute every
820 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
821 * this function is to perform continuous uCode event logging operation
822 * if enabled
823 */
824static void iwl_bg_ucode_trace(unsigned long data)
825{
826 struct iwl_priv *priv = (struct iwl_priv *)data;
827
828 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
829 return;
830
831 if (priv->event_log.ucode_trace) {
832 iwl_continuous_event_trace(priv);
833 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
834 mod_timer(&priv->ucode_trace,
835 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
836 }
837}
838
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700839static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800840 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700841{
Zhu Yi2f301222009-10-09 17:19:45 +0800842 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800843 struct iwl4965_beacon_notif *beacon =
844 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700845#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800846 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700847
Tomas Winklere1623442009-01-27 14:27:56 -0800848 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700849 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800850 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700851 beacon->beacon_notify_hdr.failure_frame,
852 le32_to_cpu(beacon->ibss_mgr_status),
853 le32_to_cpu(beacon->high_tsf),
854 le32_to_cpu(beacon->low_tsf), rate);
855#endif
856
Johannes Berga85d7cc2010-07-31 08:34:10 -0700857 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
858
Johannes Berg60744f62010-08-23 10:46:50 +0200859 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -0700860 queue_work(priv->workqueue, &priv->beacon_update);
861}
862
Zhu Yib481de92007-09-25 17:54:57 -0700863/* Handle notification from uCode that card's power state is changing
864 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700865static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800866 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700867{
Zhu Yi2f301222009-10-09 17:19:45 +0800868 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700869 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
870 unsigned long status = priv->status;
871
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800872 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700873 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800874 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
875 (flags & CT_CARD_DISABLED) ?
876 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700877
878 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800879 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700880
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700881 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700882 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
883
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700884 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
885 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700886
887 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700888 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700889 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700890 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700891 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700892 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800893 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700894 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700895 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800896 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700897 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700898
899 if (flags & HW_CARD_DISABLED)
900 set_bit(STATUS_RF_KILL_HW, &priv->status);
901 else
902 clear_bit(STATUS_RF_KILL_HW, &priv->status);
903
904
Zhu Yib481de92007-09-25 17:54:57 -0700905 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800906 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700907
908 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200909 test_bit(STATUS_RF_KILL_HW, &priv->status)))
910 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
911 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700912 else
913 wake_up_interruptible(&priv->wait_command_queue);
914}
915
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700916int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800917{
Tomas Winklere2e3c572008-07-18 13:53:04 +0800918 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800919 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800920 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
921 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
922 ~APMG_PS_CTRL_MSK_PWR_SRC);
923 } else {
924 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
925 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
926 ~APMG_PS_CTRL_MSK_PWR_SRC);
927 }
928
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700929 return 0;
Tomas Winklere2e3c572008-07-18 13:53:04 +0800930}
931
Wey-Yi Guy65550632010-06-24 13:18:35 -0700932static void iwl_bg_tx_flush(struct work_struct *work)
933{
934 struct iwl_priv *priv =
935 container_of(work, struct iwl_priv, tx_flush);
936
937 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
938 return;
939
940 /* do nothing if rf-kill is on */
941 if (!iwl_is_ready_rf(priv))
942 return;
943
944 if (priv->cfg->ops->lib->txfifo_flush) {
945 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
946 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
947 }
948}
949
Zhu Yib481de92007-09-25 17:54:57 -0700950/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700951 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700952 *
953 * Setup the RX handlers for each of the reply types sent from the uCode
954 * to the host.
955 *
956 * This function chains into the hardware specific files for them to setup
957 * any hardware specific handlers as well.
958 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800959static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700960{
Tomas Winkler885ba202008-05-29 16:34:55 +0800961 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700962 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
963 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800964 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
965 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700966 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700967 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700968 iwl_rx_pm_debug_statistics_notif;
969 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700970
Ben Cahill9fbab512007-11-29 11:09:47 +0800971 /*
972 * The same handler is used for both the REPLY to a discrete
973 * statistics request from the host as well as for the periodic
974 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700975 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800976 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800977 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800978
979 iwl_setup_rx_scan_handlers(priv);
980
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800981 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700982 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700983
Tomas Winklerc1354752008-05-29 16:35:04 +0800984 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
985 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800986 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700987 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
988 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800989 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700990 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800991 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700992 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700993}
994
Zhu Yib481de92007-09-25 17:54:57 -0700995/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800996 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700997 *
998 * Uses the priv->rx_handlers callback function array to invoke
999 * the appropriate handlers, including command responses,
1000 * frame-received notifications, and other notifications.
1001 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001002void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001003{
Tomas Winklera55360e2008-05-05 10:22:28 +08001004 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001005 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001006 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001007 u32 r, i;
1008 int reclaim;
1009 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001010 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001011 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001012 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -07001013
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001014 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1015 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001016 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001017 i = rxq->read;
1018
1019 /* Rx interrupt, but nothing sent from uCode */
1020 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001021 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001022
Mohamed Abbas4752c932009-05-22 11:01:51 -07001023 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001024 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001025 if (total_empty < 0)
1026 total_empty += RX_QUEUE_SIZE;
1027
1028 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001029 fill_rx = 1;
1030
Zhu Yib481de92007-09-25 17:54:57 -07001031 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001032 int len;
1033
Zhu Yib481de92007-09-25 17:54:57 -07001034 rxb = rxq->queue[i];
1035
Ben Cahill9fbab512007-11-29 11:09:47 +08001036 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001037 * then a bug has been introduced in the queue refilling
1038 * routines -- catch it here */
1039 BUG_ON(rxb == NULL);
1040
1041 rxq->queue[i] = NULL;
1042
Zhu Yi2f301222009-10-09 17:19:45 +08001043 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1044 PAGE_SIZE << priv->hw_params.rx_page_order,
1045 PCI_DMA_FROMDEVICE);
1046 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001047
Johannes Bergf4989d92010-05-28 04:08:30 -07001048 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1049 len += sizeof(u32); /* account for status word */
1050 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001051
Zhu Yib481de92007-09-25 17:54:57 -07001052 /* Reclaim a command buffer only if this packet is a response
1053 * to a (driver-originated) command.
1054 * If the packet (e.g. Rx frame) originated from uCode,
1055 * there is no command buffer to reclaim.
1056 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1057 * but apparently a few don't get set; catch them here. */
1058 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1059 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001060 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001061 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001062 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001063 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1064 (pkt->hdr.cmd != REPLY_TX);
1065
1066 /* Based on type of command response or notification,
1067 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001068 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001069 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001070 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001071 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001072 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001073 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001074 } else {
1075 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001076 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001077 "r %d i %d No handler needed for %s, 0x%02x\n",
1078 r, i, get_cmd_string(pkt->hdr.cmd),
1079 pkt->hdr.cmd);
1080 }
1081
Zhu Yi29b1b262009-10-23 13:42:25 -07001082 /*
1083 * XXX: After here, we should always check rxb->page
1084 * against NULL before touching it or its virtual
1085 * memory (pkt). Because some rx_handler might have
1086 * already taken or freed the pages.
1087 */
1088
Zhu Yib481de92007-09-25 17:54:57 -07001089 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001090 /* Invoke any callbacks, transfer the buffer to caller,
1091 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001092 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001093 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001094 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001095 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001096 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001097 }
1098
Zhu Yi73005152009-10-23 13:42:32 -07001099 /* Reuse the page if possible. For notification packets and
1100 * SKBs that fail to Rx correctly, add them back into the
1101 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001102 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001103 if (rxb->page != NULL) {
1104 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1105 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1106 PCI_DMA_FROMDEVICE);
1107 list_add_tail(&rxb->list, &rxq->rx_free);
1108 rxq->free_count++;
1109 } else
1110 list_add_tail(&rxb->list, &rxq->rx_used);
1111
Zhu Yib481de92007-09-25 17:54:57 -07001112 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001113
Zhu Yib481de92007-09-25 17:54:57 -07001114 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001115 /* If there are a lot of unused frames,
1116 * restock the Rx queue so ucode wont assert. */
1117 if (fill_rx) {
1118 count++;
1119 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001120 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001121 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001122 count = 0;
1123 }
1124 }
Zhu Yib481de92007-09-25 17:54:57 -07001125 }
1126
1127 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001128 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001129 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001130 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -07001131 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001132 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001133}
Tomas Winklera55360e2008-05-05 10:22:28 +08001134
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001135/* call this function to flush any scheduled tasklet */
1136static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1137{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001138 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001139 synchronize_irq(priv->pci_dev->irq);
1140 tasklet_kill(&priv->irq_tasklet);
1141}
1142
Mohamed Abbasef850d72009-05-22 11:01:50 -07001143static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001144{
1145 u32 inta, handled = 0;
1146 u32 inta_fh;
1147 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001148 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001149#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001150 u32 inta_mask;
1151#endif
1152
1153 spin_lock_irqsave(&priv->lock, flags);
1154
1155 /* Ack/clear/reset pending uCode interrupts.
1156 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1157 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001158 inta = iwl_read32(priv, CSR_INT);
1159 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001160
1161 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1162 * Any new interrupts that happen after this, either while we're
1163 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001164 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1165 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001166
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001167#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001168 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001169 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001170 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001171 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001172 inta, inta_mask, inta_fh);
1173 }
1174#endif
1175
Zhu Yi2f301222009-10-09 17:19:45 +08001176 spin_unlock_irqrestore(&priv->lock, flags);
1177
Zhu Yib481de92007-09-25 17:54:57 -07001178 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1179 * atomic, make sure that inta covers all the interrupts that
1180 * we've discovered, even if FH interrupt came in just after
1181 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001182 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001183 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001184 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001185 inta |= CSR_INT_BIT_FH_TX;
1186
1187 /* Now service all interrupt bits discovered above. */
1188 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001189 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001190
1191 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001192 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001193
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001194 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001195 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001196
1197 handled |= CSR_INT_BIT_HW_ERR;
1198
Zhu Yib481de92007-09-25 17:54:57 -07001199 return;
1200 }
1201
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001202#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001203 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001204 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001205 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001206 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001207 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001208 priv->isr_stats.sch++;
1209 }
Zhu Yib481de92007-09-25 17:54:57 -07001210
1211 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001212 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001213 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001214 priv->isr_stats.alive++;
1215 }
Zhu Yib481de92007-09-25 17:54:57 -07001216 }
1217#endif
1218 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001219 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001220
Ben Cahill9fbab512007-11-29 11:09:47 +08001221 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001222 if (inta & CSR_INT_BIT_RF_KILL) {
1223 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001224 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001225 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1226 hw_rf_kill = 1;
1227
Reinette Chatre4c423a22009-07-17 09:30:26 -07001228 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001229 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001230
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001231 priv->isr_stats.rfkill++;
1232
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001233 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001234 * the driver allows loading the ucode even if the radio
1235 * is killed. Hence update the killswitch state here. The
1236 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001237 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001238 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1239 if (hw_rf_kill)
1240 set_bit(STATUS_RF_KILL_HW, &priv->status);
1241 else
1242 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001243 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001244 }
Zhu Yib481de92007-09-25 17:54:57 -07001245
1246 handled |= CSR_INT_BIT_RF_KILL;
1247 }
1248
Ben Cahill9fbab512007-11-29 11:09:47 +08001249 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001250 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001251 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001252 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001253 handled |= CSR_INT_BIT_CT_KILL;
1254 }
1255
1256 /* Error detected by uCode */
1257 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001258 IWL_ERR(priv, "Microcode SW error detected. "
1259 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001260 priv->isr_stats.sw++;
1261 priv->isr_stats.sw_err = inta;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001262 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001263 handled |= CSR_INT_BIT_SW_ERR;
1264 }
1265
Ben Cahillc2e61da2009-10-30 14:36:09 -07001266 /*
1267 * uCode wakes up after power-down sleep.
1268 * Tell device about any new tx or host commands enqueued,
1269 * and about any Rx buffers made available while asleep.
1270 */
Zhu Yib481de92007-09-25 17:54:57 -07001271 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001272 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001273 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001274 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1275 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001276 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001277 handled |= CSR_INT_BIT_WAKEUP;
1278 }
1279
1280 /* All uCode command responses, including Tx command responses,
1281 * Rx "responses" (frame-received notification), and other
1282 * notifications from uCode come through here*/
1283 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001284 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001285 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001286 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1287 }
1288
Ben Cahillc72cd192009-10-30 14:36:08 -07001289 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001290 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001291 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001292 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001293 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001294 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001295 priv->ucode_write_complete = 1;
1296 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001297 }
1298
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001299 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001300 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001301 priv->isr_stats.unhandled++;
1302 }
Zhu Yib481de92007-09-25 17:54:57 -07001303
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001304 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001305 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001306 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001307 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001308 }
1309
1310 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001311 /* only Re-enable if diabled by irq */
1312 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001313 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001314
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001315#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001316 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001317 inta = iwl_read32(priv, CSR_INT);
1318 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1319 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001320 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001321 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1322 }
1323#endif
Zhu Yib481de92007-09-25 17:54:57 -07001324}
1325
Mohamed Abbasef850d72009-05-22 11:01:50 -07001326/* tasklet for iwlagn interrupt */
1327static void iwl_irq_tasklet(struct iwl_priv *priv)
1328{
1329 u32 inta = 0;
1330 u32 handled = 0;
1331 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001332 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001333#ifdef CONFIG_IWLWIFI_DEBUG
1334 u32 inta_mask;
1335#endif
1336
1337 spin_lock_irqsave(&priv->lock, flags);
1338
1339 /* Ack/clear/reset pending uCode interrupts.
1340 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1341 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001342 /* There is a hardware bug in the interrupt mask function that some
1343 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1344 * they are disabled in the CSR_INT_MASK register. Furthermore the
1345 * ICT interrupt handling mechanism has another bug that might cause
1346 * these unmasked interrupts fail to be detected. We workaround the
1347 * hardware bugs here by ACKing all the possible interrupts so that
1348 * interrupt coalescing can still be achieved.
1349 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001350 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001351
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001352 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001353
1354#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001355 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001356 /* just for debug */
1357 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1358 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1359 inta, inta_mask);
1360 }
1361#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001362
1363 spin_unlock_irqrestore(&priv->lock, flags);
1364
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001365 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1366 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001367
1368 /* Now service all interrupt bits discovered above. */
1369 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001370 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001371
1372 /* Tell the device to stop sending interrupts */
1373 iwl_disable_interrupts(priv);
1374
1375 priv->isr_stats.hw++;
1376 iwl_irq_handle_error(priv);
1377
1378 handled |= CSR_INT_BIT_HW_ERR;
1379
Mohamed Abbasef850d72009-05-22 11:01:50 -07001380 return;
1381 }
1382
1383#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001384 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001385 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1386 if (inta & CSR_INT_BIT_SCD) {
1387 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1388 "the frame/frames.\n");
1389 priv->isr_stats.sch++;
1390 }
1391
1392 /* Alive notification via Rx interrupt will do the real work */
1393 if (inta & CSR_INT_BIT_ALIVE) {
1394 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1395 priv->isr_stats.alive++;
1396 }
1397 }
1398#endif
1399 /* Safely ignore these bits for debug checks below */
1400 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1401
1402 /* HW RF KILL switch toggled */
1403 if (inta & CSR_INT_BIT_RF_KILL) {
1404 int hw_rf_kill = 0;
1405 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1406 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1407 hw_rf_kill = 1;
1408
Reinette Chatre4c423a22009-07-17 09:30:26 -07001409 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001410 hw_rf_kill ? "disable radio" : "enable radio");
1411
1412 priv->isr_stats.rfkill++;
1413
1414 /* driver only loads ucode once setting the interface up.
1415 * the driver allows loading the ucode even if the radio
1416 * is killed. Hence update the killswitch state here. The
1417 * rfkill handler will care about restarting if needed.
1418 */
1419 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1420 if (hw_rf_kill)
1421 set_bit(STATUS_RF_KILL_HW, &priv->status);
1422 else
1423 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001424 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001425 }
1426
1427 handled |= CSR_INT_BIT_RF_KILL;
1428 }
1429
1430 /* Chip got too hot and stopped itself */
1431 if (inta & CSR_INT_BIT_CT_KILL) {
1432 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1433 priv->isr_stats.ctkill++;
1434 handled |= CSR_INT_BIT_CT_KILL;
1435 }
1436
1437 /* Error detected by uCode */
1438 if (inta & CSR_INT_BIT_SW_ERR) {
1439 IWL_ERR(priv, "Microcode SW error detected. "
1440 " Restarting 0x%X.\n", inta);
1441 priv->isr_stats.sw++;
1442 priv->isr_stats.sw_err = inta;
1443 iwl_irq_handle_error(priv);
1444 handled |= CSR_INT_BIT_SW_ERR;
1445 }
1446
1447 /* uCode wakes up after power-down sleep */
1448 if (inta & CSR_INT_BIT_WAKEUP) {
1449 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1450 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001451 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1452 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001453
1454 priv->isr_stats.wakeup++;
1455
1456 handled |= CSR_INT_BIT_WAKEUP;
1457 }
1458
1459 /* All uCode command responses, including Tx command responses,
1460 * Rx "responses" (frame-received notification), and other
1461 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001462 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1463 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001464 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001465 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1466 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1467 iwl_write32(priv, CSR_FH_INT_STATUS,
1468 CSR49_FH_INT_RX_MASK);
1469 }
1470 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1471 handled |= CSR_INT_BIT_RX_PERIODIC;
1472 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1473 }
1474 /* Sending RX interrupt require many steps to be done in the
1475 * the device:
1476 * 1- write interrupt to current index in ICT table.
1477 * 2- dma RX frame.
1478 * 3- update RX shared data to indicate last write index.
1479 * 4- send interrupt.
1480 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001481 * but the shared data changes does not reflect this;
1482 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001483 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001484
1485 /* Disable periodic interrupt; we use it as just a one-shot. */
1486 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001487 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001488 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001489
1490 /*
1491 * Enable periodic interrupt in 8 msec only if we received
1492 * real RX interrupt (instead of just periodic int), to catch
1493 * any dangling Rx interrupt. If it was just the periodic
1494 * interrupt, there was no dangling Rx activity, and no need
1495 * to extend the periodic interrupt; one-shot is enough.
1496 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001497 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001498 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001499 CSR_INT_PERIODIC_ENA);
1500
Mohamed Abbasef850d72009-05-22 11:01:50 -07001501 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001502 }
1503
Ben Cahillc72cd192009-10-30 14:36:08 -07001504 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001505 if (inta & CSR_INT_BIT_FH_TX) {
1506 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001507 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001508 priv->isr_stats.tx++;
1509 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001510 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001511 priv->ucode_write_complete = 1;
1512 wake_up_interruptible(&priv->wait_command_queue);
1513 }
1514
1515 if (inta & ~handled) {
1516 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1517 priv->isr_stats.unhandled++;
1518 }
1519
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001520 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001521 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001522 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001523 }
1524
Mohamed Abbasef850d72009-05-22 11:01:50 -07001525 /* Re-enable all interrupts */
1526 /* only Re-enable if diabled by irq */
1527 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1528 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001529}
1530
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001531/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1532#define ACK_CNT_RATIO (50)
1533#define BA_TIMEOUT_CNT (5)
1534#define BA_TIMEOUT_MAX (16)
1535
1536/**
1537 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1538 *
1539 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1540 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1541 * operation state.
1542 */
1543bool iwl_good_ack_health(struct iwl_priv *priv,
1544 struct iwl_rx_packet *pkt)
1545{
1546 bool rc = true;
1547 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1548 int ba_timeout_delta;
1549
1550 actual_ack_cnt_delta =
1551 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001552 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001553 expected_ack_cnt_delta =
1554 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001555 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001556 ba_timeout_delta =
1557 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001558 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001559 if ((priv->_agn.agg_tids_count > 0) &&
1560 (expected_ack_cnt_delta > 0) &&
1561 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1562 < ACK_CNT_RATIO) &&
1563 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1564 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1565 " expected_ack_cnt = %d\n",
1566 actual_ack_cnt_delta, expected_ack_cnt_delta);
1567
Johannes Bergd73e4922010-05-06 12:18:41 -07001568#ifdef CONFIG_IWLWIFI_DEBUGFS
1569 /*
1570 * This is ifdef'ed on DEBUGFS because otherwise the
1571 * statistics aren't available. If DEBUGFS is set but
1572 * DEBUG is not, these will just compile out.
1573 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001574 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001575 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001576 IWL_DEBUG_RADIO(priv,
1577 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001578 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001579 ack_or_ba_timeout_collision);
1580#endif
1581 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1582 ba_timeout_delta);
1583 if (!actual_ack_cnt_delta &&
1584 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1585 rc = false;
1586 }
1587 return rc;
1588}
1589
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001590
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001591/*****************************************************************************
1592 *
1593 * sysfs attributes
1594 *
1595 *****************************************************************************/
1596
1597#ifdef CONFIG_IWLWIFI_DEBUG
1598
1599/*
1600 * The following adds a new attribute to the sysfs representation
1601 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1602 * used for controlling the debug level.
1603 *
1604 * See the level definitions in iwl for details.
1605 *
1606 * The debug_level being managed using sysfs below is a per device debug
1607 * level that is used instead of the global debug level if it (the per
1608 * device debug level) is set.
1609 */
1610static ssize_t show_debug_level(struct device *d,
1611 struct device_attribute *attr, char *buf)
1612{
1613 struct iwl_priv *priv = dev_get_drvdata(d);
1614 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1615}
1616static ssize_t store_debug_level(struct device *d,
1617 struct device_attribute *attr,
1618 const char *buf, size_t count)
1619{
1620 struct iwl_priv *priv = dev_get_drvdata(d);
1621 unsigned long val;
1622 int ret;
1623
1624 ret = strict_strtoul(buf, 0, &val);
1625 if (ret)
1626 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1627 else {
1628 priv->debug_level = val;
1629 if (iwl_alloc_traffic_mem(priv))
1630 IWL_ERR(priv,
1631 "Not enough memory to generate traffic log\n");
1632 }
1633 return strnlen(buf, count);
1634}
1635
1636static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1637 show_debug_level, store_debug_level);
1638
1639
1640#endif /* CONFIG_IWLWIFI_DEBUG */
1641
1642
1643static ssize_t show_temperature(struct device *d,
1644 struct device_attribute *attr, char *buf)
1645{
1646 struct iwl_priv *priv = dev_get_drvdata(d);
1647
1648 if (!iwl_is_alive(priv))
1649 return -EAGAIN;
1650
1651 return sprintf(buf, "%d\n", priv->temperature);
1652}
1653
1654static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1655
1656static ssize_t show_tx_power(struct device *d,
1657 struct device_attribute *attr, char *buf)
1658{
1659 struct iwl_priv *priv = dev_get_drvdata(d);
1660
1661 if (!iwl_is_ready_rf(priv))
1662 return sprintf(buf, "off\n");
1663 else
1664 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1665}
1666
1667static ssize_t store_tx_power(struct device *d,
1668 struct device_attribute *attr,
1669 const char *buf, size_t count)
1670{
1671 struct iwl_priv *priv = dev_get_drvdata(d);
1672 unsigned long val;
1673 int ret;
1674
1675 ret = strict_strtoul(buf, 10, &val);
1676 if (ret)
1677 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1678 else {
1679 ret = iwl_set_tx_power(priv, val, false);
1680 if (ret)
1681 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1682 ret);
1683 else
1684 ret = count;
1685 }
1686 return ret;
1687}
1688
1689static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1690
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001691static struct attribute *iwl_sysfs_entries[] = {
1692 &dev_attr_temperature.attr,
1693 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001694#ifdef CONFIG_IWLWIFI_DEBUG
1695 &dev_attr_debug_level.attr,
1696#endif
1697 NULL
1698};
1699
1700static struct attribute_group iwl_attribute_group = {
1701 .name = NULL, /* put in device directory */
1702 .attrs = iwl_sysfs_entries,
1703};
1704
Zhu Yib481de92007-09-25 17:54:57 -07001705/******************************************************************************
1706 *
1707 * uCode download functions
1708 *
1709 ******************************************************************************/
1710
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001711static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001712{
Tomas Winkler98c92212008-01-14 17:46:20 -08001713 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1714 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1715 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1716 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1717 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1718 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001719}
1720
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001721static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001722{
1723 /* Remove all resets to allow NIC to operate */
1724 iwl_write32(priv, CSR_RESET, 0);
1725}
1726
Johannes Bergdd7a2502010-04-28 23:33:10 -07001727struct iwlagn_ucode_capabilities {
1728 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001729 u32 standard_phy_calibration_size;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001730 bool pan;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001731};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001732
Johannes Bergb08dfd02010-01-29 11:54:56 -08001733static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001734static int iwl_mac_setup_register(struct iwl_priv *priv,
1735 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001736
Jay Sternberg39396082010-08-12 10:24:07 -07001737#define UCODE_EXPERIMENTAL_INDEX 100
1738#define UCODE_EXPERIMENTAL_TAG "exp"
1739
Johannes Bergb08dfd02010-01-29 11:54:56 -08001740static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001741{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001742 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001743 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001744
Jay Sternberg39396082010-08-12 10:24:07 -07001745 if (first) {
1746#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1747 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1748 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1749 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1750#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001751 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001752 sprintf(tag, "%d", priv->fw_index);
1753 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001754 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001755 sprintf(tag, "%d", priv->fw_index);
1756 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001757
1758 if (priv->fw_index < priv->cfg->ucode_api_min) {
1759 IWL_ERR(priv, "no suitable firmware found!\n");
1760 return -ENOENT;
1761 }
1762
Jay Sternberg39396082010-08-12 10:24:07 -07001763 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001764
Jay Sternberg39396082010-08-12 10:24:07 -07001765 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1766 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1767 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001768 priv->firmware_name);
1769
1770 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1771 &priv->pci_dev->dev, GFP_KERNEL, priv,
1772 iwl_ucode_callback);
1773}
1774
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001775struct iwlagn_firmware_pieces {
1776 const void *inst, *data, *init, *init_data, *boot;
1777 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1778
1779 u32 build;
Johannes Bergb2e640d42010-05-05 23:24:54 -07001780
1781 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1782 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001783};
1784
1785static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1786 const struct firmware *ucode_raw,
1787 struct iwlagn_firmware_pieces *pieces)
1788{
1789 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1790 u32 api_ver, hdr_size;
1791 const u8 *src;
1792
1793 priv->ucode_ver = le32_to_cpu(ucode->ver);
1794 api_ver = IWL_UCODE_API(priv->ucode_ver);
1795
1796 switch (api_ver) {
1797 default:
1798 /*
1799 * 4965 doesn't revision the firmware file format
1800 * along with the API version, it always uses v1
1801 * file format.
1802 */
1803 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1804 CSR_HW_REV_TYPE_4965) {
1805 hdr_size = 28;
1806 if (ucode_raw->size < hdr_size) {
1807 IWL_ERR(priv, "File size too small!\n");
1808 return -EINVAL;
1809 }
1810 pieces->build = le32_to_cpu(ucode->u.v2.build);
1811 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1812 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1813 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1814 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1815 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1816 src = ucode->u.v2.data;
1817 break;
1818 }
1819 /* fall through for 4965 */
1820 case 0:
1821 case 1:
1822 case 2:
1823 hdr_size = 24;
1824 if (ucode_raw->size < hdr_size) {
1825 IWL_ERR(priv, "File size too small!\n");
1826 return -EINVAL;
1827 }
1828 pieces->build = 0;
1829 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1830 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1831 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1832 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1833 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1834 src = ucode->u.v1.data;
1835 break;
1836 }
1837
1838 /* Verify size of file vs. image size info in file's header */
1839 if (ucode_raw->size != hdr_size + pieces->inst_size +
1840 pieces->data_size + pieces->init_size +
1841 pieces->init_data_size + pieces->boot_size) {
1842
1843 IWL_ERR(priv,
1844 "uCode file size %d does not match expected size\n",
1845 (int)ucode_raw->size);
1846 return -EINVAL;
1847 }
1848
1849 pieces->inst = src;
1850 src += pieces->inst_size;
1851 pieces->data = src;
1852 src += pieces->data_size;
1853 pieces->init = src;
1854 src += pieces->init_size;
1855 pieces->init_data = src;
1856 src += pieces->init_data_size;
1857 pieces->boot = src;
1858 src += pieces->boot_size;
1859
1860 return 0;
1861}
1862
Johannes Bergdd7a2502010-04-28 23:33:10 -07001863static int iwlagn_wanted_ucode_alternative = 1;
1864
1865static int iwlagn_load_firmware(struct iwl_priv *priv,
1866 const struct firmware *ucode_raw,
1867 struct iwlagn_firmware_pieces *pieces,
1868 struct iwlagn_ucode_capabilities *capa)
1869{
1870 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1871 struct iwl_ucode_tlv *tlv;
1872 size_t len = ucode_raw->size;
1873 const u8 *data;
1874 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1875 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001876 u32 tlv_len;
1877 enum iwl_ucode_tlv_type tlv_type;
1878 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001879
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001880 if (len < sizeof(*ucode)) {
1881 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001882 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001883 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001884
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001885 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1886 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1887 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001888 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001889 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001890
1891 /*
1892 * Check which alternatives are present, and "downgrade"
1893 * when the chosen alternative is not present, warning
1894 * the user when that happens. Some files may not have
1895 * any alternatives, so don't warn in that case.
1896 */
1897 alternatives = le64_to_cpu(ucode->alternatives);
1898 tmp = wanted_alternative;
1899 if (wanted_alternative > 63)
1900 wanted_alternative = 63;
1901 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1902 wanted_alternative--;
1903 if (wanted_alternative && wanted_alternative != tmp)
1904 IWL_WARN(priv,
1905 "uCode alternative %d not available, choosing %d\n",
1906 tmp, wanted_alternative);
1907
1908 priv->ucode_ver = le32_to_cpu(ucode->ver);
1909 pieces->build = le32_to_cpu(ucode->build);
1910 data = ucode->data;
1911
1912 len -= sizeof(*ucode);
1913
Johannes Berg704da532010-07-14 09:34:50 -07001914 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001915 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001916
1917 len -= sizeof(*tlv);
1918 tlv = (void *)data;
1919
1920 tlv_len = le32_to_cpu(tlv->length);
1921 tlv_type = le16_to_cpu(tlv->type);
1922 tlv_alt = le16_to_cpu(tlv->alternative);
1923 tlv_data = tlv->data;
1924
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001925 if (len < tlv_len) {
1926 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1927 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001928 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001929 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001930 len -= ALIGN(tlv_len, 4);
1931 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1932
1933 /*
1934 * Alternative 0 is always valid.
1935 *
1936 * Skip alternative TLVs that are not selected.
1937 */
1938 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1939 continue;
1940
1941 switch (tlv_type) {
1942 case IWL_UCODE_TLV_INST:
1943 pieces->inst = tlv_data;
1944 pieces->inst_size = tlv_len;
1945 break;
1946 case IWL_UCODE_TLV_DATA:
1947 pieces->data = tlv_data;
1948 pieces->data_size = tlv_len;
1949 break;
1950 case IWL_UCODE_TLV_INIT:
1951 pieces->init = tlv_data;
1952 pieces->init_size = tlv_len;
1953 break;
1954 case IWL_UCODE_TLV_INIT_DATA:
1955 pieces->init_data = tlv_data;
1956 pieces->init_data_size = tlv_len;
1957 break;
1958 case IWL_UCODE_TLV_BOOT:
1959 pieces->boot = tlv_data;
1960 pieces->boot_size = tlv_len;
1961 break;
1962 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001963 if (tlv_len != sizeof(u32))
1964 goto invalid_tlv_len;
1965 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001966 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001967 break;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001968 case IWL_UCODE_TLV_PAN:
1969 if (tlv_len)
1970 goto invalid_tlv_len;
1971 capa->pan = true;
1972 break;
Johannes Bergb2e640d42010-05-05 23:24:54 -07001973 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001974 if (tlv_len != sizeof(u32))
1975 goto invalid_tlv_len;
1976 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001977 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07001978 break;
1979 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001980 if (tlv_len != sizeof(u32))
1981 goto invalid_tlv_len;
1982 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001983 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07001984 break;
1985 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001986 if (tlv_len != sizeof(u32))
1987 goto invalid_tlv_len;
1988 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001989 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07001990 break;
1991 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001992 if (tlv_len != sizeof(u32))
1993 goto invalid_tlv_len;
1994 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001995 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07001996 break;
1997 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001998 if (tlv_len != sizeof(u32))
1999 goto invalid_tlv_len;
2000 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002001 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002002 break;
2003 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07002004 if (tlv_len != sizeof(u32))
2005 goto invalid_tlv_len;
2006 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002007 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002008 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002009 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
2010 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07002011 goto invalid_tlv_len;
2012 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002013 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002014 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002015 if (tlv_len != sizeof(u32))
2016 goto invalid_tlv_len;
2017 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002018 le32_to_cpup((__le32 *)tlv_data);
2019 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002020 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002021 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07002022 break;
2023 }
2024 }
2025
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002026 if (len) {
2027 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
2028 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07002029 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002030 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07002031
Johannes Berg704da532010-07-14 09:34:50 -07002032 return 0;
2033
2034 invalid_tlv_len:
2035 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
2036 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
2037
2038 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002039}
2040
Johannes Bergb08dfd02010-01-29 11:54:56 -08002041/**
2042 * iwl_ucode_callback - callback when firmware was loaded
2043 *
2044 * If loaded successfully, copies the firmware into buffers
2045 * for the card to fetch (via DMA).
2046 */
2047static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
2048{
2049 struct iwl_priv *priv = context;
2050 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002051 int err;
2052 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002053 const unsigned int api_max = priv->cfg->ucode_api_max;
2054 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002055 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07002056 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002057 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002058 struct iwlagn_ucode_capabilities ucode_capa = {
2059 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002060 .standard_phy_calibration_size =
2061 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07002062 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002063
2064 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07002065
Johannes Bergb08dfd02010-01-29 11:54:56 -08002066 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07002067 if (priv->fw_index <= priv->cfg->ucode_api_max)
2068 IWL_ERR(priv,
2069 "request for firmware file '%s' failed.\n",
2070 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002071 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002072 }
2073
Johannes Bergb08dfd02010-01-29 11:54:56 -08002074 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
2075 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07002076
Johannes Berg22adba22010-04-28 12:09:14 -07002077 /* Make sure that we got at least the API version number */
2078 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002079 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08002080 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002081 }
2082
2083 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002084 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002085
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002086 if (ucode->ver)
2087 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
2088 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07002089 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
2090 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002091
2092 if (err)
2093 goto try_again;
2094
Reinette Chatrea0987a82008-12-02 12:14:06 -08002095 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002096 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07002097
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002098 /*
2099 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08002100 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002101 * on the API version read from firmware header from here on forward
2102 */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002103 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002104 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002105 "Driver supports v%u, firmware is v%u.\n",
2106 api_max, api_ver);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002107 goto try_again;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002108 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08002109
Reinette Chatrea0987a82008-12-02 12:14:06 -08002110 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08002111 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002112 "got v%u. New firmware can be obtained "
2113 "from http://www.intellinuxwireless.org.\n",
2114 api_max, api_ver);
2115
Johannes Berg3e4de762010-04-28 12:09:12 -07002116 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07002117 sprintf(buildstr, " build %u%s", build,
2118 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
2119 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07002120 else
2121 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08002122
Johannes Berg3e4de762010-04-28 12:09:12 -07002123 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002124 IWL_UCODE_MAJOR(priv->ucode_ver),
2125 IWL_UCODE_MINOR(priv->ucode_ver),
2126 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07002127 IWL_UCODE_SERIAL(priv->ucode_ver),
2128 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002129
Johannes Berg3e4de762010-04-28 12:09:12 -07002130 snprintf(priv->hw->wiphy->fw_version,
2131 sizeof(priv->hw->wiphy->fw_version),
2132 "%u.%u.%u.%u%s",
2133 IWL_UCODE_MAJOR(priv->ucode_ver),
2134 IWL_UCODE_MINOR(priv->ucode_ver),
2135 IWL_UCODE_API(priv->ucode_ver),
2136 IWL_UCODE_SERIAL(priv->ucode_ver),
2137 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07002138
Johannes Bergb08dfd02010-01-29 11:54:56 -08002139 /*
2140 * For any of the failures below (before allocating pci memory)
2141 * we will try to load a version with a smaller API -- maybe the
2142 * user just got a corrupted version of the latest API.
2143 */
2144
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002145 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2146 priv->ucode_ver);
2147 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
2148 pieces.inst_size);
2149 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
2150 pieces.data_size);
2151 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2152 pieces.init_size);
2153 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2154 pieces.init_data_size);
2155 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2156 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002157
2158 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002159 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2160 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2161 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002162 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002163 }
2164
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002165 if (pieces.data_size > priv->hw_params.max_data_size) {
2166 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2167 pieces.data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002168 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002169 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002170
2171 if (pieces.init_size > priv->hw_params.max_inst_size) {
2172 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2173 pieces.init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002174 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002175 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002176
2177 if (pieces.init_data_size > priv->hw_params.max_data_size) {
2178 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2179 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002180 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002181 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002182
2183 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2184 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2185 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002186 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002187 }
2188
2189 /* Allocate ucode buffers for card's bus-master loading ... */
2190
2191 /* Runtime instructions and 2 copies of data:
2192 * 1) unmodified from disk
2193 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002194 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002195 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002196
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002197 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002198 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002199
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002200 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002201 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002202
Zhu, Yi1f304e42009-01-23 13:45:22 -08002203 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2204 !priv->ucode_data_backup.v_addr)
2205 goto err_pci_alloc;
2206
Zhu Yib481de92007-09-25 17:54:57 -07002207 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002208 if (pieces.init_size && pieces.init_data_size) {
2209 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002210 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002211
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002212 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002213 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002214
2215 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2216 goto err_pci_alloc;
2217 }
Zhu Yib481de92007-09-25 17:54:57 -07002218
2219 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002220 if (pieces.boot_size) {
2221 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002222 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002223
Tomas Winkler90e759d2007-11-29 11:09:41 +08002224 if (!priv->ucode_boot.v_addr)
2225 goto err_pci_alloc;
2226 }
Zhu Yib481de92007-09-25 17:54:57 -07002227
Johannes Bergb2e640d42010-05-05 23:24:54 -07002228 /* Now that we can no longer fail, copy information */
2229
2230 /*
2231 * The (size - 16) / 12 formula is based on the information recorded
2232 * for each event, which is of mode 1 (including timestamp) for all
2233 * new microcodes that include this information.
2234 */
2235 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2236 if (pieces.init_evtlog_size)
2237 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2238 else
2239 priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size;
2240 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2241 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2242 if (pieces.inst_evtlog_size)
2243 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2244 else
2245 priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size;
2246 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2247
Johannes Bergece9c4e2010-08-23 10:46:49 +02002248 if (ucode_capa.pan) {
2249 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
Johannes Bergc10afb62010-08-23 10:46:43 +02002250 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
Johannes Bergece9c4e2010-08-23 10:46:49 +02002251 } else
2252 priv->sta_key_max_num = STA_KEY_MAX_NUM;
Johannes Bergc10afb62010-08-23 10:46:43 +02002253
Zhu Yib481de92007-09-25 17:54:57 -07002254 /* Copy images into buffers for card's bus-master reads ... */
2255
2256 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002257 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2258 pieces.inst_size);
2259 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002260
Tomas Winklere1623442009-01-27 14:27:56 -08002261 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002262 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2263
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002264 /*
2265 * Runtime data
2266 * NOTE: Copy into backup buffer will be done in iwl_up()
2267 */
2268 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2269 pieces.data_size);
2270 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2271 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002272
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002273 /* Initialization instructions */
2274 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002275 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002276 pieces.init_size);
2277 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002278 }
2279
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002280 /* Initialization data */
2281 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002282 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002283 pieces.init_data_size);
2284 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2285 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002286 }
2287
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002288 /* Bootstrap instructions */
2289 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2290 pieces.boot_size);
2291 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002292
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002293 /*
2294 * figure out the offset of chain noise reset and gain commands
2295 * base on the size of standard phy calibration commands table size
2296 */
2297 if (ucode_capa.standard_phy_calibration_size >
2298 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2299 ucode_capa.standard_phy_calibration_size =
2300 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2301
2302 priv->_agn.phy_calib_chain_noise_reset_cmd =
2303 ucode_capa.standard_phy_calibration_size;
2304 priv->_agn.phy_calib_chain_noise_gain_cmd =
2305 ucode_capa.standard_phy_calibration_size + 1;
2306
Johannes Bergb08dfd02010-01-29 11:54:56 -08002307 /**************************************************
2308 * This is still part of probe() in a sense...
2309 *
2310 * 9. Setup and register with mac80211 and debugfs
2311 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002312 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002313 if (err)
2314 goto out_unbind;
2315
2316 err = iwl_dbgfs_register(priv, DRV_NAME);
2317 if (err)
2318 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2319
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002320 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2321 &iwl_attribute_group);
2322 if (err) {
2323 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2324 goto out_unbind;
2325 }
2326
Zhu Yib481de92007-09-25 17:54:57 -07002327 /* We have our copies now, allow OS release its copies */
2328 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002329 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002330 return;
2331
2332 try_again:
2333 /* try next, if any */
2334 if (iwl_request_firmware(priv, false))
2335 goto out_unbind;
2336 release_firmware(ucode_raw);
2337 return;
Zhu Yib481de92007-09-25 17:54:57 -07002338
2339 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002340 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002341 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002342 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002343 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002344 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002345 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002346}
2347
Reinette Chatreb7a79402009-09-25 14:24:23 -07002348static const char *desc_lookup_text[] = {
2349 "OK",
2350 "FAIL",
2351 "BAD_PARAM",
2352 "BAD_CHECKSUM",
2353 "NMI_INTERRUPT_WDG",
2354 "SYSASSERT",
2355 "FATAL_ERROR",
2356 "BAD_COMMAND",
2357 "HW_ERROR_TUNE_LOCK",
2358 "HW_ERROR_TEMPERATURE",
2359 "ILLEGAL_CHAN_FREQ",
2360 "VCC_NOT_STABLE",
2361 "FH_ERROR",
2362 "NMI_INTERRUPT_HOST",
2363 "NMI_INTERRUPT_ACTION_PT",
2364 "NMI_INTERRUPT_UNKNOWN",
2365 "UCODE_VERSION_MISMATCH",
2366 "HW_ERROR_ABS_LOCK",
2367 "HW_ERROR_CAL_LOCK_FAIL",
2368 "NMI_INTERRUPT_INST_ACTION_PT",
2369 "NMI_INTERRUPT_DATA_ACTION_PT",
2370 "NMI_TRM_HW_ER",
2371 "NMI_INTERRUPT_TRM",
2372 "NMI_INTERRUPT_BREAK_POINT"
2373 "DEBUG_0",
2374 "DEBUG_1",
2375 "DEBUG_2",
2376 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002377};
2378
Jay Sternberg4b586452010-07-02 15:49:10 -07002379static struct { char *name; u8 num; } advanced_lookup[] = {
2380 { "NMI_INTERRUPT_WDG", 0x34 },
2381 { "SYSASSERT", 0x35 },
2382 { "UCODE_VERSION_MISMATCH", 0x37 },
2383 { "BAD_COMMAND", 0x38 },
2384 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2385 { "FATAL_ERROR", 0x3D },
2386 { "NMI_TRM_HW_ERR", 0x46 },
2387 { "NMI_INTERRUPT_TRM", 0x4C },
2388 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2389 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2390 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2391 { "NMI_INTERRUPT_HOST", 0x66 },
2392 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2393 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2394 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2395 { "ADVANCED_SYSASSERT", 0 },
2396};
2397
2398static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002399{
Jay Sternberg4b586452010-07-02 15:49:10 -07002400 int i;
2401 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002402
Jay Sternberg4b586452010-07-02 15:49:10 -07002403 if (num < max)
2404 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002405
Jay Sternberg4b586452010-07-02 15:49:10 -07002406 max = ARRAY_SIZE(advanced_lookup) - 1;
2407 for (i = 0; i < max; i++) {
2408 if (advanced_lookup[i].num == num)
2409 break;;
2410 }
2411 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002412}
2413
2414#define ERROR_START_OFFSET (1 * sizeof(u32))
2415#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2416
2417void iwl_dump_nic_error_log(struct iwl_priv *priv)
2418{
2419 u32 data2, line;
2420 u32 desc, time, count, base, data1;
2421 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002422 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002423
Johannes Bergb2e640d42010-05-05 23:24:54 -07002424 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002425 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002426 if (!base)
2427 base = priv->_agn.init_errlog_ptr;
2428 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002429 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002430 if (!base)
2431 base = priv->_agn.inst_errlog_ptr;
2432 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002433
2434 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002435 IWL_ERR(priv,
2436 "Not valid error log pointer 0x%08X for %s uCode\n",
2437 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002438 return;
2439 }
2440
2441 count = iwl_read_targ_mem(priv, base);
2442
2443 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2444 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2445 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2446 priv->status, count);
2447 }
2448
2449 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002450 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002451 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2452 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2453 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2454 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2455 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2456 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2457 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2458 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002459 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002460
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002461 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2462 blink1, blink2, ilink1, ilink2);
2463
Jay Sternberg87563712010-06-14 14:40:40 -07002464 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002465 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002466 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002467 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002468 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2469 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2470 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002471}
2472
2473#define EVENT_START_OFFSET (4 * sizeof(u32))
2474
2475/**
2476 * iwl_print_event_log - Dump error event log to syslog
2477 *
2478 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002479static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2480 u32 num_events, u32 mode,
2481 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002482{
2483 u32 i;
2484 u32 base; /* SRAM byte address of event log header */
2485 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2486 u32 ptr; /* SRAM byte address of log data */
2487 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002488 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002489
2490 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002491 return pos;
Johannes Bergb2e640d42010-05-05 23:24:54 -07002492
2493 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002494 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002495 if (!base)
2496 base = priv->_agn.init_evtlog_ptr;
2497 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002498 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002499 if (!base)
2500 base = priv->_agn.inst_evtlog_ptr;
2501 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002502
2503 if (mode == 0)
2504 event_size = 2 * sizeof(u32);
2505 else
2506 event_size = 3 * sizeof(u32);
2507
2508 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2509
Ben Cahille5854472009-11-06 14:52:58 -08002510 /* Make sure device is powered up for SRAM reads */
2511 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2512 iwl_grab_nic_access(priv);
2513
2514 /* Set starting address; reads will auto-increment */
2515 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2516 rmb();
2517
Reinette Chatreb7a79402009-09-25 14:24:23 -07002518 /* "time" is actually "data" for mode 0 (no timestamp).
2519 * place event id # at far right for easier visual parsing. */
2520 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002521 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2522 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002523 if (mode == 0) {
2524 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002525 if (bufsz) {
2526 pos += scnprintf(*buf + pos, bufsz - pos,
2527 "EVT_LOG:0x%08x:%04u\n",
2528 time, ev);
2529 } else {
2530 trace_iwlwifi_dev_ucode_event(priv, 0,
2531 time, ev);
2532 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2533 time, ev);
2534 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002535 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002536 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002537 if (bufsz) {
2538 pos += scnprintf(*buf + pos, bufsz - pos,
2539 "EVT_LOGT:%010u:0x%08x:%04u\n",
2540 time, data, ev);
2541 } else {
2542 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002543 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002544 trace_iwlwifi_dev_ucode_event(priv, time,
2545 data, ev);
2546 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002547 }
2548 }
Ben Cahille5854472009-11-06 14:52:58 -08002549
2550 /* Allow device to power down */
2551 iwl_release_nic_access(priv);
2552 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002553 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002554}
2555
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002556/**
2557 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2558 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002559static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2560 u32 num_wraps, u32 next_entry,
2561 u32 size, u32 mode,
2562 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002563{
2564 /*
2565 * display the newest DEFAULT_LOG_ENTRIES entries
2566 * i.e the entries just before the next ont that uCode would fill.
2567 */
2568 if (num_wraps) {
2569 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002570 pos = iwl_print_event_log(priv,
2571 capacity - (size - next_entry),
2572 size - next_entry, mode,
2573 pos, buf, bufsz);
2574 pos = iwl_print_event_log(priv, 0,
2575 next_entry, mode,
2576 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002577 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002578 pos = iwl_print_event_log(priv, next_entry - size,
2579 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002580 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002581 if (next_entry < size) {
2582 pos = iwl_print_event_log(priv, 0, next_entry,
2583 mode, pos, buf, bufsz);
2584 } else {
2585 pos = iwl_print_event_log(priv, next_entry - size,
2586 size, mode, pos, buf, bufsz);
2587 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002588 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002589 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002590}
2591
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002592#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2593
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002594int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2595 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002596{
2597 u32 base; /* SRAM byte address of event log header */
2598 u32 capacity; /* event log capacity in # entries */
2599 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2600 u32 num_wraps; /* # times uCode wrapped to top of log */
2601 u32 next_entry; /* index of next entry to be written by uCode */
2602 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d42010-05-05 23:24:54 -07002603 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002604 int pos = 0;
2605 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002606
Johannes Bergb2e640d42010-05-05 23:24:54 -07002607 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002608 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002609 logsize = priv->_agn.init_evtlog_size;
2610 if (!base)
2611 base = priv->_agn.init_evtlog_ptr;
2612 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002613 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002614 logsize = priv->_agn.inst_evtlog_size;
2615 if (!base)
2616 base = priv->_agn.inst_evtlog_ptr;
2617 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002618
2619 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002620 IWL_ERR(priv,
2621 "Invalid event log pointer 0x%08X for %s uCode\n",
2622 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002623 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002624 }
2625
2626 /* event log header */
2627 capacity = iwl_read_targ_mem(priv, base);
2628 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2629 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2630 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2631
Johannes Bergb2e640d42010-05-05 23:24:54 -07002632 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002633 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d42010-05-05 23:24:54 -07002634 capacity, logsize);
2635 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002636 }
2637
Johannes Bergb2e640d42010-05-05 23:24:54 -07002638 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002639 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d42010-05-05 23:24:54 -07002640 next_entry, logsize);
2641 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002642 }
2643
Reinette Chatreb7a79402009-09-25 14:24:23 -07002644 size = num_wraps ? capacity : next_entry;
2645
2646 /* bail out if nothing in log */
2647 if (size == 0) {
2648 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002649 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002650 }
2651
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002652 /* enable/disable bt channel announcement */
2653 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2654
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002655#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002656 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002657 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2658 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2659#else
2660 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2661 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002662#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002663 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2664 size);
2665
2666#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002667 if (display) {
2668 if (full_log)
2669 bufsz = capacity * 48;
2670 else
2671 bufsz = size * 48;
2672 *buf = kmalloc(bufsz, GFP_KERNEL);
2673 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002674 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002675 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002676 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2677 /*
2678 * if uCode has wrapped back to top of log,
2679 * start at the oldest entry,
2680 * i.e the next one that uCode would fill.
2681 */
2682 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002683 pos = iwl_print_event_log(priv, next_entry,
2684 capacity - next_entry, mode,
2685 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002686 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002687 pos = iwl_print_event_log(priv, 0,
2688 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002689 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002690 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2691 next_entry, size, mode,
2692 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002693#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002694 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2695 next_entry, size, mode,
2696 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002697#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002698 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002699}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002700
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002701static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2702{
2703 struct iwl_ct_kill_config cmd;
2704 struct iwl_ct_kill_throttling_config adv_cmd;
2705 unsigned long flags;
2706 int ret = 0;
2707
2708 spin_lock_irqsave(&priv->lock, flags);
2709 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2710 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2711 spin_unlock_irqrestore(&priv->lock, flags);
2712 priv->thermal_throttle.ct_kill_toggle = false;
2713
2714 if (priv->cfg->support_ct_kill_exit) {
2715 adv_cmd.critical_temperature_enter =
2716 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2717 adv_cmd.critical_temperature_exit =
2718 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2719
2720 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2721 sizeof(adv_cmd), &adv_cmd);
2722 if (ret)
2723 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2724 else
2725 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2726 "succeeded, "
2727 "critical temperature enter is %d,"
2728 "exit is %d\n",
2729 priv->hw_params.ct_kill_threshold,
2730 priv->hw_params.ct_kill_exit_threshold);
2731 } else {
2732 cmd.critical_temperature_R =
2733 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2734
2735 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2736 sizeof(cmd), &cmd);
2737 if (ret)
2738 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2739 else
2740 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2741 "succeeded, "
2742 "critical temperature is %d\n",
2743 priv->hw_params.ct_kill_threshold);
2744 }
2745}
2746
Zhu Yib481de92007-09-25 17:54:57 -07002747/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002748 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002749 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002750 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002751 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002752static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002753{
Tomas Winkler57aab752008-04-14 21:16:03 -07002754 int ret = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02002755 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Zhu Yib481de92007-09-25 17:54:57 -07002756
Tomas Winklere1623442009-01-27 14:27:56 -08002757 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002758
2759 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2760 /* We had an error bringing up the hardware, so take it
2761 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002762 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002763 goto restart;
2764 }
2765
2766 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2767 * This is a paranoid check, because we would not have gotten the
2768 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002769 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002770 /* Runtime instruction load was bad;
2771 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002772 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002773 goto restart;
2774 }
2775
Tomas Winkler57aab752008-04-14 21:16:03 -07002776 ret = priv->cfg->ops->lib->alive_notify(priv);
2777 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002778 IWL_WARN(priv,
2779 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002780 goto restart;
2781 }
2782
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002783 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002784 set_bit(STATUS_ALIVE, &priv->status);
2785
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002786 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2787 /* Enable timer to monitor the driver queues */
2788 mod_timer(&priv->monitor_recover,
2789 jiffies +
2790 msecs_to_jiffies(priv->cfg->monitor_recover_period));
2791 }
2792
Tomas Winklerfee12472008-04-03 16:05:21 -07002793 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002794 return;
2795
Johannes Berg36d68252008-05-15 12:55:26 +02002796 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002797
Johannes Berg470ab2d2010-01-21 11:23:30 -08002798 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002799
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002800 /* Configure Tx antenna selection based on H/W config */
2801 if (priv->cfg->ops->hcmd->set_tx_ant)
2802 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2803
Johannes Berg246ed352010-08-23 10:46:32 +02002804 if (iwl_is_associated_ctx(ctx)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002805 struct iwl_rxon_cmd *active_rxon =
Johannes Berg246ed352010-08-23 10:46:32 +02002806 (struct iwl_rxon_cmd *)&ctx->active;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002807 /* apply any changes in staging */
Johannes Berg246ed352010-08-23 10:46:32 +02002808 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002809 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2810 } else {
2811 /* Initialize our rx_config data */
Johannes Berg1dda6d22010-04-29 04:43:06 -07002812 iwl_connection_init_rx_config(priv, NULL);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002813
2814 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02002815 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002816 }
2817
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002818 if (!priv->cfg->advanced_bt_coexist) {
2819 /* Configure Bluetooth device coexistence support */
2820 priv->cfg->ops->hcmd->send_bt_config(priv);
2821 }
Zhu Yib481de92007-09-25 17:54:57 -07002822
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002823 iwl_reset_run_time_calib(priv);
2824
Zhu Yib481de92007-09-25 17:54:57 -07002825 /* Configure the adapter for unassociated operation */
Johannes Berg246ed352010-08-23 10:46:32 +02002826 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002827
2828 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002829 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002830
Johannes Berge932a602009-10-02 13:44:03 -07002831 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002832
Tomas Winklere1623442009-01-27 14:27:56 -08002833 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002834 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002835 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002836
Johannes Berge312c242009-08-07 15:41:51 -07002837 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002838 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2839
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002840
Zhu Yib481de92007-09-25 17:54:57 -07002841 return;
2842
2843 restart:
2844 queue_work(priv->workqueue, &priv->restart);
2845}
2846
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002847static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002848
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002849static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002850{
2851 unsigned long flags;
2852 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002853
Tomas Winklere1623442009-01-27 14:27:56 -08002854 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002855
Zhu Yib481de92007-09-25 17:54:57 -07002856 if (!exit_pending)
2857 set_bit(STATUS_EXIT_PENDING, &priv->status);
2858
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002859 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2860 * to prevent rearm timer */
2861 if (priv->cfg->ops->lib->recover_from_tx_stall)
2862 del_timer_sync(&priv->monitor_recover);
2863
Johannes Bergdcef7322010-08-27 08:55:52 -07002864 iwl_clear_ucode_stations(priv, NULL);
Johannes Berga194e322010-08-27 08:53:46 -07002865 iwl_dealloc_bcast_stations(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002866 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002867
Johannes Berga1174132010-08-23 07:56:59 -07002868 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002869 priv->bt_status = 0;
Wey-Yi Guya4b96cc2010-08-23 07:57:08 -07002870 priv->bt_traffic_load = priv->cfg->bt_init_traffic_load;
Johannes Berga1174132010-08-23 07:56:59 -07002871 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002872 priv->bt_full_concurrent = false;
2873 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002874
Zhu Yib481de92007-09-25 17:54:57 -07002875 /* Unblock any waiting calls */
2876 wake_up_interruptible_all(&priv->wait_command_queue);
2877
Zhu Yib481de92007-09-25 17:54:57 -07002878 /* Wipe out the EXIT_PENDING status bit if we are not actually
2879 * exiting the module */
2880 if (!exit_pending)
2881 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2882
2883 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002884 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002885
2886 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002887 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002888 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002889 spin_unlock_irqrestore(&priv->lock, flags);
2890 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002891
2892 if (priv->mac80211_registered)
2893 ieee80211_stop_queues(priv->hw);
2894
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002895 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002896 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002897 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002898 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2899 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002900 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2901 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002902 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2903 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002904 goto exit;
2905 }
2906
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002907 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002908 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002909 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2910 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002911 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2912 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002913 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002914 STATUS_FW_ERROR |
2915 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2916 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002917
Mohamed Abbasef850d72009-05-22 11:01:50 -07002918 /* device going down, Stop using ICT table */
2919 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002920
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002921 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002922 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002923
Ben Cahill309e7312009-11-06 14:53:03 -08002924 /* Power-down device's busmaster DMA clocks */
2925 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002926 udelay(5);
2927
Ben Cahill309e7312009-11-06 14:53:03 -08002928 /* Make sure (redundant) we've released our request to stay awake */
2929 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2930
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002931 /* Stop the device, and put it in low power state */
2932 priv->cfg->ops->lib->apm_ops.stop(priv);
2933
Zhu Yib481de92007-09-25 17:54:57 -07002934 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002935 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002936
2937 if (priv->ibss_beacon)
2938 dev_kfree_skb(priv->ibss_beacon);
2939 priv->ibss_beacon = NULL;
2940
2941 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002942 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002943}
2944
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002945static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002946{
2947 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002948 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002949 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002950
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002951 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002952}
2953
Mohamed Abbas086ed112009-05-22 11:01:54 -07002954#define HW_READY_TIMEOUT (50)
2955
2956static int iwl_set_hw_ready(struct iwl_priv *priv)
2957{
2958 int ret = 0;
2959
2960 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2961 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2962
2963 /* See if we got it */
2964 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2965 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2966 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2967 HW_READY_TIMEOUT);
2968 if (ret != -ETIMEDOUT)
2969 priv->hw_ready = true;
2970 else
2971 priv->hw_ready = false;
2972
2973 IWL_DEBUG_INFO(priv, "hardware %s\n",
2974 (priv->hw_ready == 1) ? "ready" : "not ready");
2975 return ret;
2976}
2977
2978static int iwl_prepare_card_hw(struct iwl_priv *priv)
2979{
2980 int ret = 0;
2981
Frans Pop91dd6c22010-03-24 14:19:58 -07002982 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07002983
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002984 ret = iwl_set_hw_ready(priv);
2985 if (priv->hw_ready)
2986 return ret;
2987
2988 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002989 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2990 CSR_HW_IF_CONFIG_REG_PREPARE);
2991
2992 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2993 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
2994 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
2995
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002996 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002997 if (ret != -ETIMEDOUT)
2998 iwl_set_hw_ready(priv);
2999
3000 return ret;
3001}
3002
Zhu Yib481de92007-09-25 17:54:57 -07003003#define MAX_HW_RESTARTS 5
3004
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003005static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003006{
Johannes Berga194e322010-08-27 08:53:46 -07003007 struct iwl_rxon_context *ctx;
Tomas Winkler57aab752008-04-14 21:16:03 -07003008 int i;
3009 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003010
3011 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003012 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003013 return -EIO;
3014 }
3015
Reinette Chatree903fbd2008-01-30 22:05:15 -08003016 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003017 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08003018 return -EIO;
3019 }
3020
Johannes Berga194e322010-08-27 08:53:46 -07003021 for_each_context(priv, ctx) {
3022 ret = iwl_alloc_bcast_station(priv, ctx, true);
3023 if (ret) {
3024 iwl_dealloc_bcast_stations(priv);
3025 return ret;
3026 }
3027 }
Johannes Berg2c810cc2010-04-29 00:53:29 -07003028
Mohamed Abbas086ed112009-05-22 11:01:54 -07003029 iwl_prepare_card_hw(priv);
3030
3031 if (!priv->hw_ready) {
3032 IWL_WARN(priv, "Exit HW not ready\n");
3033 return -EIO;
3034 }
3035
Zhu Yie655b9f2008-01-24 02:19:38 -08003036 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08003037 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08003038 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003039 else
Zhu Yie655b9f2008-01-24 02:19:38 -08003040 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003041
Tomas Winklerc1842d62008-08-04 16:00:43 +08003042 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02003043 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
3044
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003045 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02003046 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08003047 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003048 }
3049
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003050 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003051
Johannes Berg13bb9482010-08-23 10:46:33 +02003052 /* must be initialised before iwl_hw_nic_init */
Johannes Berg751ca302010-08-23 10:46:34 +02003053 if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))
3054 priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM;
3055 else
3056 priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM;
Johannes Berg13bb9482010-08-23 10:46:33 +02003057
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003058 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003059 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003060 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07003061 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003062 }
3063
3064 /* 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,
Zhu Yib481de92007-09-25 17:54:57 -07003067 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3068
3069 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003070 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003071 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003072
3073 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003074 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3075 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003076
3077 /* Copy original ucode data image from disk into backup cache.
3078 * This will be used to initialize the on-board processor's
3079 * data SRAM for a clean start when the runtime program first loads. */
3080 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08003081 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003082
Zhu Yib481de92007-09-25 17:54:57 -07003083 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3084
Zhu Yib481de92007-09-25 17:54:57 -07003085 /* load bootstrap state machine,
3086 * load bootstrap program into processor's memory,
3087 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003088 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003089
Tomas Winkler57aab752008-04-14 21:16:03 -07003090 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003091 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
3092 ret);
Zhu Yib481de92007-09-25 17:54:57 -07003093 continue;
3094 }
3095
3096 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003097 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003098
Tomas Winklere1623442009-01-27 14:27:56 -08003099 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003100
3101 return 0;
3102 }
3103
3104 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003105 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08003106 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003107
3108 /* tried to restart and config the device for as long as our
3109 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003110 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003111 return -EIO;
3112}
3113
3114
3115/*****************************************************************************
3116 *
3117 * Workqueue callbacks
3118 *
3119 *****************************************************************************/
3120
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003121static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003122{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003123 struct iwl_priv *priv =
3124 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003125
3126 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3127 return;
3128
3129 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003130 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003131 mutex_unlock(&priv->mutex);
3132}
3133
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003134static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003135{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003136 struct iwl_priv *priv =
3137 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003138
3139 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3140 return;
3141
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003142 /* enable dram interrupt */
3143 iwl_reset_ict(priv);
3144
Zhu Yib481de92007-09-25 17:54:57 -07003145 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003146 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003147 mutex_unlock(&priv->mutex);
3148}
3149
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003150static void iwl_bg_run_time_calib_work(struct work_struct *work)
3151{
3152 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3153 run_time_calib_work);
3154
3155 mutex_lock(&priv->mutex);
3156
3157 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3158 test_bit(STATUS_SCANNING, &priv->status)) {
3159 mutex_unlock(&priv->mutex);
3160 return;
3161 }
3162
3163 if (priv->start_calib) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003164 if (priv->cfg->bt_statistics) {
3165 iwl_chain_noise_calibration(priv,
3166 (void *)&priv->_agn.statistics_bt);
3167 iwl_sensitivity_calibration(priv,
3168 (void *)&priv->_agn.statistics_bt);
3169 } else {
3170 iwl_chain_noise_calibration(priv,
3171 (void *)&priv->_agn.statistics);
3172 iwl_sensitivity_calibration(priv,
3173 (void *)&priv->_agn.statistics);
3174 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003175 }
3176
3177 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003178}
3179
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003180static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003181{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003182 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003183
3184 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3185 return;
3186
Johannes Berg19cc1082009-05-08 13:44:36 -07003187 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Johannes Berg8bd413e2010-08-23 10:46:40 +02003188 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003189 bool bt_sco, bt_full_concurrent;
3190 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003191 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003192 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003193
Johannes Berg19cc1082009-05-08 13:44:36 -07003194 mutex_lock(&priv->mutex);
Johannes Berg8bd413e2010-08-23 10:46:40 +02003195 for_each_context(priv, ctx)
3196 ctx->vif = NULL;
Johannes Berg19cc1082009-05-08 13:44:36 -07003197 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003198
3199 /*
3200 * __iwl_down() will clear the BT status variables,
3201 * which is correct, but when we restart we really
3202 * want to keep them so restore them afterwards.
3203 *
3204 * The restart process will later pick them up and
3205 * re-configure the hw when we reconfigure the BT
3206 * command.
3207 */
3208 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003209 bt_full_concurrent = priv->bt_full_concurrent;
3210 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003211 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003212 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003213
Johannes Berga1174132010-08-23 07:56:59 -07003214 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003215
3216 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003217 priv->bt_full_concurrent = bt_full_concurrent;
3218 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003219 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003220 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003221
Johannes Berg19cc1082009-05-08 13:44:36 -07003222 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003223 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003224 ieee80211_restart_hw(priv->hw);
3225 } else {
3226 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003227
3228 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3229 return;
3230
3231 mutex_lock(&priv->mutex);
3232 __iwl_up(priv);
3233 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003234 }
Zhu Yib481de92007-09-25 17:54:57 -07003235}
3236
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003237static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003238{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003239 struct iwl_priv *priv =
3240 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003241
3242 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3243 return;
3244
3245 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003246 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003247 mutex_unlock(&priv->mutex);
3248}
3249
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003250#define IWL_DELAY_NEXT_SCAN (HZ*2)
3251
Johannes Berg1dda6d22010-04-29 04:43:06 -07003252void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003253{
Johannes Berg246ed352010-08-23 10:46:32 +02003254 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07003255 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003256 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003257
Johannes Berg1dda6d22010-04-29 04:43:06 -07003258 if (!vif || !priv->is_open)
3259 return;
3260
Johannes Berg246ed352010-08-23 10:46:32 +02003261 ctx = iwl_rxon_ctx_from_vif(vif);
3262
Johannes Berg1dda6d22010-04-29 04:43:06 -07003263 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003264 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003265 return;
3266 }
3267
Zhu Yib481de92007-09-25 17:54:57 -07003268 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3269 return;
3270
Tomas Winkler2a421b92008-06-12 09:47:10 +08003271 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003272
Zhu Yib481de92007-09-25 17:54:57 -07003273 conf = ieee80211_get_hw_conf(priv->hw);
3274
Johannes Berg246ed352010-08-23 10:46:32 +02003275 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3276 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003277
Johannes Berg948f5a22010-07-29 07:07:51 -07003278 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003279 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003280 IWL_WARN(priv, "RXON timing - "
Zhu Yib481de92007-09-25 17:54:57 -07003281 "Attempting to continue.\n");
3282
Johannes Berg246ed352010-08-23 10:46:32 +02003283 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003284
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08003285 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03003286
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003287 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003288 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003289
Johannes Berg246ed352010-08-23 10:46:32 +02003290 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003291
Tomas Winklere1623442009-01-27 14:27:56 -08003292 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003293 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003294
Johannes Bergc213d742010-05-06 12:21:40 -07003295 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003296 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003297 else
Johannes Berg246ed352010-08-23 10:46:32 +02003298 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003299
Johannes Berg246ed352010-08-23 10:46:32 +02003300 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003301 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003302 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003303 else
Johannes Berg246ed352010-08-23 10:46:32 +02003304 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003305 }
3306
Johannes Berg246ed352010-08-23 10:46:32 +02003307 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003308
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003309 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg246ed352010-08-23 10:46:32 +02003310 vif->bss_conf.aid, ctx->active.bssid_addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003311
Johannes Berg1dda6d22010-04-29 04:43:06 -07003312 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003313 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07003314 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003315 case NL80211_IFTYPE_ADHOC:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003316 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003317 break;
Zhu Yib481de92007-09-25 17:54:57 -07003318 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003319 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003320 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003321 break;
3322 }
3323
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08003324 /* the chain noise calibration will enabled PM upon completion
3325 * If chain noise has already been run, then we need to enable
3326 * power management here */
3327 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07003328 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003329
3330 /* Enable Rx differential gain and sensitivity calibrations */
3331 iwl_chain_noise_reset(priv);
3332 priv->start_calib = 1;
3333
Reinette Chatre508e32e2008-04-14 21:16:13 -07003334}
3335
Zhu Yib481de92007-09-25 17:54:57 -07003336/*****************************************************************************
3337 *
3338 * mac80211 entry point functions
3339 *
3340 *****************************************************************************/
3341
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003342#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08003343
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003344/*
3345 * Not a mac80211 entry point function, but it fits in with all the
3346 * other mac80211 functions grouped here.
3347 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003348static int iwl_mac_setup_register(struct iwl_priv *priv,
3349 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003350{
3351 int ret;
3352 struct ieee80211_hw *hw = priv->hw;
3353 hw->rate_control_algorithm = "iwl-agn-rs";
3354
3355 /* Tell mac80211 our characteristics */
3356 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003357 IEEE80211_HW_AMPDU_AGGREGATION |
3358 IEEE80211_HW_SPECTRUM_MGMT;
3359
3360 if (!priv->cfg->broken_powersave)
3361 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3362 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3363
Johannes Bergba37a3d2009-12-10 14:37:27 -08003364 if (priv->cfg->sku & IWL_SKU_N)
3365 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3366 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3367
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003368 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003369 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3370
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003371 hw->wiphy->interface_modes =
3372 BIT(NL80211_IFTYPE_STATION) |
3373 BIT(NL80211_IFTYPE_ADHOC);
3374
Reinette Chatref6c8f152010-03-12 11:13:26 -08003375 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003376 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003377
3378 /*
3379 * For now, disable PS by default because it affects
3380 * RX performance significantly.
3381 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003382 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003383
Reinette Chatre1382c712010-02-25 10:02:19 -08003384 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003385 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003386 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003387
3388 /* Default value; 4 EDCA QOS priorities */
3389 hw->queues = 4;
3390
3391 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3392
3393 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3394 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3395 &priv->bands[IEEE80211_BAND_2GHZ];
3396 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3397 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3398 &priv->bands[IEEE80211_BAND_5GHZ];
3399
3400 ret = ieee80211_register_hw(priv->hw);
3401 if (ret) {
3402 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3403 return ret;
3404 }
3405 priv->mac80211_registered = 1;
3406
3407 return 0;
3408}
3409
3410
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003411static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003412{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003413 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003414 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003415
Tomas Winklere1623442009-01-27 14:27:56 -08003416 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003417
3418 /* we should be verifying the device is ready to be opened */
3419 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003420 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003421 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003422
Zhu Yie655b9f2008-01-24 02:19:38 -08003423 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003424 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003425
Tomas Winklerc1842d62008-08-04 16:00:43 +08003426 if (iwl_is_rfkill(priv))
3427 goto out;
3428
Tomas Winklere1623442009-01-27 14:27:56 -08003429 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003430
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003431 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08003432 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003433 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3434 test_bit(STATUS_READY, &priv->status),
3435 UCODE_READY_TIMEOUT);
3436 if (!ret) {
3437 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003438 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003439 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003440 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003441 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003442 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003443
Johannes Berge932a602009-10-02 13:44:03 -07003444 iwl_led_start(priv);
3445
Tomas Winklerc1842d62008-08-04 16:00:43 +08003446out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003447 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003448 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003449 return 0;
3450}
3451
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003452static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003453{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003454 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003455
Tomas Winklere1623442009-01-27 14:27:56 -08003456 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003457
Johannes Berg19cc1082009-05-08 13:44:36 -07003458 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003459 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003460
Zhu Yib481de92007-09-25 17:54:57 -07003461 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003462
Wey-Yi Guy5bddf542009-08-21 13:34:25 -07003463 if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003464 /* stop mac, cancel any scan request and clear
3465 * RXON_FILTER_ASSOC_MSK BIT
3466 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003467 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003468 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003469 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003470 }
3471
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003472 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003473
3474 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003475
3476 /* enable interrupts again in order to receive rfkill changes */
3477 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3478 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003479
Tomas Winklere1623442009-01-27 14:27:56 -08003480 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003481}
3482
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003483static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003484{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003485 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003486
Tomas Winklere1623442009-01-27 14:27:56 -08003487 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003488
Tomas Winklere1623442009-01-27 14:27:56 -08003489 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003490 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003491
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003492 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003493 dev_kfree_skb_any(skb);
3494
Tomas Winklere1623442009-01-27 14:27:56 -08003495 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003496 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003497}
3498
Johannes Berg1dda6d22010-04-29 04:43:06 -07003499void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003500{
Johannes Berg246ed352010-08-23 10:46:32 +02003501 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003502 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003503
Johannes Berg76d04812010-08-23 10:46:47 +02003504 lockdep_assert_held(&priv->mutex);
3505
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003506 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003507 return;
3508
3509 /* The following should be done only at AP bring up */
Johannes Berg246ed352010-08-23 10:46:32 +02003510 if (!iwl_is_associated_ctx(ctx)) {
Zhu Yib481de92007-09-25 17:54:57 -07003511
3512 /* RXON - unassoc (to set timing command) */
Johannes Berg246ed352010-08-23 10:46:32 +02003513 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3514 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003515
3516 /* RXON Timing */
Johannes Berg948f5a22010-07-29 07:07:51 -07003517 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003518 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003519 IWL_WARN(priv, "RXON timing failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003520 "Attempting to continue.\n");
3521
Daniel C Halperinf513dff2009-11-13 11:56:34 -08003522 /* AP has all antennas */
3523 priv->chain_noise_data.active_chains =
3524 priv->hw_params.valid_rx_ant;
3525 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003526 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003527 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003528
Johannes Berg246ed352010-08-23 10:46:32 +02003529 ctx->staging.assoc_id = 0;
Johannes Berg1dda6d22010-04-29 04:43:06 -07003530
Johannes Bergc213d742010-05-06 12:21:40 -07003531 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003532 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003533 RXON_FLG_SHORT_PREAMBLE_MSK;
3534 else
Johannes Berg246ed352010-08-23 10:46:32 +02003535 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003536 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3537
Johannes Berg246ed352010-08-23 10:46:32 +02003538 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003539 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003540 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003541 RXON_FLG_SHORT_SLOT_MSK;
3542 else
Johannes Berg246ed352010-08-23 10:46:32 +02003543 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003544 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003545 }
3546 /* restore RXON assoc */
Johannes Berg246ed352010-08-23 10:46:32 +02003547 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
3548 iwlcore_commit_rxon(priv, ctx);
Zhu Yie1493de2007-09-27 11:27:32 +08003549 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003550 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003551
3552 /* FIXME - we need to add code here to detect a totally new
3553 * configuration, reset the AP, unassoc, rxon timing, assoc,
3554 * clear sta table, add BCAST sta... */
3555}
3556
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003557static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003558 struct ieee80211_vif *vif,
3559 struct ieee80211_key_conf *keyconf,
3560 struct ieee80211_sta *sta,
3561 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003562{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003563
Tomas Winkler9f586712008-11-12 13:14:05 -08003564 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003565 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3566
Tomas Winklere1623442009-01-27 14:27:56 -08003567 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003568
Johannes Berga194e322010-08-27 08:53:46 -07003569 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003570 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003571
Tomas Winklere1623442009-01-27 14:27:56 -08003572 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003573}
3574
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003575static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003576 struct ieee80211_vif *vif,
3577 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003578 struct ieee80211_key_conf *key)
3579{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003580 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003581 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergc10afb62010-08-23 10:46:43 +02003582 struct iwl_rxon_context *ctx = vif_priv->ctx;
Winkler, Tomas42986792009-01-19 15:30:22 -08003583 int ret;
3584 u8 sta_id;
3585 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003586
Tomas Winklere1623442009-01-27 14:27:56 -08003587 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003588
Tomas Winkler90e8e422009-06-19 13:52:42 -07003589 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003590 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003591 return -EOPNOTSUPP;
3592 }
Zhu Yib481de92007-09-25 17:54:57 -07003593
Johannes Berga194e322010-08-27 08:53:46 -07003594 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
Johannes Berg0af8bca2010-04-30 14:08:00 -07003595 if (sta_id == IWL_INVALID_STATION)
3596 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003597
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003598 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003599 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003600
Johannes Berga90178fa2010-03-30 02:44:16 -07003601 /*
3602 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003603 * so far, we are in legacy wep mode (group key only), otherwise we are
3604 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003605 * In legacy wep mode, we use another host command to the uCode.
3606 */
Johannes Berg97359d12010-08-10 09:46:38 +02003607 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3608 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003609 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003610 if (cmd == SET_KEY)
Johannes Bergc10afb62010-08-23 10:46:43 +02003611 is_default_wep_key = !ctx->key_mapping_keys;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003612 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003613 is_default_wep_key =
3614 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003615 }
mabbas052c4b92007-10-25 17:15:43 +08003616
Zhu Yib481de92007-09-25 17:54:57 -07003617 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003618 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003619 if (is_default_wep_key)
Johannes Berg2995baf2010-08-23 10:46:42 +02003620 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003621 else
Johannes Berga194e322010-08-27 08:53:46 -07003622 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3623 key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003624
Tomas Winklere1623442009-01-27 14:27:56 -08003625 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003626 break;
3627 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003628 if (is_default_wep_key)
Johannes Bergc10afb62010-08-23 10:46:43 +02003629 ret = iwl_remove_default_wep_key(priv, ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003630 else
Johannes Bergc10afb62010-08-23 10:46:43 +02003631 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003632
Tomas Winklere1623442009-01-27 14:27:56 -08003633 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003634 break;
3635 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003636 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003637 }
3638
Johannes Berg72e15d72010-02-19 11:42:32 -08003639 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003640 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003641
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003642 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003643}
3644
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003645static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01003646 struct ieee80211_vif *vif,
Johannes Berg832f47e2010-04-29 04:43:07 -07003647 enum ieee80211_ampdu_mlme_action action,
3648 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003649{
3650 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003651 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003652
Tomas Winklere1623442009-01-27 14:27:56 -08003653 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003654 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003655
3656 if (!(priv->cfg->sku & IWL_SKU_N))
3657 return -EACCES;
3658
Johannes Berg4620fef2010-06-16 03:30:27 -07003659 mutex_lock(&priv->mutex);
3660
Tomas Winklerd783b062008-07-18 13:53:02 +08003661 switch (action) {
3662 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003663 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003664 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3665 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003666 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003667 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003668 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003669 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003670 ret = 0;
3671 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003672 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003673 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003674 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003675 if (ret == 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 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003680 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003681 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003682 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003683 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003684 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3685 priv->_agn.agg_tids_count--;
3686 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3687 priv->_agn.agg_tids_count);
3688 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003689 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003690 ret = 0;
Johannes Berg94597ab2010-08-09 10:57:02 -07003691 if (priv->cfg->use_rts_for_aggregation) {
3692 struct iwl_station_priv *sta_priv =
3693 (void *) sta->drv_priv;
3694 /*
3695 * switch off RTS/CTS if it was previously enabled
3696 */
3697
3698 sta_priv->lq_sta.lq.general_params.flags &=
3699 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003700 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3701 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Johannes Berg94597ab2010-08-09 10:57:02 -07003702 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003703 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003704 case IEEE80211_AMPDU_TX_OPERATIONAL:
Johannes Berg94597ab2010-08-09 10:57:02 -07003705 if (priv->cfg->use_rts_for_aggregation) {
3706 struct iwl_station_priv *sta_priv =
3707 (void *) sta->drv_priv;
3708
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003709 /*
3710 * switch to RTS/CTS if it is the prefer protection
3711 * method for HT traffic
3712 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003713
3714 sta_priv->lq_sta.lq.general_params.flags |=
3715 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003716 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3717 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003718 }
3719 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003720 break;
3721 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003722 mutex_unlock(&priv->mutex);
3723
3724 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003725}
Tomas Winkler9f586712008-11-12 13:14:05 -08003726
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003727static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
3728 struct ieee80211_vif *vif,
3729 enum sta_notify_cmd cmd,
3730 struct ieee80211_sta *sta)
3731{
3732 struct iwl_priv *priv = hw->priv;
3733 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3734 int sta_id;
3735
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003736 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003737 case STA_NOTIFY_SLEEP:
3738 WARN_ON(!sta_priv->client);
3739 sta_priv->asleep = true;
3740 if (atomic_read(&sta_priv->pending_frames) > 0)
3741 ieee80211_sta_block_awake(hw, sta, true);
3742 break;
3743 case STA_NOTIFY_AWAKE:
3744 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003745 if (!sta_priv->asleep)
3746 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003747 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003748 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003749 if (sta_id != IWL_INVALID_STATION)
3750 iwl_sta_modify_ps_wake(priv, sta_id);
3751 break;
3752 default:
3753 break;
3754 }
3755}
3756
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003757static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3758 struct ieee80211_vif *vif,
3759 struct ieee80211_sta *sta)
3760{
3761 struct iwl_priv *priv = hw->priv;
3762 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Berga194e322010-08-27 08:53:46 -07003763 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003764 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003765 int ret;
3766 u8 sta_id;
3767
3768 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3769 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003770 mutex_lock(&priv->mutex);
3771 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3772 sta->addr);
3773 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003774
3775 atomic_set(&sta_priv->pending_frames, 0);
3776 if (vif->type == NL80211_IFTYPE_AP)
3777 sta_priv->client = true;
3778
Johannes Berga194e322010-08-27 08:53:46 -07003779 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
Johannes Berg238d7812010-08-23 10:46:45 +02003780 is_ap, sta, &sta_id);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003781 if (ret) {
3782 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3783 sta->addr, ret);
3784 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003785 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003786 return ret;
3787 }
3788
Johannes Bergfd1af152010-04-30 11:30:43 -07003789 sta_priv->common.sta_id = sta_id;
3790
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003791 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003792 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003793 sta->addr);
3794 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003795 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003796
Johannes Bergfd1af152010-04-30 11:30:43 -07003797 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003798}
3799
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003800static void iwl_mac_channel_switch(struct ieee80211_hw *hw,
3801 struct ieee80211_channel_switch *ch_switch)
3802{
3803 struct iwl_priv *priv = hw->priv;
3804 const struct iwl_channel_info *ch_info;
3805 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003806 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003807 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg246ed352010-08-23 10:46:32 +02003808 /*
3809 * MULTI-FIXME
3810 * When we add support for multiple interfaces, we need to
3811 * revisit this. The channel switch command in the device
3812 * only affects the BSS context, but what does that really
3813 * mean? And what if we get a CSA on the second interface?
3814 * This needs a lot of work.
3815 */
3816 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003817 u16 ch;
3818 unsigned long flags = 0;
3819
3820 IWL_DEBUG_MAC80211(priv, "enter\n");
3821
3822 if (iwl_is_rfkill(priv))
3823 goto out_exit;
3824
3825 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3826 test_bit(STATUS_SCANNING, &priv->status))
3827 goto out_exit;
3828
Johannes Berg246ed352010-08-23 10:46:32 +02003829 if (!iwl_is_associated_ctx(ctx))
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003830 goto out_exit;
3831
3832 /* channel switch in progress */
3833 if (priv->switch_rxon.switch_in_progress == true)
3834 goto out_exit;
3835
3836 mutex_lock(&priv->mutex);
3837 if (priv->cfg->ops->lib->set_channel_switch) {
3838
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003839 ch = channel->hw_value;
Johannes Berg246ed352010-08-23 10:46:32 +02003840 if (le16_to_cpu(ctx->active.channel) != ch) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003841 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003842 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003843 ch);
3844 if (!is_channel_valid(ch_info)) {
3845 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3846 goto out;
3847 }
3848 spin_lock_irqsave(&priv->lock, flags);
3849
3850 priv->current_ht_config.smps = conf->smps_mode;
3851
3852 /* Configure HT40 channels */
Johannes Berg7e6a5882010-08-23 10:46:46 +02003853 ctx->ht.enabled = conf_is_ht(conf);
3854 if (ctx->ht.enabled) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003855 if (conf_is_ht40_minus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003856 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003857 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003858 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003859 } else if (conf_is_ht40_plus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003860 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003861 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003862 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003863 } else {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003864 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003865 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003866 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003867 }
3868 } else
Johannes Berg7e6a5882010-08-23 10:46:46 +02003869 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003870
Johannes Berg246ed352010-08-23 10:46:32 +02003871 if ((le16_to_cpu(ctx->staging.channel) != ch))
3872 ctx->staging.flags = 0;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003873
Johannes Berg246ed352010-08-23 10:46:32 +02003874 iwl_set_rxon_channel(priv, channel, ctx);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003875 iwl_set_rxon_ht(priv, ht_conf);
Johannes Berg246ed352010-08-23 10:46:32 +02003876 iwl_set_flags_for_band(priv, ctx, channel->band,
Johannes Berg8bd413e2010-08-23 10:46:40 +02003877 ctx->vif);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003878 spin_unlock_irqrestore(&priv->lock, flags);
3879
3880 iwl_set_rate(priv);
3881 /*
3882 * at this point, staging_rxon has the
3883 * configuration for channel switch
3884 */
3885 if (priv->cfg->ops->lib->set_channel_switch(priv,
3886 ch_switch))
3887 priv->switch_rxon.switch_in_progress = false;
3888 }
3889 }
3890out:
3891 mutex_unlock(&priv->mutex);
3892out_exit:
3893 if (!priv->switch_rxon.switch_in_progress)
Johannes Berg8bd413e2010-08-23 10:46:40 +02003894 ieee80211_chswitch_done(ctx->vif, false);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003895 IWL_DEBUG_MAC80211(priv, "leave\n");
3896}
3897
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003898static void iwlagn_configure_filter(struct ieee80211_hw *hw,
3899 unsigned int changed_flags,
3900 unsigned int *total_flags,
3901 u64 multicast)
3902{
3903 struct iwl_priv *priv = hw->priv;
3904 __le32 filter_or = 0, filter_nand = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02003905 struct iwl_rxon_context *ctx;
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003906
3907#define CHK(test, flag) do { \
3908 if (*total_flags & (test)) \
3909 filter_or |= (flag); \
3910 else \
3911 filter_nand |= (flag); \
3912 } while (0)
3913
3914 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3915 changed_flags, *total_flags);
3916
3917 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3918 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3919 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3920
3921#undef CHK
3922
3923 mutex_lock(&priv->mutex);
3924
Johannes Berg246ed352010-08-23 10:46:32 +02003925 for_each_context(priv, ctx) {
3926 ctx->staging.filter_flags &= ~filter_nand;
3927 ctx->staging.filter_flags |= filter_or;
3928 iwlcore_commit_rxon(priv, ctx);
3929 }
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003930
3931 mutex_unlock(&priv->mutex);
3932
3933 /*
3934 * Receiving all multicast frames is always enabled by the
3935 * default flags setup in iwl_connection_init_rx_config()
3936 * since we currently do not support programming multicast
3937 * filters into the device.
3938 */
3939 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3940 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3941}
3942
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07003943static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop)
3944{
3945 struct iwl_priv *priv = hw->priv;
3946
3947 mutex_lock(&priv->mutex);
3948 IWL_DEBUG_MAC80211(priv, "enter\n");
3949
3950 /* do not support "flush" */
3951 if (!priv->cfg->ops->lib->txfifo_flush)
3952 goto done;
3953
3954 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3955 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
3956 goto done;
3957 }
3958 if (iwl_is_rfkill(priv)) {
3959 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
3960 goto done;
3961 }
3962
3963 /*
3964 * mac80211 will not push any more frames for transmit
3965 * until the flush is completed
3966 */
3967 if (drop) {
3968 IWL_DEBUG_MAC80211(priv, "send flush command\n");
3969 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
3970 IWL_ERR(priv, "flush request fail\n");
3971 goto done;
3972 }
3973 }
3974 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
3975 iwlagn_wait_tx_queue_empty(priv);
3976done:
3977 mutex_unlock(&priv->mutex);
3978 IWL_DEBUG_MAC80211(priv, "leave\n");
3979}
3980
Zhu Yib481de92007-09-25 17:54:57 -07003981/*****************************************************************************
3982 *
Zhu Yib481de92007-09-25 17:54:57 -07003983 * driver setup and teardown
3984 *
3985 *****************************************************************************/
3986
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003987static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003988{
Reinette Chatred21050c2009-02-13 11:51:18 -08003989 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003990
3991 init_waitqueue_head(&priv->wait_command_queue);
3992
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003993 INIT_WORK(&priv->restart, iwl_bg_restart);
3994 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003995 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003996 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07003997 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003998 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003999 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08004000 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
4001 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08004002
Tomas Winkler2a421b92008-06-12 09:47:10 +08004003 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004004
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004005 if (priv->cfg->ops->lib->setup_deferred_work)
4006 priv->cfg->ops->lib->setup_deferred_work(priv);
4007
4008 init_timer(&priv->statistics_periodic);
4009 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004010 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07004011
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004012 init_timer(&priv->ucode_trace);
4013 priv->ucode_trace.data = (unsigned long)priv;
4014 priv->ucode_trace.function = iwl_bg_ucode_trace;
4015
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08004016 if (priv->cfg->ops->lib->recover_from_tx_stall) {
4017 init_timer(&priv->monitor_recover);
4018 priv->monitor_recover.data = (unsigned long)priv;
4019 priv->monitor_recover.function =
4020 priv->cfg->ops->lib->recover_from_tx_stall;
4021 }
4022
Mohamed Abbasef850d72009-05-22 11:01:50 -07004023 if (!priv->cfg->use_isr_legacy)
4024 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4025 iwl_irq_tasklet, (unsigned long)priv);
4026 else
4027 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4028 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004029}
4030
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004031static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004032{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004033 if (priv->cfg->ops->lib->cancel_deferred_work)
4034 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004035
Joonwoo Park3ae6a052007-11-29 10:43:16 +09004036 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004037 cancel_delayed_work(&priv->scan_check);
Johannes Berg88be0262010-04-07 00:21:36 -07004038 cancel_work_sync(&priv->start_internal_scan);
Zhu Yib481de92007-09-25 17:54:57 -07004039 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07004040 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07004041 cancel_work_sync(&priv->beacon_update);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004042 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004043 cancel_work_sync(&priv->bt_runtime_config);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004044 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004045 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07004046}
4047
Reinette Chatre89f186a2009-10-30 14:36:11 -07004048static void iwl_init_hw_rates(struct iwl_priv *priv,
4049 struct ieee80211_rate *rates)
4050{
4051 int i;
4052
4053 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
4054 rates[i].bitrate = iwl_rates[i].ieee * 5;
4055 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4056 rates[i].hw_value_short = i;
4057 rates[i].flags = 0;
4058 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
4059 /*
4060 * If CCK != 1M then set short preamble rate flag.
4061 */
4062 rates[i].flags |=
4063 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
4064 0 : IEEE80211_RATE_SHORT_PREAMBLE;
4065 }
4066 }
4067}
4068
4069static int iwl_init_drv(struct iwl_priv *priv)
4070{
4071 int ret;
4072
4073 priv->ibss_beacon = NULL;
4074
Reinette Chatre89f186a2009-10-30 14:36:11 -07004075 spin_lock_init(&priv->sta_lock);
4076 spin_lock_init(&priv->hcmd_lock);
4077
4078 INIT_LIST_HEAD(&priv->free_frames);
4079
4080 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08004081 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004082
Reinette Chatre89f186a2009-10-30 14:36:11 -07004083 priv->ieee_channels = NULL;
4084 priv->ieee_rates = NULL;
4085 priv->band = IEEE80211_BAND_2GHZ;
4086
4087 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08004088 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08004089 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08004090 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004091
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08004092 /* initialize force reset */
4093 priv->force_reset[IWL_RF_RESET].reset_duration =
4094 IWL_DELAY_NEXT_FORCE_RF_RESET;
4095 priv->force_reset[IWL_FW_RESET].reset_duration =
4096 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004097
4098 /* Choose which receivers/antennas to use */
4099 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02004100 priv->cfg->ops->hcmd->set_rxon_chain(priv,
4101 &priv->contexts[IWL_RXON_CTX_BSS]);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004102
4103 iwl_init_scan_params(priv);
4104
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004105 /* init bt coex */
4106 if (priv->cfg->advanced_bt_coexist) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07004107 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
4108 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
4109 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004110 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
4111 priv->bt_duration = BT_DURATION_LIMIT_DEF;
4112 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
4113 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
4114 }
4115
Reinette Chatre89f186a2009-10-30 14:36:11 -07004116 /* Set the tx_power_user_lmt to the lowest power level
4117 * this value will get overwritten by channel max power avg
4118 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07004119 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004120
4121 ret = iwl_init_channel_map(priv);
4122 if (ret) {
4123 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4124 goto err;
4125 }
4126
4127 ret = iwlcore_init_geos(priv);
4128 if (ret) {
4129 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4130 goto err_free_channel_map;
4131 }
4132 iwl_init_hw_rates(priv, priv->ieee_rates);
4133
4134 return 0;
4135
4136err_free_channel_map:
4137 iwl_free_channel_map(priv);
4138err:
4139 return ret;
4140}
4141
4142static void iwl_uninit_drv(struct iwl_priv *priv)
4143{
4144 iwl_calib_free_results(priv);
4145 iwlcore_free_geos(priv);
4146 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004147 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004148}
4149
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004150static struct ieee80211_ops iwl_hw_ops = {
4151 .tx = iwl_mac_tx,
4152 .start = iwl_mac_start,
4153 .stop = iwl_mac_stop,
4154 .add_interface = iwl_mac_add_interface,
4155 .remove_interface = iwl_mac_remove_interface,
4156 .config = iwl_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02004157 .configure_filter = iwlagn_configure_filter,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004158 .set_key = iwl_mac_set_key,
4159 .update_tkip_key = iwl_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004160 .conf_tx = iwl_mac_conf_tx,
4161 .reset_tsf = iwl_mac_reset_tsf,
4162 .bss_info_changed = iwl_bss_info_changed,
4163 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08004164 .hw_scan = iwl_mac_hw_scan,
4165 .sta_notify = iwl_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08004166 .sta_add = iwlagn_mac_sta_add,
4167 .sta_remove = iwl_mac_sta_remove,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07004168 .channel_switch = iwl_mac_channel_switch,
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004169 .flush = iwl_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07004170 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07004171};
4172
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004173static void iwl_hw_detect(struct iwl_priv *priv)
4174{
4175 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
4176 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
4177 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07004178 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004179}
4180
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07004181static int iwl_set_hw_params(struct iwl_priv *priv)
4182{
4183 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
4184 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
4185 if (priv->cfg->mod_params->amsdu_size_8K)
4186 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
4187 else
4188 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
4189
4190 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
4191
4192 if (priv->cfg->mod_params->disable_11n)
4193 priv->cfg->sku &= ~IWL_SKU_N;
4194
4195 /* Device-specific setup */
4196 return priv->cfg->ops->lib->set_hw_params(priv);
4197}
4198
Johannes Berge72f3682010-08-23 10:46:51 +02004199static const u8 iwlagn_bss_ac_to_fifo[] = {
4200 IWL_TX_FIFO_VO,
4201 IWL_TX_FIFO_VI,
4202 IWL_TX_FIFO_BE,
4203 IWL_TX_FIFO_BK,
4204};
4205
4206static const u8 iwlagn_bss_ac_to_queue[] = {
4207 0, 1, 2, 3,
4208};
4209
4210static const u8 iwlagn_pan_ac_to_fifo[] = {
4211 IWL_TX_FIFO_VO_IPAN,
4212 IWL_TX_FIFO_VI_IPAN,
4213 IWL_TX_FIFO_BE_IPAN,
4214 IWL_TX_FIFO_BK_IPAN,
4215};
4216
4217static const u8 iwlagn_pan_ac_to_queue[] = {
4218 7, 6, 5, 4,
4219};
4220
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004221static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004222{
Johannes Berg246ed352010-08-23 10:46:32 +02004223 int err = 0, i;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004224 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004225 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004226 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004227 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004228 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07004229
Assaf Krauss316c30d2008-03-14 10:38:46 -07004230 /************************
4231 * 1. Allocating HW data
4232 ************************/
4233
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004234 /* Disabling hardware scan means that mac80211 will perform scans
4235 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004236 if (cfg->mod_params->disable_hw_scan) {
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004237 if (iwl_debug_level & IWL_DL_INFO)
Ester Kummerbf403db2008-05-05 10:22:40 +08004238 dev_printk(KERN_DEBUG, &(pdev->dev),
4239 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004240 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004241 }
4242
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004243 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004244 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004245 err = -ENOMEM;
4246 goto out;
4247 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004248 priv = hw->priv;
4249 /* At this point both hw and priv are allocated. */
4250
Johannes Berg246ed352010-08-23 10:46:32 +02004251 /*
4252 * The default context is always valid,
4253 * more may be discovered when firmware
4254 * is loaded.
4255 */
4256 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
4257
4258 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
4259 priv->contexts[i].ctxid = i;
4260
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004261 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
4262 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
4263 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +02004264 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
Johannes Berg2995baf2010-08-23 10:46:42 +02004265 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
Johannes Bergc10afb62010-08-23 10:46:43 +02004266 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
Johannes Berge72f3682010-08-23 10:46:51 +02004267 priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo;
4268 priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004269
4270 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4271 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4272 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4273 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4274 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4275 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4276 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4277 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
Johannes Berge72f3682010-08-23 10:46:51 +02004278 priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo;
4279 priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue;
4280 priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004281
4282 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004283
Zhu Yib481de92007-09-25 17:54:57 -07004284 SET_IEEE80211_DEV(hw, &pdev->dev);
4285
Tomas Winklere1623442009-01-27 14:27:56 -08004286 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004287 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004288 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004289 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004290
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004291 /* is antenna coupling more than 35dB ? */
4292 priv->bt_ant_couple_ok =
4293 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4294 true : false;
4295
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004296 /* enable/disable bt channel announcement */
4297 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4298
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004299 if (iwl_alloc_traffic_mem(priv))
4300 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004301
Assaf Krauss316c30d2008-03-14 10:38:46 -07004302 /**************************
4303 * 2. Initializing PCI bus
4304 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004305 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4306 PCIE_LINK_STATE_CLKPM);
4307
Assaf Krauss316c30d2008-03-14 10:38:46 -07004308 if (pci_enable_device(pdev)) {
4309 err = -ENODEV;
4310 goto out_ieee80211_free_hw;
4311 }
4312
4313 pci_set_master(pdev);
4314
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004315 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004316 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004317 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004318 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004319 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004320 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004321 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004322 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004323 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004324 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004325 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004326 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004327 }
4328
4329 err = pci_request_regions(pdev, DRV_NAME);
4330 if (err)
4331 goto out_pci_disable_device;
4332
4333 pci_set_drvdata(pdev, priv);
4334
Assaf Krauss316c30d2008-03-14 10:38:46 -07004335
4336 /***********************
4337 * 3. Read REV register
4338 ***********************/
4339 priv->hw_base = pci_iomap(pdev, 0, 0);
4340 if (!priv->hw_base) {
4341 err = -ENODEV;
4342 goto out_pci_release_regions;
4343 }
4344
Tomas Winklere1623442009-01-27 14:27:56 -08004345 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004346 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004347 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004348
Reinette Chatre731a29b2009-12-14 14:12:11 -08004349 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004350 * we should init now
4351 */
4352 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004353 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004354
4355 /*
4356 * stop and reset the on-board processor just in case it is in a
4357 * strange state ... like being left stranded by a primary kernel
4358 * and this is now the kdump kernel trying to start up
4359 */
4360 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4361
Tomas Winklerb661c812008-04-23 17:14:54 -07004362 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004363 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004364 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004365
Tomas Winklere7b63582008-09-03 11:26:49 +08004366 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4367 * PCI Tx retries from interfering with C3 CPU state */
4368 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4369
Mohamed Abbas086ed112009-05-22 11:01:54 -07004370 iwl_prepare_card_hw(priv);
4371 if (!priv->hw_ready) {
4372 IWL_WARN(priv, "Failed, HW not ready\n");
4373 goto out_iounmap;
4374 }
4375
Assaf Krauss316c30d2008-03-14 10:38:46 -07004376 /*****************
4377 * 4. Read EEPROM
4378 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004379 /* Read the EEPROM */
4380 err = iwl_eeprom_init(priv);
4381 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004382 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004383 goto out_iounmap;
4384 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004385 err = iwl_eeprom_check_version(priv);
4386 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004387 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004388
Ron Rindjunsky02883012008-05-15 13:53:53 +08004389 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004390 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4391 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4392 priv->hw->wiphy->addresses = priv->addresses;
4393 priv->hw->wiphy->n_addresses = 1;
4394 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4395 if (num_mac > 1) {
4396 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4397 ETH_ALEN);
4398 priv->addresses[1].addr[5]++;
4399 priv->hw->wiphy->n_addresses++;
4400 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004401
4402 /************************
4403 * 5. Setup HW constants
4404 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08004405 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004406 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004407 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004408 }
4409
4410 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004411 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004412 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004413
Tomas Winkler6ba87952008-05-15 13:54:17 +08004414 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004415 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004416 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004417 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004418
Assaf Krauss316c30d2008-03-14 10:38:46 -07004419 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004420 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004421 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004422 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004423 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004424 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004425
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004426 pci_enable_msi(priv->pci_dev);
4427
Mohamed Abbasef850d72009-05-22 11:01:50 -07004428 iwl_alloc_isr_ict(priv);
4429 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4430 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004431 if (err) {
4432 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4433 goto out_disable_msi;
4434 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004435
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004436 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004437 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004438
Johannes Berg158bea02010-01-22 14:22:53 -08004439 /*********************************************
4440 * 8. Enable interrupts and read RFKILL state
4441 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004442
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004443 /* enable interrupts if needed: hw bug w/a */
4444 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4445 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4446 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4447 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4448 }
4449
4450 iwl_enable_interrupts(priv);
4451
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004452 /* If platform's RF_KILL switch is NOT set to KILL */
4453 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4454 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4455 else
4456 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004457
Johannes Berga60e77e2009-06-04 18:26:06 +02004458 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4459 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004460
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004461 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004462 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004463
Reinette Chatrea15707d2010-05-10 15:08:11 -07004464 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004465
Johannes Bergb08dfd02010-01-29 11:54:56 -08004466 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004467 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004468 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004469
Zhu Yib481de92007-09-25 17:54:57 -07004470 return 0;
4471
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004472 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004473 destroy_workqueue(priv->workqueue);
4474 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004475 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004476 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004477 out_disable_msi:
4478 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004479 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004480 out_free_eeprom:
4481 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004482 out_iounmap:
4483 pci_iounmap(pdev, priv->hw_base);
4484 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004485 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004486 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004487 out_pci_disable_device:
4488 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004489 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004490 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004491 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004492 out:
4493 return err;
4494}
4495
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004496static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004497{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004498 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004499 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004500
4501 if (!priv)
4502 return;
4503
Reinette Chatrea15707d2010-05-10 15:08:11 -07004504 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004505
Tomas Winklere1623442009-01-27 14:27:56 -08004506 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004507
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004508 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004509 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004510
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004511 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4512 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004513 * we need to set STATUS_EXIT_PENDING bit.
4514 */
4515 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004516 if (priv->mac80211_registered) {
4517 ieee80211_unregister_hw(priv->hw);
4518 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004519 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004520 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004521 }
4522
Ben Cahillc166b252009-10-23 13:42:35 -07004523 /*
4524 * Make sure device is reset to low power before unloading driver.
4525 * This may be redundant with iwl_down(), but there are paths to
4526 * run iwl_down() without calling apm_ops.stop(), and there are
4527 * paths to avoid running iwl_down() at all before leaving driver.
4528 * This (inexpensive) call *makes sure* device is reset.
4529 */
4530 priv->cfg->ops->lib->apm_ops.stop(priv);
4531
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004532 iwl_tt_exit(priv);
4533
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004534 /* make sure we flush any pending irq or
4535 * tasklet for the driver
4536 */
4537 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004538 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004539 spin_unlock_irqrestore(&priv->lock, flags);
4540
4541 iwl_synchronize_irq(priv);
4542
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004543 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004544
4545 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004546 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004547 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004548
Tomas Winkler073d3f52008-04-21 15:41:52 -07004549 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004550
Zhu Yib481de92007-09-25 17:54:57 -07004551
Mohamed Abbas948c1712007-10-25 17:15:45 +08004552 /*netif_stop_queue(dev); */
4553 flush_workqueue(priv->workqueue);
4554
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004555 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004556 * priv->workqueue... so we can't take down the workqueue
4557 * until now... */
4558 destroy_workqueue(priv->workqueue);
4559 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004560 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004561
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004562 free_irq(priv->pci_dev->irq, priv);
4563 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004564 pci_iounmap(pdev, priv->hw_base);
4565 pci_release_regions(pdev);
4566 pci_disable_device(pdev);
4567 pci_set_drvdata(pdev, NULL);
4568
Tomas Winkler6ba87952008-05-15 13:54:17 +08004569 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004570
Mohamed Abbasef850d72009-05-22 11:01:50 -07004571 iwl_free_isr_ict(priv);
4572
Zhu Yib481de92007-09-25 17:54:57 -07004573 if (priv->ibss_beacon)
4574 dev_kfree_skb(priv->ibss_beacon);
4575
4576 ieee80211_free_hw(priv->hw);
4577}
4578
Zhu Yib481de92007-09-25 17:54:57 -07004579
4580/*****************************************************************************
4581 *
4582 * driver and module entry point
4583 *
4584 *****************************************************************************/
4585
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004586/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004587static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004588#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004589 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4590 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004591#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004592#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004593/* 5100 Series WiFi */
4594 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4595 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4596 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4597 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4598 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4599 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4600 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4601 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4602 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4603 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4604 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4605 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4606 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4607 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4608 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4609 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4610 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4611 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4612 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4613 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4614 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4615 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4616 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4617 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4618
4619/* 5300 Series WiFi */
4620 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4621 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4622 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4623 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4624 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4625 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4626 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4627 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4628 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4629 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4630 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4631 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4632
4633/* 5350 Series WiFi/WiMax */
4634 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4635 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4636 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4637
4638/* 5150 Series Wifi/WiMax */
4639 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4640 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4641 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4642 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4643 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4644 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4645
4646 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4647 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4648 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4649 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004650
4651/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004652 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4653 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4654 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4655 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4656 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4657 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4658 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4659 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4660 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4661 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004662
Shanyu Zhao95b13012010-04-21 11:46:33 -07004663/* 6x00 Series Gen2a */
4664 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4665 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4666 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004667 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4668 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4669 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4670 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004671 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4672 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4673 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4674 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4675 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4676 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4677 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004678
4679/* 6x00 Series Gen2b */
4680 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4681 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4682 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4683 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4684 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4685 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4686 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4687 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4688 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4689 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4690 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004691 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4692 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4693 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4694 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4695 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4696 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4697 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4698 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4699 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4700 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4701 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4702 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4703 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4704 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4705 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4706 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4707 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004708
4709/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004710 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4711 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4712 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4713 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004714 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4715 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4716
Shanyu Zhao03264332010-06-29 17:27:27 -07004717/* 6x50 WiFi/WiMax Series Gen2 */
4718 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4719 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4720 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4721 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4722 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4723 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4724
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004725/* 1000 Series WiFi */
Wey-Yi Guy4bd0914f2009-09-17 10:43:52 -07004726 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4727 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4728 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4729 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4730 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4731 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4732 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4733 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4734 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4735 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4736 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4737 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004738#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004739
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004740 {0}
4741};
4742MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4743
4744static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004745 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004746 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004747 .probe = iwl_pci_probe,
4748 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004749#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004750 .suspend = iwl_pci_suspend,
4751 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004752#endif
4753};
4754
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004755static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004756{
4757
4758 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004759 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4760 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004761
Tomas Winklere227cea2008-07-18 13:53:05 +08004762 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004763 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004764 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004765 return ret;
4766 }
4767
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004768 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004769 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004770 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004771 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004772 }
Zhu Yib481de92007-09-25 17:54:57 -07004773
4774 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004775
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004776error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004777 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004778 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004779}
4780
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004781static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004782{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004783 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004784 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004785}
4786
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004787module_exit(iwl_exit);
4788module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004789
4790#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004791module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004792MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004793module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004794MODULE_PARM_DESC(debug, "debug output mask");
4795#endif
4796
Wey-Yi Guy2b0686182010-03-22 09:17:39 -07004797module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4798MODULE_PARM_DESC(swcrypto50,
4799 "using crypto in software (default 0 [hardware]) (deprecated)");
4800module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4801MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4802module_param_named(queues_num50,
4803 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4804MODULE_PARM_DESC(queues_num50,
4805 "number of hw queues in 50xx series (deprecated)");
4806module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4807MODULE_PARM_DESC(queues_num, "number of hw queues.");
4808module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4809MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4810module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4811MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4812module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4813 int, S_IRUGO);
4814MODULE_PARM_DESC(amsdu_size_8K50,
4815 "enable 8K amsdu size in 50XX series (deprecated)");
4816module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4817 int, S_IRUGO);
4818MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4819module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4820MODULE_PARM_DESC(fw_restart50,
4821 "restart firmware in case of error (deprecated)");
4822module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4823MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4824module_param_named(
4825 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
4826MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004827
4828module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4829 S_IRUGO);
4830MODULE_PARM_DESC(ucode_alternative,
4831 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004832
4833module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4834MODULE_PARM_DESC(antenna_coupling,
4835 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004836
4837module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4838MODULE_PARM_DESC(bt_ch_announce,
4839 "Enable BT channel announcement mode (default: enable)");