blob: f2884b5ca5b44c00186bc675820ac6d8aaa0a711 [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
Johannes Berg2491fa42010-08-23 10:46:52 +0200185 if (new_assoc) {
186 if (WARN_ON(!ctx->vif))
187 return -EINVAL;
188 /*
189 * First of all, before setting associated, we need to
190 * send RXON timing so the device knows about the DTIM
191 * period and other timing values
192 */
193 ret = iwl_send_rxon_timing(priv, ctx->vif);
194 if (ret) {
195 IWL_ERR(priv, "Error setting RXON timing!\n");
196 return ret;
197 }
198 }
199
Johannes Berg52a02d12010-08-27 09:44:50 -0700200 if (priv->cfg->ops->hcmd->set_pan_params) {
201 ret = priv->cfg->ops->hcmd->set_pan_params(priv);
202 if (ret)
203 return ret;
204 }
205
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800206 /* Apply the new configuration
Reinette Chatre7e246192010-02-18 22:58:32 -0800207 * RXON unassoc clears the station table in uCode so restoration of
208 * stations is needed after it (the RXON command) completes
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800209 */
210 if (!new_assoc) {
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200211 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200212 sizeof(struct iwl_rxon_cmd), &ctx->staging);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800213 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800214 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800215 return ret;
216 }
Frans Pop91dd6c22010-03-24 14:19:58 -0700217 IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON.\n");
Johannes Berg246ed352010-08-23 10:46:32 +0200218 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
Johannes Bergdcef7322010-08-27 08:55:52 -0700219 iwl_clear_ucode_stations(priv, ctx);
220 iwl_restore_stations(priv, ctx);
Johannes Bergc10afb62010-08-23 10:46:43 +0200221 ret = iwl_restore_default_wep_keys(priv, ctx);
Johannes Berg335348b2010-03-30 10:11:46 -0700222 if (ret) {
223 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
224 return ret;
225 }
Zhu Yib481de92007-09-25 17:54:57 -0700226 }
227
Johannes Berg19cc1082009-05-08 13:44:36 -0700228 priv->start_calib = 0;
Tomas Winkler91851592008-06-30 17:23:14 +0800229 if (new_assoc) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800230 /* Apply the new configuration
231 * RXON assoc doesn't clear the station table in uCode,
232 */
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200233 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200234 sizeof(struct iwl_rxon_cmd), &ctx->staging);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800235 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800236 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800237 return ret;
238 }
Johannes Berg246ed352010-08-23 10:46:32 +0200239 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700240 }
Johannes Berg246ed352010-08-23 10:46:32 +0200241 iwl_print_rx_config_cmd(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -0700242
Zhu Yi36da7d72008-07-11 11:53:40 +0800243 iwl_init_sensitivity(priv);
244
245 /* If we issue a new RXON command which required a tune then we must
246 * send a new TXPOWER command or we won't be able to Tx any frames */
247 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
248 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800249 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800250 return ret;
251 }
252
Zhu Yib481de92007-09-25 17:54:57 -0700253 return 0;
254}
255
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700256void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700257{
Johannes Berg246ed352010-08-23 10:46:32 +0200258 struct iwl_rxon_context *ctx;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700259
Johannes Berg246ed352010-08-23 10:46:32 +0200260 if (priv->cfg->ops->hcmd->set_rxon_chain) {
261 for_each_context(priv, ctx) {
262 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
263 iwlcore_commit_rxon(priv, ctx);
264 }
265 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700266}
267
Tomas Winklerfcab4232008-05-15 13:54:01 +0800268static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700269{
270 struct list_head *element;
271
Tomas Winklere1623442009-01-27 14:27:56 -0800272 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700273 priv->frames_count);
274
275 while (!list_empty(&priv->free_frames)) {
276 element = priv->free_frames.next;
277 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800278 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700279 priv->frames_count--;
280 }
281
282 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800283 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700284 priv->frames_count);
285 priv->frames_count = 0;
286 }
287}
288
Tomas Winklerfcab4232008-05-15 13:54:01 +0800289static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700290{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800291 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700292 struct list_head *element;
293 if (list_empty(&priv->free_frames)) {
294 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
295 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800296 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700297 return NULL;
298 }
299
300 priv->frames_count++;
301 return frame;
302 }
303
304 element = priv->free_frames.next;
305 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800306 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700307}
308
Tomas Winklerfcab4232008-05-15 13:54:01 +0800309static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700310{
311 memset(frame, 0, sizeof(*frame));
312 list_add(&frame->list, &priv->free_frames);
313}
314
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800315static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800316 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200317 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700318{
Johannes Berg6abbe552010-07-15 05:59:07 -0700319 if (!priv->ibss_beacon)
Zhu Yib481de92007-09-25 17:54:57 -0700320 return 0;
321
322 if (priv->ibss_beacon->len > left)
323 return 0;
324
325 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
326
327 return priv->ibss_beacon->len;
328}
329
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800330/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
331static void iwl_set_beacon_tim(struct iwl_priv *priv,
332 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
333 u8 *beacon, u32 frame_size)
334{
335 u16 tim_idx;
336 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
337
338 /*
339 * The index is relative to frame start but we start looking at the
340 * variable-length part of the beacon.
341 */
342 tim_idx = mgmt->u.beacon.variable - beacon;
343
344 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
345 while ((tim_idx < (frame_size - 2)) &&
346 (beacon[tim_idx] != WLAN_EID_TIM))
347 tim_idx += beacon[tim_idx+1] + 2;
348
349 /* If TIM field was found, set variables */
350 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
351 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
352 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
353 } else
354 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
355}
356
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700357static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800358 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800359{
360 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800361 u32 frame_size;
362 u32 rate_flags;
363 u32 rate;
364 /*
365 * We have to set up the TX command, the TX Beacon command, and the
366 * beacon contents.
367 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800368
Johannes Berg76d04812010-08-23 10:46:47 +0200369 lockdep_assert_held(&priv->mutex);
370
371 if (!priv->beacon_ctx) {
372 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
373 return -EINVAL;
374 }
375
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800376 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800377 tx_beacon_cmd = &frame->u.beacon;
378 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
379
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800380 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800381 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800382 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800383 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
384 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800385
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800386 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800387 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Johannes Berg76d04812010-08-23 10:46:47 +0200388 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800389 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800390 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800391 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
392
393 /* Set up TX beacon command fields */
394 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
395 frame_size);
396
397 /* Set up packet rate and flags */
Johannes Berg76d04812010-08-23 10:46:47 +0200398 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
Johannes Berg0e1654f2010-05-18 02:48:36 -0700399 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
400 priv->hw_params.valid_tx_ant);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800401 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
402 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
403 rate_flags |= RATE_MCS_CCK_MSK;
404 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
405 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800406
407 return sizeof(*tx_beacon_cmd) + frame_size;
408}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700409static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700410{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800411 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700412 unsigned int frame_size;
413 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700414
Tomas Winklerfcab4232008-05-15 13:54:01 +0800415 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700416 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800417 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700418 "command.\n");
419 return -ENOMEM;
420 }
421
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800422 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
423 if (!frame_size) {
424 IWL_ERR(priv, "Error configuring the beacon command\n");
425 iwl_free_frame(priv, frame);
426 return -EINVAL;
427 }
Zhu Yib481de92007-09-25 17:54:57 -0700428
Tomas Winkler857485c2008-03-21 13:53:44 -0700429 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700430 &frame->u.cmd[0]);
431
Tomas Winklerfcab4232008-05-15 13:54:01 +0800432 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700433
434 return rc;
435}
436
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800437static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
438{
439 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
440
441 dma_addr_t addr = get_unaligned_le32(&tb->lo);
442 if (sizeof(dma_addr_t) > sizeof(u32))
443 addr |=
444 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
445
446 return addr;
447}
448
449static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
450{
451 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
452
453 return le16_to_cpu(tb->hi_n_len) >> 4;
454}
455
456static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
457 dma_addr_t addr, u16 len)
458{
459 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
460 u16 hi_n_len = len << 4;
461
462 put_unaligned_le32(addr, &tb->lo);
463 if (sizeof(dma_addr_t) > sizeof(u32))
464 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
465
466 tb->hi_n_len = cpu_to_le16(hi_n_len);
467
468 tfd->num_tbs = idx + 1;
469}
470
471static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
472{
473 return tfd->num_tbs & 0x1f;
474}
475
476/**
477 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
478 * @priv - driver private data
479 * @txq - tx queue
480 *
481 * Does NOT advance any TFD circular buffer read/write indexes
482 * Does NOT free the TFD itself (which is within circular buffer)
483 */
484void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
485{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800486 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800487 struct iwl_tfd *tfd;
488 struct pci_dev *dev = priv->pci_dev;
489 int index = txq->q.read_ptr;
490 int i;
491 int num_tbs;
492
493 tfd = &tfd_tmp[index];
494
495 /* Sanity check on number of chunks */
496 num_tbs = iwl_tfd_get_num_tbs(tfd);
497
498 if (num_tbs >= IWL_NUM_OF_TBS) {
499 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
500 /* @todo issue fatal error, it is quite serious situation */
501 return;
502 }
503
504 /* Unmap tx_cmd */
505 if (num_tbs)
506 pci_unmap_single(dev,
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900507 dma_unmap_addr(&txq->meta[index], mapping),
508 dma_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800509 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800510
511 /* Unmap chunks, if any. */
Johannes Bergff0d91c2010-05-17 02:37:34 -0700512 for (i = 1; i < num_tbs; i++)
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800513 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
514 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
515
Johannes Bergff0d91c2010-05-17 02:37:34 -0700516 /* free SKB */
517 if (txq->txb) {
518 struct sk_buff *skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700519
Johannes Bergff0d91c2010-05-17 02:37:34 -0700520 skb = txq->txb[txq->q.read_ptr].skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700521
Johannes Bergff0d91c2010-05-17 02:37:34 -0700522 /* can be called from irqs-disabled context */
523 if (skb) {
524 dev_kfree_skb_any(skb);
525 txq->txb[txq->q.read_ptr].skb = NULL;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800526 }
527 }
528}
529
530int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
531 struct iwl_tx_queue *txq,
532 dma_addr_t addr, u16 len,
533 u8 reset, u8 pad)
534{
535 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800536 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800537 u32 num_tbs;
538
539 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800540 tfd_tmp = (struct iwl_tfd *)txq->tfds;
541 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800542
543 if (reset)
544 memset(tfd, 0, sizeof(*tfd));
545
546 num_tbs = iwl_tfd_get_num_tbs(tfd);
547
548 /* Each TFD can point to a maximum 20 Tx buffers */
549 if (num_tbs >= IWL_NUM_OF_TBS) {
550 IWL_ERR(priv, "Error can not send more than %d chunks\n",
551 IWL_NUM_OF_TBS);
552 return -EINVAL;
553 }
554
555 BUG_ON(addr & ~DMA_BIT_MASK(36));
556 if (unlikely(addr & ~IWL_TX_DMA_MASK))
557 IWL_ERR(priv, "Unaligned address = %llx\n",
558 (unsigned long long)addr);
559
560 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
561
562 return 0;
563}
564
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800565/*
566 * Tell nic where to find circular buffer of Tx Frame Descriptors for
567 * given Tx queue, and enable the DMA channel used for that queue.
568 *
569 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
570 * channels supported in hardware.
571 */
572int iwl_hw_tx_queue_init(struct iwl_priv *priv,
573 struct iwl_tx_queue *txq)
574{
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800575 int txq_id = txq->q.id;
576
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800577 /* Circular buffer (TFD queue in DRAM) physical base address */
578 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
579 txq->q.dma_addr >> 8);
580
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800581 return 0;
582}
583
Zhu Yib481de92007-09-25 17:54:57 -0700584/******************************************************************************
585 *
586 * Generic RX handler implementations
587 *
588 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800589static void iwl_rx_reply_alive(struct iwl_priv *priv,
590 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700591{
Zhu Yi2f301222009-10-09 17:19:45 +0800592 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800593 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700594 struct delayed_work *pwork;
595
596 palive = &pkt->u.alive_frame;
597
Tomas Winklere1623442009-01-27 14:27:56 -0800598 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700599 "0x%01X 0x%01X\n",
600 palive->is_valid, palive->ver_type,
601 palive->ver_subtype);
602
603 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800604 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700605 memcpy(&priv->card_alive_init,
606 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800607 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700608 pwork = &priv->init_alive_start;
609 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800610 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700611 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800612 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700613 pwork = &priv->alive_start;
614 }
615
616 /* We delay the ALIVE response by 5ms to
617 * give the HW RF Kill time to activate... */
618 if (palive->is_valid == UCODE_VALID_OK)
619 queue_delayed_work(priv->workqueue, pwork,
620 msecs_to_jiffies(5));
621 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800622 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700623}
624
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700625static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700626{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700627 struct iwl_priv *priv =
628 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700629 struct sk_buff *beacon;
630
Johannes Berg76d04812010-08-23 10:46:47 +0200631 mutex_lock(&priv->mutex);
632 if (!priv->beacon_ctx) {
633 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
634 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700635 }
636
Johannes Berg60744f62010-08-23 10:46:50 +0200637 if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) {
638 /*
639 * The ucode will send beacon notifications even in
640 * IBSS mode, but we don't want to process them. But
641 * we need to defer the type check to here due to
642 * requiring locking around the beacon_ctx access.
643 */
644 goto out;
645 }
646
Johannes Berg76d04812010-08-23 10:46:47 +0200647 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
648 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
649 if (!beacon) {
650 IWL_ERR(priv, "update beacon failed\n");
651 goto out;
652 }
653
Zhu Yib481de92007-09-25 17:54:57 -0700654 /* new beacon skb is allocated every time; dispose previous.*/
655 if (priv->ibss_beacon)
656 dev_kfree_skb(priv->ibss_beacon);
657
658 priv->ibss_beacon = beacon;
Zhu Yib481de92007-09-25 17:54:57 -0700659
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700660 iwl_send_beacon_cmd(priv);
Johannes Berg76d04812010-08-23 10:46:47 +0200661 out:
662 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -0700663}
664
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700665static void iwl_bg_bt_runtime_config(struct work_struct *work)
666{
667 struct iwl_priv *priv =
668 container_of(work, struct iwl_priv, bt_runtime_config);
669
670 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
671 return;
672
673 /* dont send host command if rf-kill is on */
674 if (!iwl_is_ready_rf(priv))
675 return;
676 priv->cfg->ops->hcmd->send_bt_config(priv);
677}
678
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700679static void iwl_bg_bt_full_concurrency(struct work_struct *work)
680{
681 struct iwl_priv *priv =
682 container_of(work, struct iwl_priv, bt_full_concurrency);
Johannes Berg246ed352010-08-23 10:46:32 +0200683 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700684
685 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
686 return;
687
688 /* dont send host command if rf-kill is on */
689 if (!iwl_is_ready_rf(priv))
690 return;
691
692 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
693 priv->bt_full_concurrent ?
694 "full concurrency" : "3-wire");
695
696 /*
697 * LQ & RXON updated cmds must be sent before BT Config cmd
698 * to avoid 3-wire collisions
699 */
Johannes Berg246ed352010-08-23 10:46:32 +0200700 mutex_lock(&priv->mutex);
701 for_each_context(priv, ctx) {
702 if (priv->cfg->ops->hcmd->set_rxon_chain)
703 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
704 iwlcore_commit_rxon(priv, ctx);
705 }
706 mutex_unlock(&priv->mutex);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700707
708 priv->cfg->ops->hcmd->send_bt_config(priv);
709}
710
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800711/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700712 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800713 *
714 * This callback is provided in order to send a statistics request.
715 *
716 * This timer function is continually reset to execute within
717 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
718 * was received. We need to ensure we receive the statistics in order
719 * to update the temperature used for calibrating the TXPOWER.
720 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700721static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800722{
723 struct iwl_priv *priv = (struct iwl_priv *)data;
724
725 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
726 return;
727
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700728 /* dont send host command if rf-kill is on */
729 if (!iwl_is_ready_rf(priv))
730 return;
731
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800732 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800733}
734
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800735
736static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
737 u32 start_idx, u32 num_events,
738 u32 mode)
739{
740 u32 i;
741 u32 ptr; /* SRAM byte address of log data */
742 u32 ev, time, data; /* event log data */
743 unsigned long reg_flags;
744
745 if (mode == 0)
746 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
747 else
748 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
749
750 /* Make sure device is powered up for SRAM reads */
751 spin_lock_irqsave(&priv->reg_lock, reg_flags);
752 if (iwl_grab_nic_access(priv)) {
753 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
754 return;
755 }
756
757 /* Set starting address; reads will auto-increment */
758 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
759 rmb();
760
761 /*
762 * "time" is actually "data" for mode 0 (no timestamp).
763 * place event id # at far right for easier visual parsing.
764 */
765 for (i = 0; i < num_events; i++) {
766 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
767 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
768 if (mode == 0) {
769 trace_iwlwifi_dev_ucode_cont_event(priv,
770 0, time, ev);
771 } else {
772 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
773 trace_iwlwifi_dev_ucode_cont_event(priv,
774 time, data, ev);
775 }
776 }
777 /* Allow device to power down */
778 iwl_release_nic_access(priv);
779 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
780}
781
Johannes Berg875295f2010-01-22 14:22:55 -0800782static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800783{
784 u32 capacity; /* event log capacity in # entries */
785 u32 base; /* SRAM byte address of event log header */
786 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
787 u32 num_wraps; /* # times uCode wrapped to top of log */
788 u32 next_entry; /* index of next entry to be written by uCode */
789
790 if (priv->ucode_type == UCODE_INIT)
791 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
792 else
793 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
794 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
795 capacity = iwl_read_targ_mem(priv, base);
796 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
797 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
798 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
799 } else
800 return;
801
802 if (num_wraps == priv->event_log.num_wraps) {
803 iwl_print_cont_event_trace(priv,
804 base, priv->event_log.next_entry,
805 next_entry - priv->event_log.next_entry,
806 mode);
807 priv->event_log.non_wraps_count++;
808 } else {
809 if ((num_wraps - priv->event_log.num_wraps) > 1)
810 priv->event_log.wraps_more_count++;
811 else
812 priv->event_log.wraps_once_count++;
813 trace_iwlwifi_dev_ucode_wrap_event(priv,
814 num_wraps - priv->event_log.num_wraps,
815 next_entry, priv->event_log.next_entry);
816 if (next_entry < priv->event_log.next_entry) {
817 iwl_print_cont_event_trace(priv, base,
818 priv->event_log.next_entry,
819 capacity - priv->event_log.next_entry,
820 mode);
821
822 iwl_print_cont_event_trace(priv, base, 0,
823 next_entry, mode);
824 } else {
825 iwl_print_cont_event_trace(priv, base,
826 next_entry, capacity - next_entry,
827 mode);
828
829 iwl_print_cont_event_trace(priv, base, 0,
830 next_entry, mode);
831 }
832 }
833 priv->event_log.num_wraps = num_wraps;
834 priv->event_log.next_entry = next_entry;
835}
836
837/**
838 * iwl_bg_ucode_trace - Timer callback to log ucode event
839 *
840 * The timer is continually set to execute every
841 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
842 * this function is to perform continuous uCode event logging operation
843 * if enabled
844 */
845static void iwl_bg_ucode_trace(unsigned long data)
846{
847 struct iwl_priv *priv = (struct iwl_priv *)data;
848
849 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
850 return;
851
852 if (priv->event_log.ucode_trace) {
853 iwl_continuous_event_trace(priv);
854 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
855 mod_timer(&priv->ucode_trace,
856 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
857 }
858}
859
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700860static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800861 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700862{
Zhu Yi2f301222009-10-09 17:19:45 +0800863 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800864 struct iwl4965_beacon_notif *beacon =
865 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700866#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800867 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700868
Tomas Winklere1623442009-01-27 14:27:56 -0800869 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700870 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800871 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700872 beacon->beacon_notify_hdr.failure_frame,
873 le32_to_cpu(beacon->ibss_mgr_status),
874 le32_to_cpu(beacon->high_tsf),
875 le32_to_cpu(beacon->low_tsf), rate);
876#endif
877
Johannes Berga85d7cc2010-07-31 08:34:10 -0700878 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
879
Johannes Berg60744f62010-08-23 10:46:50 +0200880 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -0700881 queue_work(priv->workqueue, &priv->beacon_update);
882}
883
Zhu Yib481de92007-09-25 17:54:57 -0700884/* Handle notification from uCode that card's power state is changing
885 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700886static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800887 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700888{
Zhu Yi2f301222009-10-09 17:19:45 +0800889 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700890 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
891 unsigned long status = priv->status;
892
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800893 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700894 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800895 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
896 (flags & CT_CARD_DISABLED) ?
897 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700898
899 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800900 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700901
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700902 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700903 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
904
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700905 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
906 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700907
908 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700909 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700910 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700911 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700912 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700913 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800914 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700915 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700916 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800917 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700918 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700919
920 if (flags & HW_CARD_DISABLED)
921 set_bit(STATUS_RF_KILL_HW, &priv->status);
922 else
923 clear_bit(STATUS_RF_KILL_HW, &priv->status);
924
925
Zhu Yib481de92007-09-25 17:54:57 -0700926 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800927 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700928
929 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200930 test_bit(STATUS_RF_KILL_HW, &priv->status)))
931 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
932 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700933 else
934 wake_up_interruptible(&priv->wait_command_queue);
935}
936
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700937int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800938{
Tomas Winklere2e3c572008-07-18 13:53:04 +0800939 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800940 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800941 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
942 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
943 ~APMG_PS_CTRL_MSK_PWR_SRC);
944 } else {
945 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
946 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
947 ~APMG_PS_CTRL_MSK_PWR_SRC);
948 }
949
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700950 return 0;
Tomas Winklere2e3c572008-07-18 13:53:04 +0800951}
952
Wey-Yi Guy65550632010-06-24 13:18:35 -0700953static void iwl_bg_tx_flush(struct work_struct *work)
954{
955 struct iwl_priv *priv =
956 container_of(work, struct iwl_priv, tx_flush);
957
958 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
959 return;
960
961 /* do nothing if rf-kill is on */
962 if (!iwl_is_ready_rf(priv))
963 return;
964
965 if (priv->cfg->ops->lib->txfifo_flush) {
966 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
967 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
968 }
969}
970
Zhu Yib481de92007-09-25 17:54:57 -0700971/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700972 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700973 *
974 * Setup the RX handlers for each of the reply types sent from the uCode
975 * to the host.
976 *
977 * This function chains into the hardware specific files for them to setup
978 * any hardware specific handlers as well.
979 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800980static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700981{
Tomas Winkler885ba202008-05-29 16:34:55 +0800982 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700983 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
984 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800985 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
986 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700987 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700988 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700989 iwl_rx_pm_debug_statistics_notif;
990 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700991
Ben Cahill9fbab512007-11-29 11:09:47 +0800992 /*
993 * The same handler is used for both the REPLY to a discrete
994 * statistics request from the host as well as for the periodic
995 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700996 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800997 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800998 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800999
1000 iwl_setup_rx_scan_handlers(priv);
1001
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001002 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001003 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001004
Tomas Winklerc1354752008-05-29 16:35:04 +08001005 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
1006 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001007 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001008 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
1009 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001010 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001011 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +08001012 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07001013 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001014}
1015
Zhu Yib481de92007-09-25 17:54:57 -07001016/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001017 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001018 *
1019 * Uses the priv->rx_handlers callback function array to invoke
1020 * the appropriate handlers, including command responses,
1021 * frame-received notifications, and other notifications.
1022 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001023void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001024{
Tomas Winklera55360e2008-05-05 10:22:28 +08001025 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001026 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001027 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001028 u32 r, i;
1029 int reclaim;
1030 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001031 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001032 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001033 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -07001034
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001035 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1036 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001037 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001038 i = rxq->read;
1039
1040 /* Rx interrupt, but nothing sent from uCode */
1041 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001042 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001043
Mohamed Abbas4752c932009-05-22 11:01:51 -07001044 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001045 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001046 if (total_empty < 0)
1047 total_empty += RX_QUEUE_SIZE;
1048
1049 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001050 fill_rx = 1;
1051
Zhu Yib481de92007-09-25 17:54:57 -07001052 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001053 int len;
1054
Zhu Yib481de92007-09-25 17:54:57 -07001055 rxb = rxq->queue[i];
1056
Ben Cahill9fbab512007-11-29 11:09:47 +08001057 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001058 * then a bug has been introduced in the queue refilling
1059 * routines -- catch it here */
1060 BUG_ON(rxb == NULL);
1061
1062 rxq->queue[i] = NULL;
1063
Zhu Yi2f301222009-10-09 17:19:45 +08001064 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1065 PAGE_SIZE << priv->hw_params.rx_page_order,
1066 PCI_DMA_FROMDEVICE);
1067 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001068
Johannes Bergf4989d92010-05-28 04:08:30 -07001069 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1070 len += sizeof(u32); /* account for status word */
1071 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001072
Zhu Yib481de92007-09-25 17:54:57 -07001073 /* Reclaim a command buffer only if this packet is a response
1074 * to a (driver-originated) command.
1075 * If the packet (e.g. Rx frame) originated from uCode,
1076 * there is no command buffer to reclaim.
1077 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1078 * but apparently a few don't get set; catch them here. */
1079 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1080 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001081 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001082 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001083 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001084 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1085 (pkt->hdr.cmd != REPLY_TX);
1086
1087 /* Based on type of command response or notification,
1088 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001089 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001090 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001091 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001092 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001093 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001094 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001095 } else {
1096 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001097 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001098 "r %d i %d No handler needed for %s, 0x%02x\n",
1099 r, i, get_cmd_string(pkt->hdr.cmd),
1100 pkt->hdr.cmd);
1101 }
1102
Zhu Yi29b1b262009-10-23 13:42:25 -07001103 /*
1104 * XXX: After here, we should always check rxb->page
1105 * against NULL before touching it or its virtual
1106 * memory (pkt). Because some rx_handler might have
1107 * already taken or freed the pages.
1108 */
1109
Zhu Yib481de92007-09-25 17:54:57 -07001110 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001111 /* Invoke any callbacks, transfer the buffer to caller,
1112 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001113 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001114 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001115 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001116 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001117 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001118 }
1119
Zhu Yi73005152009-10-23 13:42:32 -07001120 /* Reuse the page if possible. For notification packets and
1121 * SKBs that fail to Rx correctly, add them back into the
1122 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001123 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001124 if (rxb->page != NULL) {
1125 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1126 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1127 PCI_DMA_FROMDEVICE);
1128 list_add_tail(&rxb->list, &rxq->rx_free);
1129 rxq->free_count++;
1130 } else
1131 list_add_tail(&rxb->list, &rxq->rx_used);
1132
Zhu Yib481de92007-09-25 17:54:57 -07001133 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001134
Zhu Yib481de92007-09-25 17:54:57 -07001135 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001136 /* If there are a lot of unused frames,
1137 * restock the Rx queue so ucode wont assert. */
1138 if (fill_rx) {
1139 count++;
1140 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001141 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001142 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001143 count = 0;
1144 }
1145 }
Zhu Yib481de92007-09-25 17:54:57 -07001146 }
1147
1148 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001149 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001150 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001151 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -07001152 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001153 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001154}
Tomas Winklera55360e2008-05-05 10:22:28 +08001155
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001156/* call this function to flush any scheduled tasklet */
1157static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1158{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001159 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001160 synchronize_irq(priv->pci_dev->irq);
1161 tasklet_kill(&priv->irq_tasklet);
1162}
1163
Mohamed Abbasef850d72009-05-22 11:01:50 -07001164static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001165{
1166 u32 inta, handled = 0;
1167 u32 inta_fh;
1168 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001169 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001170#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001171 u32 inta_mask;
1172#endif
1173
1174 spin_lock_irqsave(&priv->lock, flags);
1175
1176 /* Ack/clear/reset pending uCode interrupts.
1177 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1178 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001179 inta = iwl_read32(priv, CSR_INT);
1180 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001181
1182 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1183 * Any new interrupts that happen after this, either while we're
1184 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001185 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1186 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001187
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001188#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001189 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001190 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001191 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001192 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001193 inta, inta_mask, inta_fh);
1194 }
1195#endif
1196
Zhu Yi2f301222009-10-09 17:19:45 +08001197 spin_unlock_irqrestore(&priv->lock, flags);
1198
Zhu Yib481de92007-09-25 17:54:57 -07001199 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1200 * atomic, make sure that inta covers all the interrupts that
1201 * we've discovered, even if FH interrupt came in just after
1202 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001203 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001204 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001205 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001206 inta |= CSR_INT_BIT_FH_TX;
1207
1208 /* Now service all interrupt bits discovered above. */
1209 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001210 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001211
1212 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001213 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001214
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001215 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001216 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001217
1218 handled |= CSR_INT_BIT_HW_ERR;
1219
Zhu Yib481de92007-09-25 17:54:57 -07001220 return;
1221 }
1222
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001223#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001224 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001225 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001226 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001227 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001228 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001229 priv->isr_stats.sch++;
1230 }
Zhu Yib481de92007-09-25 17:54:57 -07001231
1232 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001233 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001234 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001235 priv->isr_stats.alive++;
1236 }
Zhu Yib481de92007-09-25 17:54:57 -07001237 }
1238#endif
1239 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001240 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001241
Ben Cahill9fbab512007-11-29 11:09:47 +08001242 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001243 if (inta & CSR_INT_BIT_RF_KILL) {
1244 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001245 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001246 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1247 hw_rf_kill = 1;
1248
Reinette Chatre4c423a22009-07-17 09:30:26 -07001249 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001250 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001251
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001252 priv->isr_stats.rfkill++;
1253
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001254 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001255 * the driver allows loading the ucode even if the radio
1256 * is killed. Hence update the killswitch state here. The
1257 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001258 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001259 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1260 if (hw_rf_kill)
1261 set_bit(STATUS_RF_KILL_HW, &priv->status);
1262 else
1263 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001264 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001265 }
Zhu Yib481de92007-09-25 17:54:57 -07001266
1267 handled |= CSR_INT_BIT_RF_KILL;
1268 }
1269
Ben Cahill9fbab512007-11-29 11:09:47 +08001270 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001271 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001272 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001273 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001274 handled |= CSR_INT_BIT_CT_KILL;
1275 }
1276
1277 /* Error detected by uCode */
1278 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001279 IWL_ERR(priv, "Microcode SW error detected. "
1280 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001281 priv->isr_stats.sw++;
1282 priv->isr_stats.sw_err = inta;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001283 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001284 handled |= CSR_INT_BIT_SW_ERR;
1285 }
1286
Ben Cahillc2e61da2009-10-30 14:36:09 -07001287 /*
1288 * uCode wakes up after power-down sleep.
1289 * Tell device about any new tx or host commands enqueued,
1290 * and about any Rx buffers made available while asleep.
1291 */
Zhu Yib481de92007-09-25 17:54:57 -07001292 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001293 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001294 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001295 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1296 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001297 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001298 handled |= CSR_INT_BIT_WAKEUP;
1299 }
1300
1301 /* All uCode command responses, including Tx command responses,
1302 * Rx "responses" (frame-received notification), and other
1303 * notifications from uCode come through here*/
1304 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001305 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001306 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001307 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1308 }
1309
Ben Cahillc72cd192009-10-30 14:36:08 -07001310 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001311 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001312 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001313 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001314 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001315 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001316 priv->ucode_write_complete = 1;
1317 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001318 }
1319
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001320 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001321 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001322 priv->isr_stats.unhandled++;
1323 }
Zhu Yib481de92007-09-25 17:54:57 -07001324
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001325 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001326 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001327 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001328 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001329 }
1330
1331 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001332 /* only Re-enable if diabled by irq */
1333 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001334 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001335
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001336#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001337 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001338 inta = iwl_read32(priv, CSR_INT);
1339 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1340 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001341 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001342 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1343 }
1344#endif
Zhu Yib481de92007-09-25 17:54:57 -07001345}
1346
Mohamed Abbasef850d72009-05-22 11:01:50 -07001347/* tasklet for iwlagn interrupt */
1348static void iwl_irq_tasklet(struct iwl_priv *priv)
1349{
1350 u32 inta = 0;
1351 u32 handled = 0;
1352 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001353 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001354#ifdef CONFIG_IWLWIFI_DEBUG
1355 u32 inta_mask;
1356#endif
1357
1358 spin_lock_irqsave(&priv->lock, flags);
1359
1360 /* Ack/clear/reset pending uCode interrupts.
1361 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1362 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001363 /* There is a hardware bug in the interrupt mask function that some
1364 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1365 * they are disabled in the CSR_INT_MASK register. Furthermore the
1366 * ICT interrupt handling mechanism has another bug that might cause
1367 * these unmasked interrupts fail to be detected. We workaround the
1368 * hardware bugs here by ACKing all the possible interrupts so that
1369 * interrupt coalescing can still be achieved.
1370 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001371 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001372
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001373 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001374
1375#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001376 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001377 /* just for debug */
1378 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1379 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1380 inta, inta_mask);
1381 }
1382#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001383
1384 spin_unlock_irqrestore(&priv->lock, flags);
1385
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001386 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1387 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001388
1389 /* Now service all interrupt bits discovered above. */
1390 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001391 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001392
1393 /* Tell the device to stop sending interrupts */
1394 iwl_disable_interrupts(priv);
1395
1396 priv->isr_stats.hw++;
1397 iwl_irq_handle_error(priv);
1398
1399 handled |= CSR_INT_BIT_HW_ERR;
1400
Mohamed Abbasef850d72009-05-22 11:01:50 -07001401 return;
1402 }
1403
1404#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001405 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001406 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1407 if (inta & CSR_INT_BIT_SCD) {
1408 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1409 "the frame/frames.\n");
1410 priv->isr_stats.sch++;
1411 }
1412
1413 /* Alive notification via Rx interrupt will do the real work */
1414 if (inta & CSR_INT_BIT_ALIVE) {
1415 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1416 priv->isr_stats.alive++;
1417 }
1418 }
1419#endif
1420 /* Safely ignore these bits for debug checks below */
1421 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1422
1423 /* HW RF KILL switch toggled */
1424 if (inta & CSR_INT_BIT_RF_KILL) {
1425 int hw_rf_kill = 0;
1426 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1427 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1428 hw_rf_kill = 1;
1429
Reinette Chatre4c423a22009-07-17 09:30:26 -07001430 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001431 hw_rf_kill ? "disable radio" : "enable radio");
1432
1433 priv->isr_stats.rfkill++;
1434
1435 /* driver only loads ucode once setting the interface up.
1436 * the driver allows loading the ucode even if the radio
1437 * is killed. Hence update the killswitch state here. The
1438 * rfkill handler will care about restarting if needed.
1439 */
1440 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1441 if (hw_rf_kill)
1442 set_bit(STATUS_RF_KILL_HW, &priv->status);
1443 else
1444 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001445 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001446 }
1447
1448 handled |= CSR_INT_BIT_RF_KILL;
1449 }
1450
1451 /* Chip got too hot and stopped itself */
1452 if (inta & CSR_INT_BIT_CT_KILL) {
1453 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1454 priv->isr_stats.ctkill++;
1455 handled |= CSR_INT_BIT_CT_KILL;
1456 }
1457
1458 /* Error detected by uCode */
1459 if (inta & CSR_INT_BIT_SW_ERR) {
1460 IWL_ERR(priv, "Microcode SW error detected. "
1461 " Restarting 0x%X.\n", inta);
1462 priv->isr_stats.sw++;
1463 priv->isr_stats.sw_err = inta;
1464 iwl_irq_handle_error(priv);
1465 handled |= CSR_INT_BIT_SW_ERR;
1466 }
1467
1468 /* uCode wakes up after power-down sleep */
1469 if (inta & CSR_INT_BIT_WAKEUP) {
1470 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1471 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001472 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1473 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001474
1475 priv->isr_stats.wakeup++;
1476
1477 handled |= CSR_INT_BIT_WAKEUP;
1478 }
1479
1480 /* All uCode command responses, including Tx command responses,
1481 * Rx "responses" (frame-received notification), and other
1482 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001483 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1484 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001485 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001486 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1487 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1488 iwl_write32(priv, CSR_FH_INT_STATUS,
1489 CSR49_FH_INT_RX_MASK);
1490 }
1491 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1492 handled |= CSR_INT_BIT_RX_PERIODIC;
1493 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1494 }
1495 /* Sending RX interrupt require many steps to be done in the
1496 * the device:
1497 * 1- write interrupt to current index in ICT table.
1498 * 2- dma RX frame.
1499 * 3- update RX shared data to indicate last write index.
1500 * 4- send interrupt.
1501 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001502 * but the shared data changes does not reflect this;
1503 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001504 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001505
1506 /* Disable periodic interrupt; we use it as just a one-shot. */
1507 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001508 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001509 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001510
1511 /*
1512 * Enable periodic interrupt in 8 msec only if we received
1513 * real RX interrupt (instead of just periodic int), to catch
1514 * any dangling Rx interrupt. If it was just the periodic
1515 * interrupt, there was no dangling Rx activity, and no need
1516 * to extend the periodic interrupt; one-shot is enough.
1517 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001518 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001519 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001520 CSR_INT_PERIODIC_ENA);
1521
Mohamed Abbasef850d72009-05-22 11:01:50 -07001522 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001523 }
1524
Ben Cahillc72cd192009-10-30 14:36:08 -07001525 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001526 if (inta & CSR_INT_BIT_FH_TX) {
1527 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001528 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001529 priv->isr_stats.tx++;
1530 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001531 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001532 priv->ucode_write_complete = 1;
1533 wake_up_interruptible(&priv->wait_command_queue);
1534 }
1535
1536 if (inta & ~handled) {
1537 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1538 priv->isr_stats.unhandled++;
1539 }
1540
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001541 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001542 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001543 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001544 }
1545
Mohamed Abbasef850d72009-05-22 11:01:50 -07001546 /* Re-enable all interrupts */
1547 /* only Re-enable if diabled by irq */
1548 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1549 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001550}
1551
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001552/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1553#define ACK_CNT_RATIO (50)
1554#define BA_TIMEOUT_CNT (5)
1555#define BA_TIMEOUT_MAX (16)
1556
1557/**
1558 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1559 *
1560 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1561 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1562 * operation state.
1563 */
1564bool iwl_good_ack_health(struct iwl_priv *priv,
1565 struct iwl_rx_packet *pkt)
1566{
1567 bool rc = true;
1568 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1569 int ba_timeout_delta;
1570
1571 actual_ack_cnt_delta =
1572 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001573 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001574 expected_ack_cnt_delta =
1575 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001576 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001577 ba_timeout_delta =
1578 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001579 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001580 if ((priv->_agn.agg_tids_count > 0) &&
1581 (expected_ack_cnt_delta > 0) &&
1582 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1583 < ACK_CNT_RATIO) &&
1584 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1585 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1586 " expected_ack_cnt = %d\n",
1587 actual_ack_cnt_delta, expected_ack_cnt_delta);
1588
Johannes Bergd73e4922010-05-06 12:18:41 -07001589#ifdef CONFIG_IWLWIFI_DEBUGFS
1590 /*
1591 * This is ifdef'ed on DEBUGFS because otherwise the
1592 * statistics aren't available. If DEBUGFS is set but
1593 * DEBUG is not, these will just compile out.
1594 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001595 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001596 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001597 IWL_DEBUG_RADIO(priv,
1598 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001599 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001600 ack_or_ba_timeout_collision);
1601#endif
1602 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1603 ba_timeout_delta);
1604 if (!actual_ack_cnt_delta &&
1605 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1606 rc = false;
1607 }
1608 return rc;
1609}
1610
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001611
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001612/*****************************************************************************
1613 *
1614 * sysfs attributes
1615 *
1616 *****************************************************************************/
1617
1618#ifdef CONFIG_IWLWIFI_DEBUG
1619
1620/*
1621 * The following adds a new attribute to the sysfs representation
1622 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1623 * used for controlling the debug level.
1624 *
1625 * See the level definitions in iwl for details.
1626 *
1627 * The debug_level being managed using sysfs below is a per device debug
1628 * level that is used instead of the global debug level if it (the per
1629 * device debug level) is set.
1630 */
1631static ssize_t show_debug_level(struct device *d,
1632 struct device_attribute *attr, char *buf)
1633{
1634 struct iwl_priv *priv = dev_get_drvdata(d);
1635 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1636}
1637static ssize_t store_debug_level(struct device *d,
1638 struct device_attribute *attr,
1639 const char *buf, size_t count)
1640{
1641 struct iwl_priv *priv = dev_get_drvdata(d);
1642 unsigned long val;
1643 int ret;
1644
1645 ret = strict_strtoul(buf, 0, &val);
1646 if (ret)
1647 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1648 else {
1649 priv->debug_level = val;
1650 if (iwl_alloc_traffic_mem(priv))
1651 IWL_ERR(priv,
1652 "Not enough memory to generate traffic log\n");
1653 }
1654 return strnlen(buf, count);
1655}
1656
1657static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1658 show_debug_level, store_debug_level);
1659
1660
1661#endif /* CONFIG_IWLWIFI_DEBUG */
1662
1663
1664static ssize_t show_temperature(struct device *d,
1665 struct device_attribute *attr, char *buf)
1666{
1667 struct iwl_priv *priv = dev_get_drvdata(d);
1668
1669 if (!iwl_is_alive(priv))
1670 return -EAGAIN;
1671
1672 return sprintf(buf, "%d\n", priv->temperature);
1673}
1674
1675static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1676
1677static ssize_t show_tx_power(struct device *d,
1678 struct device_attribute *attr, char *buf)
1679{
1680 struct iwl_priv *priv = dev_get_drvdata(d);
1681
1682 if (!iwl_is_ready_rf(priv))
1683 return sprintf(buf, "off\n");
1684 else
1685 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1686}
1687
1688static ssize_t store_tx_power(struct device *d,
1689 struct device_attribute *attr,
1690 const char *buf, size_t count)
1691{
1692 struct iwl_priv *priv = dev_get_drvdata(d);
1693 unsigned long val;
1694 int ret;
1695
1696 ret = strict_strtoul(buf, 10, &val);
1697 if (ret)
1698 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1699 else {
1700 ret = iwl_set_tx_power(priv, val, false);
1701 if (ret)
1702 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1703 ret);
1704 else
1705 ret = count;
1706 }
1707 return ret;
1708}
1709
1710static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1711
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001712static struct attribute *iwl_sysfs_entries[] = {
1713 &dev_attr_temperature.attr,
1714 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001715#ifdef CONFIG_IWLWIFI_DEBUG
1716 &dev_attr_debug_level.attr,
1717#endif
1718 NULL
1719};
1720
1721static struct attribute_group iwl_attribute_group = {
1722 .name = NULL, /* put in device directory */
1723 .attrs = iwl_sysfs_entries,
1724};
1725
Zhu Yib481de92007-09-25 17:54:57 -07001726/******************************************************************************
1727 *
1728 * uCode download functions
1729 *
1730 ******************************************************************************/
1731
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001732static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001733{
Tomas Winkler98c92212008-01-14 17:46:20 -08001734 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1735 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1736 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1737 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1738 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1739 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001740}
1741
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001742static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001743{
1744 /* Remove all resets to allow NIC to operate */
1745 iwl_write32(priv, CSR_RESET, 0);
1746}
1747
Johannes Bergdd7a2502010-04-28 23:33:10 -07001748struct iwlagn_ucode_capabilities {
1749 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001750 u32 standard_phy_calibration_size;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001751 bool pan;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001752};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001753
Johannes Bergb08dfd02010-01-29 11:54:56 -08001754static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001755static int iwl_mac_setup_register(struct iwl_priv *priv,
1756 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001757
Jay Sternberg39396082010-08-12 10:24:07 -07001758#define UCODE_EXPERIMENTAL_INDEX 100
1759#define UCODE_EXPERIMENTAL_TAG "exp"
1760
Johannes Bergb08dfd02010-01-29 11:54:56 -08001761static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001762{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001763 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001764 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001765
Jay Sternberg39396082010-08-12 10:24:07 -07001766 if (first) {
1767#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1768 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1769 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1770 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1771#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001772 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001773 sprintf(tag, "%d", priv->fw_index);
1774 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001775 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001776 sprintf(tag, "%d", priv->fw_index);
1777 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001778
1779 if (priv->fw_index < priv->cfg->ucode_api_min) {
1780 IWL_ERR(priv, "no suitable firmware found!\n");
1781 return -ENOENT;
1782 }
1783
Jay Sternberg39396082010-08-12 10:24:07 -07001784 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001785
Jay Sternberg39396082010-08-12 10:24:07 -07001786 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1787 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1788 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001789 priv->firmware_name);
1790
1791 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1792 &priv->pci_dev->dev, GFP_KERNEL, priv,
1793 iwl_ucode_callback);
1794}
1795
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001796struct iwlagn_firmware_pieces {
1797 const void *inst, *data, *init, *init_data, *boot;
1798 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1799
1800 u32 build;
Johannes Bergb2e640d42010-05-05 23:24:54 -07001801
1802 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1803 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001804};
1805
1806static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1807 const struct firmware *ucode_raw,
1808 struct iwlagn_firmware_pieces *pieces)
1809{
1810 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1811 u32 api_ver, hdr_size;
1812 const u8 *src;
1813
1814 priv->ucode_ver = le32_to_cpu(ucode->ver);
1815 api_ver = IWL_UCODE_API(priv->ucode_ver);
1816
1817 switch (api_ver) {
1818 default:
1819 /*
1820 * 4965 doesn't revision the firmware file format
1821 * along with the API version, it always uses v1
1822 * file format.
1823 */
1824 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1825 CSR_HW_REV_TYPE_4965) {
1826 hdr_size = 28;
1827 if (ucode_raw->size < hdr_size) {
1828 IWL_ERR(priv, "File size too small!\n");
1829 return -EINVAL;
1830 }
1831 pieces->build = le32_to_cpu(ucode->u.v2.build);
1832 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1833 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1834 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1835 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1836 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1837 src = ucode->u.v2.data;
1838 break;
1839 }
1840 /* fall through for 4965 */
1841 case 0:
1842 case 1:
1843 case 2:
1844 hdr_size = 24;
1845 if (ucode_raw->size < hdr_size) {
1846 IWL_ERR(priv, "File size too small!\n");
1847 return -EINVAL;
1848 }
1849 pieces->build = 0;
1850 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1851 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1852 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1853 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1854 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1855 src = ucode->u.v1.data;
1856 break;
1857 }
1858
1859 /* Verify size of file vs. image size info in file's header */
1860 if (ucode_raw->size != hdr_size + pieces->inst_size +
1861 pieces->data_size + pieces->init_size +
1862 pieces->init_data_size + pieces->boot_size) {
1863
1864 IWL_ERR(priv,
1865 "uCode file size %d does not match expected size\n",
1866 (int)ucode_raw->size);
1867 return -EINVAL;
1868 }
1869
1870 pieces->inst = src;
1871 src += pieces->inst_size;
1872 pieces->data = src;
1873 src += pieces->data_size;
1874 pieces->init = src;
1875 src += pieces->init_size;
1876 pieces->init_data = src;
1877 src += pieces->init_data_size;
1878 pieces->boot = src;
1879 src += pieces->boot_size;
1880
1881 return 0;
1882}
1883
Johannes Bergdd7a2502010-04-28 23:33:10 -07001884static int iwlagn_wanted_ucode_alternative = 1;
1885
1886static int iwlagn_load_firmware(struct iwl_priv *priv,
1887 const struct firmware *ucode_raw,
1888 struct iwlagn_firmware_pieces *pieces,
1889 struct iwlagn_ucode_capabilities *capa)
1890{
1891 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1892 struct iwl_ucode_tlv *tlv;
1893 size_t len = ucode_raw->size;
1894 const u8 *data;
1895 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1896 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001897 u32 tlv_len;
1898 enum iwl_ucode_tlv_type tlv_type;
1899 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001900
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001901 if (len < sizeof(*ucode)) {
1902 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001903 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001904 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001905
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001906 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1907 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1908 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001909 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001910 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001911
1912 /*
1913 * Check which alternatives are present, and "downgrade"
1914 * when the chosen alternative is not present, warning
1915 * the user when that happens. Some files may not have
1916 * any alternatives, so don't warn in that case.
1917 */
1918 alternatives = le64_to_cpu(ucode->alternatives);
1919 tmp = wanted_alternative;
1920 if (wanted_alternative > 63)
1921 wanted_alternative = 63;
1922 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1923 wanted_alternative--;
1924 if (wanted_alternative && wanted_alternative != tmp)
1925 IWL_WARN(priv,
1926 "uCode alternative %d not available, choosing %d\n",
1927 tmp, wanted_alternative);
1928
1929 priv->ucode_ver = le32_to_cpu(ucode->ver);
1930 pieces->build = le32_to_cpu(ucode->build);
1931 data = ucode->data;
1932
1933 len -= sizeof(*ucode);
1934
Johannes Berg704da532010-07-14 09:34:50 -07001935 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001936 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001937
1938 len -= sizeof(*tlv);
1939 tlv = (void *)data;
1940
1941 tlv_len = le32_to_cpu(tlv->length);
1942 tlv_type = le16_to_cpu(tlv->type);
1943 tlv_alt = le16_to_cpu(tlv->alternative);
1944 tlv_data = tlv->data;
1945
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001946 if (len < tlv_len) {
1947 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1948 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001949 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001950 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001951 len -= ALIGN(tlv_len, 4);
1952 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1953
1954 /*
1955 * Alternative 0 is always valid.
1956 *
1957 * Skip alternative TLVs that are not selected.
1958 */
1959 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1960 continue;
1961
1962 switch (tlv_type) {
1963 case IWL_UCODE_TLV_INST:
1964 pieces->inst = tlv_data;
1965 pieces->inst_size = tlv_len;
1966 break;
1967 case IWL_UCODE_TLV_DATA:
1968 pieces->data = tlv_data;
1969 pieces->data_size = tlv_len;
1970 break;
1971 case IWL_UCODE_TLV_INIT:
1972 pieces->init = tlv_data;
1973 pieces->init_size = tlv_len;
1974 break;
1975 case IWL_UCODE_TLV_INIT_DATA:
1976 pieces->init_data = tlv_data;
1977 pieces->init_data_size = tlv_len;
1978 break;
1979 case IWL_UCODE_TLV_BOOT:
1980 pieces->boot = tlv_data;
1981 pieces->boot_size = tlv_len;
1982 break;
1983 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001984 if (tlv_len != sizeof(u32))
1985 goto invalid_tlv_len;
1986 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001987 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001988 break;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001989 case IWL_UCODE_TLV_PAN:
1990 if (tlv_len)
1991 goto invalid_tlv_len;
1992 capa->pan = true;
1993 break;
Johannes Bergb2e640d42010-05-05 23:24:54 -07001994 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001995 if (tlv_len != sizeof(u32))
1996 goto invalid_tlv_len;
1997 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001998 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07001999 break;
2000 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002001 if (tlv_len != sizeof(u32))
2002 goto invalid_tlv_len;
2003 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002004 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002005 break;
2006 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07002007 if (tlv_len != sizeof(u32))
2008 goto invalid_tlv_len;
2009 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002010 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002011 break;
2012 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07002013 if (tlv_len != sizeof(u32))
2014 goto invalid_tlv_len;
2015 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002016 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002017 break;
2018 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002019 if (tlv_len != sizeof(u32))
2020 goto invalid_tlv_len;
2021 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002022 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002023 break;
2024 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07002025 if (tlv_len != sizeof(u32))
2026 goto invalid_tlv_len;
2027 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002028 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002029 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002030 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
2031 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07002032 goto invalid_tlv_len;
2033 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002034 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002035 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002036 if (tlv_len != sizeof(u32))
2037 goto invalid_tlv_len;
2038 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002039 le32_to_cpup((__le32 *)tlv_data);
2040 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002041 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002042 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07002043 break;
2044 }
2045 }
2046
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002047 if (len) {
2048 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
2049 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07002050 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002051 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07002052
Johannes Berg704da532010-07-14 09:34:50 -07002053 return 0;
2054
2055 invalid_tlv_len:
2056 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
2057 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
2058
2059 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002060}
2061
Johannes Bergb08dfd02010-01-29 11:54:56 -08002062/**
2063 * iwl_ucode_callback - callback when firmware was loaded
2064 *
2065 * If loaded successfully, copies the firmware into buffers
2066 * for the card to fetch (via DMA).
2067 */
2068static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
2069{
2070 struct iwl_priv *priv = context;
2071 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002072 int err;
2073 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002074 const unsigned int api_max = priv->cfg->ucode_api_max;
2075 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002076 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07002077 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002078 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002079 struct iwlagn_ucode_capabilities ucode_capa = {
2080 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002081 .standard_phy_calibration_size =
2082 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07002083 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002084
2085 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07002086
Johannes Bergb08dfd02010-01-29 11:54:56 -08002087 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07002088 if (priv->fw_index <= priv->cfg->ucode_api_max)
2089 IWL_ERR(priv,
2090 "request for firmware file '%s' failed.\n",
2091 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002092 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002093 }
2094
Johannes Bergb08dfd02010-01-29 11:54:56 -08002095 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
2096 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07002097
Johannes Berg22adba22010-04-28 12:09:14 -07002098 /* Make sure that we got at least the API version number */
2099 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002100 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08002101 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002102 }
2103
2104 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002105 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002106
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002107 if (ucode->ver)
2108 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
2109 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07002110 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
2111 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002112
2113 if (err)
2114 goto try_again;
2115
Reinette Chatrea0987a82008-12-02 12:14:06 -08002116 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002117 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07002118
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002119 /*
2120 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08002121 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002122 * on the API version read from firmware header from here on forward
2123 */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002124 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002125 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002126 "Driver supports v%u, firmware is v%u.\n",
2127 api_max, api_ver);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002128 goto try_again;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002129 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08002130
Reinette Chatrea0987a82008-12-02 12:14:06 -08002131 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08002132 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002133 "got v%u. New firmware can be obtained "
2134 "from http://www.intellinuxwireless.org.\n",
2135 api_max, api_ver);
2136
Johannes Berg3e4de762010-04-28 12:09:12 -07002137 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07002138 sprintf(buildstr, " build %u%s", build,
2139 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
2140 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07002141 else
2142 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08002143
Johannes Berg3e4de762010-04-28 12:09:12 -07002144 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002145 IWL_UCODE_MAJOR(priv->ucode_ver),
2146 IWL_UCODE_MINOR(priv->ucode_ver),
2147 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07002148 IWL_UCODE_SERIAL(priv->ucode_ver),
2149 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002150
Johannes Berg3e4de762010-04-28 12:09:12 -07002151 snprintf(priv->hw->wiphy->fw_version,
2152 sizeof(priv->hw->wiphy->fw_version),
2153 "%u.%u.%u.%u%s",
2154 IWL_UCODE_MAJOR(priv->ucode_ver),
2155 IWL_UCODE_MINOR(priv->ucode_ver),
2156 IWL_UCODE_API(priv->ucode_ver),
2157 IWL_UCODE_SERIAL(priv->ucode_ver),
2158 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07002159
Johannes Bergb08dfd02010-01-29 11:54:56 -08002160 /*
2161 * For any of the failures below (before allocating pci memory)
2162 * we will try to load a version with a smaller API -- maybe the
2163 * user just got a corrupted version of the latest API.
2164 */
2165
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002166 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2167 priv->ucode_ver);
2168 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
2169 pieces.inst_size);
2170 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
2171 pieces.data_size);
2172 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2173 pieces.init_size);
2174 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2175 pieces.init_data_size);
2176 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2177 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002178
2179 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002180 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2181 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2182 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002183 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002184 }
2185
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002186 if (pieces.data_size > priv->hw_params.max_data_size) {
2187 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2188 pieces.data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002189 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002190 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002191
2192 if (pieces.init_size > priv->hw_params.max_inst_size) {
2193 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2194 pieces.init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002195 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002196 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002197
2198 if (pieces.init_data_size > priv->hw_params.max_data_size) {
2199 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2200 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002201 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002202 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002203
2204 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2205 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2206 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002207 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002208 }
2209
2210 /* Allocate ucode buffers for card's bus-master loading ... */
2211
2212 /* Runtime instructions and 2 copies of data:
2213 * 1) unmodified from disk
2214 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002215 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002216 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002217
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002218 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002219 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002220
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002221 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002222 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002223
Zhu, Yi1f304e42009-01-23 13:45:22 -08002224 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2225 !priv->ucode_data_backup.v_addr)
2226 goto err_pci_alloc;
2227
Zhu Yib481de92007-09-25 17:54:57 -07002228 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002229 if (pieces.init_size && pieces.init_data_size) {
2230 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002231 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002232
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002233 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002234 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002235
2236 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2237 goto err_pci_alloc;
2238 }
Zhu Yib481de92007-09-25 17:54:57 -07002239
2240 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002241 if (pieces.boot_size) {
2242 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002243 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002244
Tomas Winkler90e759d2007-11-29 11:09:41 +08002245 if (!priv->ucode_boot.v_addr)
2246 goto err_pci_alloc;
2247 }
Zhu Yib481de92007-09-25 17:54:57 -07002248
Johannes Bergb2e640d42010-05-05 23:24:54 -07002249 /* Now that we can no longer fail, copy information */
2250
2251 /*
2252 * The (size - 16) / 12 formula is based on the information recorded
2253 * for each event, which is of mode 1 (including timestamp) for all
2254 * new microcodes that include this information.
2255 */
2256 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2257 if (pieces.init_evtlog_size)
2258 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2259 else
2260 priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size;
2261 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2262 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2263 if (pieces.inst_evtlog_size)
2264 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2265 else
2266 priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size;
2267 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2268
Johannes Bergece9c4e2010-08-23 10:46:49 +02002269 if (ucode_capa.pan) {
2270 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
Johannes Bergc10afb62010-08-23 10:46:43 +02002271 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
Johannes Bergece9c4e2010-08-23 10:46:49 +02002272 } else
2273 priv->sta_key_max_num = STA_KEY_MAX_NUM;
Johannes Bergc10afb62010-08-23 10:46:43 +02002274
Zhu Yib481de92007-09-25 17:54:57 -07002275 /* Copy images into buffers for card's bus-master reads ... */
2276
2277 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002278 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2279 pieces.inst_size);
2280 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002281
Tomas Winklere1623442009-01-27 14:27:56 -08002282 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002283 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2284
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002285 /*
2286 * Runtime data
2287 * NOTE: Copy into backup buffer will be done in iwl_up()
2288 */
2289 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2290 pieces.data_size);
2291 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2292 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002293
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002294 /* Initialization instructions */
2295 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002296 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002297 pieces.init_size);
2298 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002299 }
2300
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002301 /* Initialization data */
2302 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002303 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002304 pieces.init_data_size);
2305 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2306 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002307 }
2308
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002309 /* Bootstrap instructions */
2310 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2311 pieces.boot_size);
2312 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002313
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002314 /*
2315 * figure out the offset of chain noise reset and gain commands
2316 * base on the size of standard phy calibration commands table size
2317 */
2318 if (ucode_capa.standard_phy_calibration_size >
2319 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2320 ucode_capa.standard_phy_calibration_size =
2321 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2322
2323 priv->_agn.phy_calib_chain_noise_reset_cmd =
2324 ucode_capa.standard_phy_calibration_size;
2325 priv->_agn.phy_calib_chain_noise_gain_cmd =
2326 ucode_capa.standard_phy_calibration_size + 1;
2327
Johannes Bergb08dfd02010-01-29 11:54:56 -08002328 /**************************************************
2329 * This is still part of probe() in a sense...
2330 *
2331 * 9. Setup and register with mac80211 and debugfs
2332 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002333 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002334 if (err)
2335 goto out_unbind;
2336
2337 err = iwl_dbgfs_register(priv, DRV_NAME);
2338 if (err)
2339 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2340
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002341 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2342 &iwl_attribute_group);
2343 if (err) {
2344 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2345 goto out_unbind;
2346 }
2347
Zhu Yib481de92007-09-25 17:54:57 -07002348 /* We have our copies now, allow OS release its copies */
2349 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002350 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002351 return;
2352
2353 try_again:
2354 /* try next, if any */
2355 if (iwl_request_firmware(priv, false))
2356 goto out_unbind;
2357 release_firmware(ucode_raw);
2358 return;
Zhu Yib481de92007-09-25 17:54:57 -07002359
2360 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002361 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002362 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002363 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002364 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002365 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002366 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002367}
2368
Reinette Chatreb7a79402009-09-25 14:24:23 -07002369static const char *desc_lookup_text[] = {
2370 "OK",
2371 "FAIL",
2372 "BAD_PARAM",
2373 "BAD_CHECKSUM",
2374 "NMI_INTERRUPT_WDG",
2375 "SYSASSERT",
2376 "FATAL_ERROR",
2377 "BAD_COMMAND",
2378 "HW_ERROR_TUNE_LOCK",
2379 "HW_ERROR_TEMPERATURE",
2380 "ILLEGAL_CHAN_FREQ",
2381 "VCC_NOT_STABLE",
2382 "FH_ERROR",
2383 "NMI_INTERRUPT_HOST",
2384 "NMI_INTERRUPT_ACTION_PT",
2385 "NMI_INTERRUPT_UNKNOWN",
2386 "UCODE_VERSION_MISMATCH",
2387 "HW_ERROR_ABS_LOCK",
2388 "HW_ERROR_CAL_LOCK_FAIL",
2389 "NMI_INTERRUPT_INST_ACTION_PT",
2390 "NMI_INTERRUPT_DATA_ACTION_PT",
2391 "NMI_TRM_HW_ER",
2392 "NMI_INTERRUPT_TRM",
2393 "NMI_INTERRUPT_BREAK_POINT"
2394 "DEBUG_0",
2395 "DEBUG_1",
2396 "DEBUG_2",
2397 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002398};
2399
Jay Sternberg4b586452010-07-02 15:49:10 -07002400static struct { char *name; u8 num; } advanced_lookup[] = {
2401 { "NMI_INTERRUPT_WDG", 0x34 },
2402 { "SYSASSERT", 0x35 },
2403 { "UCODE_VERSION_MISMATCH", 0x37 },
2404 { "BAD_COMMAND", 0x38 },
2405 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2406 { "FATAL_ERROR", 0x3D },
2407 { "NMI_TRM_HW_ERR", 0x46 },
2408 { "NMI_INTERRUPT_TRM", 0x4C },
2409 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2410 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2411 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2412 { "NMI_INTERRUPT_HOST", 0x66 },
2413 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2414 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2415 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2416 { "ADVANCED_SYSASSERT", 0 },
2417};
2418
2419static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002420{
Jay Sternberg4b586452010-07-02 15:49:10 -07002421 int i;
2422 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002423
Jay Sternberg4b586452010-07-02 15:49:10 -07002424 if (num < max)
2425 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002426
Jay Sternberg4b586452010-07-02 15:49:10 -07002427 max = ARRAY_SIZE(advanced_lookup) - 1;
2428 for (i = 0; i < max; i++) {
2429 if (advanced_lookup[i].num == num)
2430 break;;
2431 }
2432 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002433}
2434
2435#define ERROR_START_OFFSET (1 * sizeof(u32))
2436#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2437
2438void iwl_dump_nic_error_log(struct iwl_priv *priv)
2439{
2440 u32 data2, line;
2441 u32 desc, time, count, base, data1;
2442 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002443 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002444
Johannes Bergb2e640d42010-05-05 23:24:54 -07002445 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002446 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002447 if (!base)
2448 base = priv->_agn.init_errlog_ptr;
2449 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002450 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002451 if (!base)
2452 base = priv->_agn.inst_errlog_ptr;
2453 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002454
2455 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002456 IWL_ERR(priv,
2457 "Not valid error log pointer 0x%08X for %s uCode\n",
2458 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002459 return;
2460 }
2461
2462 count = iwl_read_targ_mem(priv, base);
2463
2464 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2465 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2466 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2467 priv->status, count);
2468 }
2469
2470 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002471 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002472 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2473 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2474 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2475 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2476 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2477 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2478 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2479 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002480 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002481
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002482 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2483 blink1, blink2, ilink1, ilink2);
2484
Jay Sternberg87563712010-06-14 14:40:40 -07002485 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002486 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002487 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002488 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002489 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2490 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2491 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002492}
2493
2494#define EVENT_START_OFFSET (4 * sizeof(u32))
2495
2496/**
2497 * iwl_print_event_log - Dump error event log to syslog
2498 *
2499 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002500static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2501 u32 num_events, u32 mode,
2502 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002503{
2504 u32 i;
2505 u32 base; /* SRAM byte address of event log header */
2506 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2507 u32 ptr; /* SRAM byte address of log data */
2508 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002509 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002510
2511 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002512 return pos;
Johannes Bergb2e640d42010-05-05 23:24:54 -07002513
2514 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002515 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002516 if (!base)
2517 base = priv->_agn.init_evtlog_ptr;
2518 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002519 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002520 if (!base)
2521 base = priv->_agn.inst_evtlog_ptr;
2522 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002523
2524 if (mode == 0)
2525 event_size = 2 * sizeof(u32);
2526 else
2527 event_size = 3 * sizeof(u32);
2528
2529 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2530
Ben Cahille5854472009-11-06 14:52:58 -08002531 /* Make sure device is powered up for SRAM reads */
2532 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2533 iwl_grab_nic_access(priv);
2534
2535 /* Set starting address; reads will auto-increment */
2536 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2537 rmb();
2538
Reinette Chatreb7a79402009-09-25 14:24:23 -07002539 /* "time" is actually "data" for mode 0 (no timestamp).
2540 * place event id # at far right for easier visual parsing. */
2541 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002542 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2543 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002544 if (mode == 0) {
2545 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002546 if (bufsz) {
2547 pos += scnprintf(*buf + pos, bufsz - pos,
2548 "EVT_LOG:0x%08x:%04u\n",
2549 time, ev);
2550 } else {
2551 trace_iwlwifi_dev_ucode_event(priv, 0,
2552 time, ev);
2553 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2554 time, ev);
2555 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002556 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002557 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002558 if (bufsz) {
2559 pos += scnprintf(*buf + pos, bufsz - pos,
2560 "EVT_LOGT:%010u:0x%08x:%04u\n",
2561 time, data, ev);
2562 } else {
2563 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002564 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002565 trace_iwlwifi_dev_ucode_event(priv, time,
2566 data, ev);
2567 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002568 }
2569 }
Ben Cahille5854472009-11-06 14:52:58 -08002570
2571 /* Allow device to power down */
2572 iwl_release_nic_access(priv);
2573 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002574 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002575}
2576
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002577/**
2578 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2579 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002580static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2581 u32 num_wraps, u32 next_entry,
2582 u32 size, u32 mode,
2583 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002584{
2585 /*
2586 * display the newest DEFAULT_LOG_ENTRIES entries
2587 * i.e the entries just before the next ont that uCode would fill.
2588 */
2589 if (num_wraps) {
2590 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002591 pos = iwl_print_event_log(priv,
2592 capacity - (size - next_entry),
2593 size - next_entry, mode,
2594 pos, buf, bufsz);
2595 pos = iwl_print_event_log(priv, 0,
2596 next_entry, mode,
2597 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002598 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002599 pos = iwl_print_event_log(priv, next_entry - size,
2600 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002601 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002602 if (next_entry < size) {
2603 pos = iwl_print_event_log(priv, 0, next_entry,
2604 mode, pos, buf, bufsz);
2605 } else {
2606 pos = iwl_print_event_log(priv, next_entry - size,
2607 size, mode, pos, buf, bufsz);
2608 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002609 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002610 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002611}
2612
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002613#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2614
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002615int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2616 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002617{
2618 u32 base; /* SRAM byte address of event log header */
2619 u32 capacity; /* event log capacity in # entries */
2620 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2621 u32 num_wraps; /* # times uCode wrapped to top of log */
2622 u32 next_entry; /* index of next entry to be written by uCode */
2623 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d42010-05-05 23:24:54 -07002624 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002625 int pos = 0;
2626 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002627
Johannes Bergb2e640d42010-05-05 23:24:54 -07002628 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002629 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002630 logsize = priv->_agn.init_evtlog_size;
2631 if (!base)
2632 base = priv->_agn.init_evtlog_ptr;
2633 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002634 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d42010-05-05 23:24:54 -07002635 logsize = priv->_agn.inst_evtlog_size;
2636 if (!base)
2637 base = priv->_agn.inst_evtlog_ptr;
2638 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002639
2640 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002641 IWL_ERR(priv,
2642 "Invalid event log pointer 0x%08X for %s uCode\n",
2643 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002644 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002645 }
2646
2647 /* event log header */
2648 capacity = iwl_read_targ_mem(priv, base);
2649 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2650 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2651 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2652
Johannes Bergb2e640d42010-05-05 23:24:54 -07002653 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002654 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d42010-05-05 23:24:54 -07002655 capacity, logsize);
2656 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002657 }
2658
Johannes Bergb2e640d42010-05-05 23:24:54 -07002659 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002660 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d42010-05-05 23:24:54 -07002661 next_entry, logsize);
2662 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002663 }
2664
Reinette Chatreb7a79402009-09-25 14:24:23 -07002665 size = num_wraps ? capacity : next_entry;
2666
2667 /* bail out if nothing in log */
2668 if (size == 0) {
2669 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002670 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002671 }
2672
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002673 /* enable/disable bt channel announcement */
2674 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2675
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002676#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002677 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002678 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2679 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2680#else
2681 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2682 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002683#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002684 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2685 size);
2686
2687#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002688 if (display) {
2689 if (full_log)
2690 bufsz = capacity * 48;
2691 else
2692 bufsz = size * 48;
2693 *buf = kmalloc(bufsz, GFP_KERNEL);
2694 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002695 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002696 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002697 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2698 /*
2699 * if uCode has wrapped back to top of log,
2700 * start at the oldest entry,
2701 * i.e the next one that uCode would fill.
2702 */
2703 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002704 pos = iwl_print_event_log(priv, next_entry,
2705 capacity - next_entry, mode,
2706 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002707 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002708 pos = iwl_print_event_log(priv, 0,
2709 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002710 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002711 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2712 next_entry, size, mode,
2713 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002714#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002715 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2716 next_entry, size, mode,
2717 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002718#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002719 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002720}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002721
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002722static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2723{
2724 struct iwl_ct_kill_config cmd;
2725 struct iwl_ct_kill_throttling_config adv_cmd;
2726 unsigned long flags;
2727 int ret = 0;
2728
2729 spin_lock_irqsave(&priv->lock, flags);
2730 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2731 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2732 spin_unlock_irqrestore(&priv->lock, flags);
2733 priv->thermal_throttle.ct_kill_toggle = false;
2734
2735 if (priv->cfg->support_ct_kill_exit) {
2736 adv_cmd.critical_temperature_enter =
2737 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2738 adv_cmd.critical_temperature_exit =
2739 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2740
2741 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2742 sizeof(adv_cmd), &adv_cmd);
2743 if (ret)
2744 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2745 else
2746 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2747 "succeeded, "
2748 "critical temperature enter is %d,"
2749 "exit is %d\n",
2750 priv->hw_params.ct_kill_threshold,
2751 priv->hw_params.ct_kill_exit_threshold);
2752 } else {
2753 cmd.critical_temperature_R =
2754 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2755
2756 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2757 sizeof(cmd), &cmd);
2758 if (ret)
2759 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2760 else
2761 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2762 "succeeded, "
2763 "critical temperature is %d\n",
2764 priv->hw_params.ct_kill_threshold);
2765 }
2766}
2767
Zhu Yib481de92007-09-25 17:54:57 -07002768/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002769 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002770 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002771 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002772 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002773static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002774{
Tomas Winkler57aab752008-04-14 21:16:03 -07002775 int ret = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02002776 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Zhu Yib481de92007-09-25 17:54:57 -07002777
Tomas Winklere1623442009-01-27 14:27:56 -08002778 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002779
2780 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2781 /* We had an error bringing up the hardware, so take it
2782 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002783 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002784 goto restart;
2785 }
2786
2787 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2788 * This is a paranoid check, because we would not have gotten the
2789 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002790 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002791 /* Runtime instruction load was bad;
2792 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002793 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002794 goto restart;
2795 }
2796
Tomas Winkler57aab752008-04-14 21:16:03 -07002797 ret = priv->cfg->ops->lib->alive_notify(priv);
2798 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002799 IWL_WARN(priv,
2800 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002801 goto restart;
2802 }
2803
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002804 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002805 set_bit(STATUS_ALIVE, &priv->status);
2806
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002807 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2808 /* Enable timer to monitor the driver queues */
2809 mod_timer(&priv->monitor_recover,
2810 jiffies +
2811 msecs_to_jiffies(priv->cfg->monitor_recover_period));
2812 }
2813
Tomas Winklerfee12472008-04-03 16:05:21 -07002814 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002815 return;
2816
Johannes Berg36d68252008-05-15 12:55:26 +02002817 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002818
Johannes Berg470ab2d2010-01-21 11:23:30 -08002819 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002820
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002821 /* Configure Tx antenna selection based on H/W config */
2822 if (priv->cfg->ops->hcmd->set_tx_ant)
2823 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2824
Johannes Berg246ed352010-08-23 10:46:32 +02002825 if (iwl_is_associated_ctx(ctx)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002826 struct iwl_rxon_cmd *active_rxon =
Johannes Berg246ed352010-08-23 10:46:32 +02002827 (struct iwl_rxon_cmd *)&ctx->active;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002828 /* apply any changes in staging */
Johannes Berg246ed352010-08-23 10:46:32 +02002829 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002830 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2831 } else {
2832 /* Initialize our rx_config data */
Johannes Berg1dda6d22010-04-29 04:43:06 -07002833 iwl_connection_init_rx_config(priv, NULL);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002834
2835 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02002836 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002837 }
2838
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002839 if (!priv->cfg->advanced_bt_coexist) {
2840 /* Configure Bluetooth device coexistence support */
2841 priv->cfg->ops->hcmd->send_bt_config(priv);
2842 }
Zhu Yib481de92007-09-25 17:54:57 -07002843
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002844 iwl_reset_run_time_calib(priv);
2845
Zhu Yib481de92007-09-25 17:54:57 -07002846 /* Configure the adapter for unassociated operation */
Johannes Berg246ed352010-08-23 10:46:32 +02002847 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002848
2849 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002850 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002851
Johannes Berge932a602009-10-02 13:44:03 -07002852 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002853
Tomas Winklere1623442009-01-27 14:27:56 -08002854 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002855 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002856 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002857
Johannes Berge312c242009-08-07 15:41:51 -07002858 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002859 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2860
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002861
Zhu Yib481de92007-09-25 17:54:57 -07002862 return;
2863
2864 restart:
2865 queue_work(priv->workqueue, &priv->restart);
2866}
2867
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002868static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002869
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002870static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002871{
2872 unsigned long flags;
2873 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002874
Tomas Winklere1623442009-01-27 14:27:56 -08002875 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002876
Zhu Yib481de92007-09-25 17:54:57 -07002877 if (!exit_pending)
2878 set_bit(STATUS_EXIT_PENDING, &priv->status);
2879
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002880 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2881 * to prevent rearm timer */
2882 if (priv->cfg->ops->lib->recover_from_tx_stall)
2883 del_timer_sync(&priv->monitor_recover);
2884
Johannes Bergdcef7322010-08-27 08:55:52 -07002885 iwl_clear_ucode_stations(priv, NULL);
Johannes Berga194e322010-08-27 08:53:46 -07002886 iwl_dealloc_bcast_stations(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002887 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002888
Johannes Berga1174132010-08-23 07:56:59 -07002889 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002890 priv->bt_status = 0;
Wey-Yi Guya4b96cc2010-08-23 07:57:08 -07002891 priv->bt_traffic_load = priv->cfg->bt_init_traffic_load;
Johannes Berga1174132010-08-23 07:56:59 -07002892 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002893 priv->bt_full_concurrent = false;
2894 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002895
Zhu Yib481de92007-09-25 17:54:57 -07002896 /* Unblock any waiting calls */
2897 wake_up_interruptible_all(&priv->wait_command_queue);
2898
Zhu Yib481de92007-09-25 17:54:57 -07002899 /* Wipe out the EXIT_PENDING status bit if we are not actually
2900 * exiting the module */
2901 if (!exit_pending)
2902 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2903
2904 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002905 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002906
2907 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002908 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002909 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002910 spin_unlock_irqrestore(&priv->lock, flags);
2911 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002912
2913 if (priv->mac80211_registered)
2914 ieee80211_stop_queues(priv->hw);
2915
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002916 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002917 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002918 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002919 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2920 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002921 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2922 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002923 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2924 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002925 goto exit;
2926 }
2927
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002928 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002929 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002930 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2931 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002932 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2933 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002934 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002935 STATUS_FW_ERROR |
2936 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2937 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002938
Mohamed Abbasef850d72009-05-22 11:01:50 -07002939 /* device going down, Stop using ICT table */
2940 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002941
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002942 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002943 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002944
Ben Cahill309e7312009-11-06 14:53:03 -08002945 /* Power-down device's busmaster DMA clocks */
2946 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002947 udelay(5);
2948
Ben Cahill309e7312009-11-06 14:53:03 -08002949 /* Make sure (redundant) we've released our request to stay awake */
2950 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2951
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002952 /* Stop the device, and put it in low power state */
2953 priv->cfg->ops->lib->apm_ops.stop(priv);
2954
Zhu Yib481de92007-09-25 17:54:57 -07002955 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002956 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002957
2958 if (priv->ibss_beacon)
2959 dev_kfree_skb(priv->ibss_beacon);
2960 priv->ibss_beacon = NULL;
2961
2962 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002963 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002964}
2965
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002966static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002967{
2968 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002969 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002970 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002971
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002972 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002973}
2974
Mohamed Abbas086ed112009-05-22 11:01:54 -07002975#define HW_READY_TIMEOUT (50)
2976
2977static int iwl_set_hw_ready(struct iwl_priv *priv)
2978{
2979 int ret = 0;
2980
2981 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2982 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2983
2984 /* See if we got it */
2985 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2986 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2987 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2988 HW_READY_TIMEOUT);
2989 if (ret != -ETIMEDOUT)
2990 priv->hw_ready = true;
2991 else
2992 priv->hw_ready = false;
2993
2994 IWL_DEBUG_INFO(priv, "hardware %s\n",
2995 (priv->hw_ready == 1) ? "ready" : "not ready");
2996 return ret;
2997}
2998
2999static int iwl_prepare_card_hw(struct iwl_priv *priv)
3000{
3001 int ret = 0;
3002
Frans Pop91dd6c22010-03-24 14:19:58 -07003003 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07003004
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07003005 ret = iwl_set_hw_ready(priv);
3006 if (priv->hw_ready)
3007 return ret;
3008
3009 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07003010 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
3011 CSR_HW_IF_CONFIG_REG_PREPARE);
3012
3013 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
3014 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
3015 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
3016
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07003017 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07003018 if (ret != -ETIMEDOUT)
3019 iwl_set_hw_ready(priv);
3020
3021 return ret;
3022}
3023
Zhu Yib481de92007-09-25 17:54:57 -07003024#define MAX_HW_RESTARTS 5
3025
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003026static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003027{
Johannes Berga194e322010-08-27 08:53:46 -07003028 struct iwl_rxon_context *ctx;
Tomas Winkler57aab752008-04-14 21:16:03 -07003029 int i;
3030 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003031
3032 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003033 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003034 return -EIO;
3035 }
3036
Reinette Chatree903fbd2008-01-30 22:05:15 -08003037 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003038 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08003039 return -EIO;
3040 }
3041
Johannes Berga194e322010-08-27 08:53:46 -07003042 for_each_context(priv, ctx) {
3043 ret = iwl_alloc_bcast_station(priv, ctx, true);
3044 if (ret) {
3045 iwl_dealloc_bcast_stations(priv);
3046 return ret;
3047 }
3048 }
Johannes Berg2c810cc2010-04-29 00:53:29 -07003049
Mohamed Abbas086ed112009-05-22 11:01:54 -07003050 iwl_prepare_card_hw(priv);
3051
3052 if (!priv->hw_ready) {
3053 IWL_WARN(priv, "Exit HW not ready\n");
3054 return -EIO;
3055 }
3056
Zhu Yie655b9f2008-01-24 02:19:38 -08003057 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08003058 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08003059 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003060 else
Zhu Yie655b9f2008-01-24 02:19:38 -08003061 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003062
Tomas Winklerc1842d62008-08-04 16:00:43 +08003063 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02003064 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
3065
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003066 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02003067 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08003068 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003069 }
3070
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003071 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003072
Johannes Berg13bb9482010-08-23 10:46:33 +02003073 /* must be initialised before iwl_hw_nic_init */
Johannes Berg751ca302010-08-23 10:46:34 +02003074 if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))
3075 priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM;
3076 else
3077 priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM;
Johannes Berg13bb9482010-08-23 10:46:33 +02003078
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003079 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003080 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003081 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07003082 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003083 }
3084
3085 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003086 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3087 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003088 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3089
3090 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003091 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003092 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003093
3094 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003095 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3096 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003097
3098 /* Copy original ucode data image from disk into backup cache.
3099 * This will be used to initialize the on-board processor's
3100 * data SRAM for a clean start when the runtime program first loads. */
3101 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08003102 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003103
Zhu Yib481de92007-09-25 17:54:57 -07003104 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3105
Zhu Yib481de92007-09-25 17:54:57 -07003106 /* load bootstrap state machine,
3107 * load bootstrap program into processor's memory,
3108 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003109 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003110
Tomas Winkler57aab752008-04-14 21:16:03 -07003111 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003112 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
3113 ret);
Zhu Yib481de92007-09-25 17:54:57 -07003114 continue;
3115 }
3116
3117 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003118 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003119
Tomas Winklere1623442009-01-27 14:27:56 -08003120 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003121
3122 return 0;
3123 }
3124
3125 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003126 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08003127 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003128
3129 /* tried to restart and config the device for as long as our
3130 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003131 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003132 return -EIO;
3133}
3134
3135
3136/*****************************************************************************
3137 *
3138 * Workqueue callbacks
3139 *
3140 *****************************************************************************/
3141
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003142static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003143{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003144 struct iwl_priv *priv =
3145 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003146
3147 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3148 return;
3149
3150 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003151 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003152 mutex_unlock(&priv->mutex);
3153}
3154
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003155static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003156{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003157 struct iwl_priv *priv =
3158 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003159
3160 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3161 return;
3162
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003163 /* enable dram interrupt */
3164 iwl_reset_ict(priv);
3165
Zhu Yib481de92007-09-25 17:54:57 -07003166 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003167 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003168 mutex_unlock(&priv->mutex);
3169}
3170
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003171static void iwl_bg_run_time_calib_work(struct work_struct *work)
3172{
3173 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3174 run_time_calib_work);
3175
3176 mutex_lock(&priv->mutex);
3177
3178 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3179 test_bit(STATUS_SCANNING, &priv->status)) {
3180 mutex_unlock(&priv->mutex);
3181 return;
3182 }
3183
3184 if (priv->start_calib) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003185 if (priv->cfg->bt_statistics) {
3186 iwl_chain_noise_calibration(priv,
3187 (void *)&priv->_agn.statistics_bt);
3188 iwl_sensitivity_calibration(priv,
3189 (void *)&priv->_agn.statistics_bt);
3190 } else {
3191 iwl_chain_noise_calibration(priv,
3192 (void *)&priv->_agn.statistics);
3193 iwl_sensitivity_calibration(priv,
3194 (void *)&priv->_agn.statistics);
3195 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003196 }
3197
3198 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003199}
3200
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003201static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003202{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003203 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003204
3205 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3206 return;
3207
Johannes Berg19cc1082009-05-08 13:44:36 -07003208 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Johannes Berg8bd413e2010-08-23 10:46:40 +02003209 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003210 bool bt_sco, bt_full_concurrent;
3211 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003212 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003213 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003214
Johannes Berg19cc1082009-05-08 13:44:36 -07003215 mutex_lock(&priv->mutex);
Johannes Berg8bd413e2010-08-23 10:46:40 +02003216 for_each_context(priv, ctx)
3217 ctx->vif = NULL;
Johannes Berg19cc1082009-05-08 13:44:36 -07003218 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003219
3220 /*
3221 * __iwl_down() will clear the BT status variables,
3222 * which is correct, but when we restart we really
3223 * want to keep them so restore them afterwards.
3224 *
3225 * The restart process will later pick them up and
3226 * re-configure the hw when we reconfigure the BT
3227 * command.
3228 */
3229 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003230 bt_full_concurrent = priv->bt_full_concurrent;
3231 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003232 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003233 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003234
Johannes Berga1174132010-08-23 07:56:59 -07003235 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003236
3237 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003238 priv->bt_full_concurrent = bt_full_concurrent;
3239 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003240 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003241 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003242
Johannes Berg19cc1082009-05-08 13:44:36 -07003243 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003244 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003245 ieee80211_restart_hw(priv->hw);
3246 } else {
3247 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003248
3249 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3250 return;
3251
3252 mutex_lock(&priv->mutex);
3253 __iwl_up(priv);
3254 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003255 }
Zhu Yib481de92007-09-25 17:54:57 -07003256}
3257
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003258static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003259{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003260 struct iwl_priv *priv =
3261 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003262
3263 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3264 return;
3265
3266 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003267 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003268 mutex_unlock(&priv->mutex);
3269}
3270
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003271#define IWL_DELAY_NEXT_SCAN (HZ*2)
3272
Johannes Berg1dda6d22010-04-29 04:43:06 -07003273void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003274{
Johannes Berg246ed352010-08-23 10:46:32 +02003275 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07003276 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003277 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003278
Johannes Berg1dda6d22010-04-29 04:43:06 -07003279 if (!vif || !priv->is_open)
3280 return;
3281
Johannes Berg246ed352010-08-23 10:46:32 +02003282 ctx = iwl_rxon_ctx_from_vif(vif);
3283
Johannes Berg1dda6d22010-04-29 04:43:06 -07003284 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003285 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003286 return;
3287 }
3288
Zhu Yib481de92007-09-25 17:54:57 -07003289 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3290 return;
3291
Tomas Winkler2a421b92008-06-12 09:47:10 +08003292 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003293
Zhu Yib481de92007-09-25 17:54:57 -07003294 conf = ieee80211_get_hw_conf(priv->hw);
3295
Johannes Berg246ed352010-08-23 10:46:32 +02003296 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3297 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003298
Johannes Berg948f5a22010-07-29 07:07:51 -07003299 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003300 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003301 IWL_WARN(priv, "RXON timing - "
Zhu Yib481de92007-09-25 17:54:57 -07003302 "Attempting to continue.\n");
3303
Johannes Berg246ed352010-08-23 10:46:32 +02003304 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003305
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08003306 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03003307
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003308 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003309 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003310
Johannes Berg246ed352010-08-23 10:46:32 +02003311 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003312
Tomas Winklere1623442009-01-27 14:27:56 -08003313 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003314 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003315
Johannes Bergc213d742010-05-06 12:21:40 -07003316 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003317 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003318 else
Johannes Berg246ed352010-08-23 10:46:32 +02003319 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003320
Johannes Berg246ed352010-08-23 10:46:32 +02003321 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003322 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003323 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003324 else
Johannes Berg246ed352010-08-23 10:46:32 +02003325 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003326 }
3327
Johannes Berg246ed352010-08-23 10:46:32 +02003328 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003329
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003330 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg246ed352010-08-23 10:46:32 +02003331 vif->bss_conf.aid, ctx->active.bssid_addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003332
Johannes Berg1dda6d22010-04-29 04:43:06 -07003333 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003334 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07003335 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003336 case NL80211_IFTYPE_ADHOC:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003337 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003338 break;
Zhu Yib481de92007-09-25 17:54:57 -07003339 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003340 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003341 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003342 break;
3343 }
3344
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08003345 /* the chain noise calibration will enabled PM upon completion
3346 * If chain noise has already been run, then we need to enable
3347 * power management here */
3348 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07003349 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003350
3351 /* Enable Rx differential gain and sensitivity calibrations */
3352 iwl_chain_noise_reset(priv);
3353 priv->start_calib = 1;
3354
Reinette Chatre508e32e2008-04-14 21:16:13 -07003355}
3356
Zhu Yib481de92007-09-25 17:54:57 -07003357/*****************************************************************************
3358 *
3359 * mac80211 entry point functions
3360 *
3361 *****************************************************************************/
3362
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003363#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08003364
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003365/*
3366 * Not a mac80211 entry point function, but it fits in with all the
3367 * other mac80211 functions grouped here.
3368 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003369static int iwl_mac_setup_register(struct iwl_priv *priv,
3370 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003371{
3372 int ret;
3373 struct ieee80211_hw *hw = priv->hw;
3374 hw->rate_control_algorithm = "iwl-agn-rs";
3375
3376 /* Tell mac80211 our characteristics */
3377 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003378 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berg2491fa42010-08-23 10:46:52 +02003379 IEEE80211_HW_NEED_DTIM_PERIOD |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003380 IEEE80211_HW_SPECTRUM_MGMT;
3381
3382 if (!priv->cfg->broken_powersave)
3383 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3384 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3385
Johannes Bergba37a3d2009-12-10 14:37:27 -08003386 if (priv->cfg->sku & IWL_SKU_N)
3387 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3388 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3389
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003390 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003391 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3392
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003393 hw->wiphy->interface_modes =
3394 BIT(NL80211_IFTYPE_STATION) |
3395 BIT(NL80211_IFTYPE_ADHOC);
3396
Reinette Chatref6c8f152010-03-12 11:13:26 -08003397 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003398 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003399
3400 /*
3401 * For now, disable PS by default because it affects
3402 * RX performance significantly.
3403 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003404 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003405
Reinette Chatre1382c712010-02-25 10:02:19 -08003406 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003407 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003408 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003409
3410 /* Default value; 4 EDCA QOS priorities */
3411 hw->queues = 4;
3412
3413 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3414
3415 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3416 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3417 &priv->bands[IEEE80211_BAND_2GHZ];
3418 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3419 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3420 &priv->bands[IEEE80211_BAND_5GHZ];
3421
3422 ret = ieee80211_register_hw(priv->hw);
3423 if (ret) {
3424 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3425 return ret;
3426 }
3427 priv->mac80211_registered = 1;
3428
3429 return 0;
3430}
3431
3432
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003433static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003434{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003435 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003436 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003437
Tomas Winklere1623442009-01-27 14:27:56 -08003438 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003439
3440 /* we should be verifying the device is ready to be opened */
3441 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003442 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003443 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003444
Zhu Yie655b9f2008-01-24 02:19:38 -08003445 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003446 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003447
Tomas Winklerc1842d62008-08-04 16:00:43 +08003448 if (iwl_is_rfkill(priv))
3449 goto out;
3450
Tomas Winklere1623442009-01-27 14:27:56 -08003451 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003452
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003453 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08003454 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003455 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3456 test_bit(STATUS_READY, &priv->status),
3457 UCODE_READY_TIMEOUT);
3458 if (!ret) {
3459 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003460 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003461 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003462 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003463 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003464 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003465
Johannes Berge932a602009-10-02 13:44:03 -07003466 iwl_led_start(priv);
3467
Tomas Winklerc1842d62008-08-04 16:00:43 +08003468out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003469 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003470 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003471 return 0;
3472}
3473
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003474static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003475{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003476 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003477
Tomas Winklere1623442009-01-27 14:27:56 -08003478 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003479
Johannes Berg19cc1082009-05-08 13:44:36 -07003480 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003481 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003482
Zhu Yib481de92007-09-25 17:54:57 -07003483 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003484
Wey-Yi Guy5bddf542009-08-21 13:34:25 -07003485 if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003486 /* stop mac, cancel any scan request and clear
3487 * RXON_FILTER_ASSOC_MSK BIT
3488 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003489 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003490 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003491 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003492 }
3493
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003494 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003495
3496 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003497
3498 /* enable interrupts again in order to receive rfkill changes */
3499 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3500 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003501
Tomas Winklere1623442009-01-27 14:27:56 -08003502 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003503}
3504
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003505static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003506{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003507 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003508
Tomas Winklere1623442009-01-27 14:27:56 -08003509 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003510
Tomas Winklere1623442009-01-27 14:27:56 -08003511 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003512 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003513
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003514 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003515 dev_kfree_skb_any(skb);
3516
Tomas Winklere1623442009-01-27 14:27:56 -08003517 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003518 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003519}
3520
Johannes Berg1dda6d22010-04-29 04:43:06 -07003521void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003522{
Johannes Berg246ed352010-08-23 10:46:32 +02003523 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003524 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003525
Johannes Berg76d04812010-08-23 10:46:47 +02003526 lockdep_assert_held(&priv->mutex);
3527
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003528 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003529 return;
3530
3531 /* The following should be done only at AP bring up */
Johannes Berg246ed352010-08-23 10:46:32 +02003532 if (!iwl_is_associated_ctx(ctx)) {
Zhu Yib481de92007-09-25 17:54:57 -07003533
3534 /* RXON - unassoc (to set timing command) */
Johannes Berg246ed352010-08-23 10:46:32 +02003535 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3536 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003537
3538 /* RXON Timing */
Johannes Berg948f5a22010-07-29 07:07:51 -07003539 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003540 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003541 IWL_WARN(priv, "RXON timing failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003542 "Attempting to continue.\n");
3543
Daniel C Halperinf513dff2009-11-13 11:56:34 -08003544 /* AP has all antennas */
3545 priv->chain_noise_data.active_chains =
3546 priv->hw_params.valid_rx_ant;
3547 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003548 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003549 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003550
Johannes Berg246ed352010-08-23 10:46:32 +02003551 ctx->staging.assoc_id = 0;
Johannes Berg1dda6d22010-04-29 04:43:06 -07003552
Johannes Bergc213d742010-05-06 12:21:40 -07003553 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003554 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003555 RXON_FLG_SHORT_PREAMBLE_MSK;
3556 else
Johannes Berg246ed352010-08-23 10:46:32 +02003557 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003558 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3559
Johannes Berg246ed352010-08-23 10:46:32 +02003560 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003561 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003562 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003563 RXON_FLG_SHORT_SLOT_MSK;
3564 else
Johannes Berg246ed352010-08-23 10:46:32 +02003565 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003566 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003567 }
Johannes Berg08abc532010-08-23 10:46:53 +02003568 /* need to send beacon cmd before committing assoc RXON! */
3569 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003570 /* restore RXON assoc */
Johannes Berg246ed352010-08-23 10:46:32 +02003571 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
3572 iwlcore_commit_rxon(priv, ctx);
Zhu Yie1493de2007-09-27 11:27:32 +08003573 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003574 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003575
3576 /* FIXME - we need to add code here to detect a totally new
3577 * configuration, reset the AP, unassoc, rxon timing, assoc,
3578 * clear sta table, add BCAST sta... */
3579}
3580
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003581static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003582 struct ieee80211_vif *vif,
3583 struct ieee80211_key_conf *keyconf,
3584 struct ieee80211_sta *sta,
3585 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003586{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003587
Tomas Winkler9f586712008-11-12 13:14:05 -08003588 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003589 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3590
Tomas Winklere1623442009-01-27 14:27:56 -08003591 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003592
Johannes Berga194e322010-08-27 08:53:46 -07003593 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003594 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003595
Tomas Winklere1623442009-01-27 14:27:56 -08003596 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003597}
3598
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003599static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003600 struct ieee80211_vif *vif,
3601 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003602 struct ieee80211_key_conf *key)
3603{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003604 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003605 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergc10afb62010-08-23 10:46:43 +02003606 struct iwl_rxon_context *ctx = vif_priv->ctx;
Winkler, Tomas42986792009-01-19 15:30:22 -08003607 int ret;
3608 u8 sta_id;
3609 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003610
Tomas Winklere1623442009-01-27 14:27:56 -08003611 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003612
Tomas Winkler90e8e422009-06-19 13:52:42 -07003613 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003614 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003615 return -EOPNOTSUPP;
3616 }
Zhu Yib481de92007-09-25 17:54:57 -07003617
Johannes Berga194e322010-08-27 08:53:46 -07003618 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
Johannes Berg0af8bca2010-04-30 14:08:00 -07003619 if (sta_id == IWL_INVALID_STATION)
3620 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003621
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003622 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003623 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003624
Johannes Berga90178fa2010-03-30 02:44:16 -07003625 /*
3626 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003627 * so far, we are in legacy wep mode (group key only), otherwise we are
3628 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003629 * In legacy wep mode, we use another host command to the uCode.
3630 */
Johannes Berg97359d12010-08-10 09:46:38 +02003631 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3632 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003633 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003634 if (cmd == SET_KEY)
Johannes Bergc10afb62010-08-23 10:46:43 +02003635 is_default_wep_key = !ctx->key_mapping_keys;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003636 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003637 is_default_wep_key =
3638 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003639 }
mabbas052c4b92007-10-25 17:15:43 +08003640
Zhu Yib481de92007-09-25 17:54:57 -07003641 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003642 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003643 if (is_default_wep_key)
Johannes Berg2995baf2010-08-23 10:46:42 +02003644 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003645 else
Johannes Berga194e322010-08-27 08:53:46 -07003646 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3647 key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003648
Tomas Winklere1623442009-01-27 14:27:56 -08003649 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003650 break;
3651 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003652 if (is_default_wep_key)
Johannes Bergc10afb62010-08-23 10:46:43 +02003653 ret = iwl_remove_default_wep_key(priv, ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003654 else
Johannes Bergc10afb62010-08-23 10:46:43 +02003655 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003656
Tomas Winklere1623442009-01-27 14:27:56 -08003657 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003658 break;
3659 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003660 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003661 }
3662
Johannes Berg72e15d72010-02-19 11:42:32 -08003663 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003664 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003665
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003666 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003667}
3668
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003669static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01003670 struct ieee80211_vif *vif,
Johannes Berg832f47e2010-04-29 04:43:07 -07003671 enum ieee80211_ampdu_mlme_action action,
3672 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003673{
3674 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003675 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003676
Tomas Winklere1623442009-01-27 14:27:56 -08003677 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003678 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003679
3680 if (!(priv->cfg->sku & IWL_SKU_N))
3681 return -EACCES;
3682
Johannes Berg4620fef2010-06-16 03:30:27 -07003683 mutex_lock(&priv->mutex);
3684
Tomas Winklerd783b062008-07-18 13:53:02 +08003685 switch (action) {
3686 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003687 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003688 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3689 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003690 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003691 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003692 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003693 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003694 ret = 0;
3695 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003696 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003697 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003698 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003699 if (ret == 0) {
3700 priv->_agn.agg_tids_count++;
3701 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3702 priv->_agn.agg_tids_count);
3703 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003704 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003705 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003706 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003707 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003708 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3709 priv->_agn.agg_tids_count--;
3710 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3711 priv->_agn.agg_tids_count);
3712 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003713 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003714 ret = 0;
Johannes Berg94597ab2010-08-09 10:57:02 -07003715 if (priv->cfg->use_rts_for_aggregation) {
3716 struct iwl_station_priv *sta_priv =
3717 (void *) sta->drv_priv;
3718 /*
3719 * switch off RTS/CTS if it was previously enabled
3720 */
3721
3722 sta_priv->lq_sta.lq.general_params.flags &=
3723 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003724 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3725 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Johannes Berg94597ab2010-08-09 10:57:02 -07003726 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003727 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003728 case IEEE80211_AMPDU_TX_OPERATIONAL:
Johannes Berg94597ab2010-08-09 10:57:02 -07003729 if (priv->cfg->use_rts_for_aggregation) {
3730 struct iwl_station_priv *sta_priv =
3731 (void *) sta->drv_priv;
3732
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003733 /*
3734 * switch to RTS/CTS if it is the prefer protection
3735 * method for HT traffic
3736 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003737
3738 sta_priv->lq_sta.lq.general_params.flags |=
3739 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003740 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3741 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003742 }
3743 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003744 break;
3745 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003746 mutex_unlock(&priv->mutex);
3747
3748 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003749}
Tomas Winkler9f586712008-11-12 13:14:05 -08003750
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003751static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
3752 struct ieee80211_vif *vif,
3753 enum sta_notify_cmd cmd,
3754 struct ieee80211_sta *sta)
3755{
3756 struct iwl_priv *priv = hw->priv;
3757 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3758 int sta_id;
3759
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003760 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003761 case STA_NOTIFY_SLEEP:
3762 WARN_ON(!sta_priv->client);
3763 sta_priv->asleep = true;
3764 if (atomic_read(&sta_priv->pending_frames) > 0)
3765 ieee80211_sta_block_awake(hw, sta, true);
3766 break;
3767 case STA_NOTIFY_AWAKE:
3768 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003769 if (!sta_priv->asleep)
3770 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003771 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003772 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003773 if (sta_id != IWL_INVALID_STATION)
3774 iwl_sta_modify_ps_wake(priv, sta_id);
3775 break;
3776 default:
3777 break;
3778 }
3779}
3780
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003781static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3782 struct ieee80211_vif *vif,
3783 struct ieee80211_sta *sta)
3784{
3785 struct iwl_priv *priv = hw->priv;
3786 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Berga194e322010-08-27 08:53:46 -07003787 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003788 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003789 int ret;
3790 u8 sta_id;
3791
3792 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3793 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003794 mutex_lock(&priv->mutex);
3795 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3796 sta->addr);
3797 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003798
3799 atomic_set(&sta_priv->pending_frames, 0);
3800 if (vif->type == NL80211_IFTYPE_AP)
3801 sta_priv->client = true;
3802
Johannes Berga194e322010-08-27 08:53:46 -07003803 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
Johannes Berg238d7812010-08-23 10:46:45 +02003804 is_ap, sta, &sta_id);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003805 if (ret) {
3806 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3807 sta->addr, ret);
3808 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003809 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003810 return ret;
3811 }
3812
Johannes Bergfd1af152010-04-30 11:30:43 -07003813 sta_priv->common.sta_id = sta_id;
3814
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003815 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003816 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003817 sta->addr);
3818 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003819 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003820
Johannes Bergfd1af152010-04-30 11:30:43 -07003821 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003822}
3823
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003824static void iwl_mac_channel_switch(struct ieee80211_hw *hw,
3825 struct ieee80211_channel_switch *ch_switch)
3826{
3827 struct iwl_priv *priv = hw->priv;
3828 const struct iwl_channel_info *ch_info;
3829 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003830 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003831 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg246ed352010-08-23 10:46:32 +02003832 /*
3833 * MULTI-FIXME
3834 * When we add support for multiple interfaces, we need to
3835 * revisit this. The channel switch command in the device
3836 * only affects the BSS context, but what does that really
3837 * mean? And what if we get a CSA on the second interface?
3838 * This needs a lot of work.
3839 */
3840 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003841 u16 ch;
3842 unsigned long flags = 0;
3843
3844 IWL_DEBUG_MAC80211(priv, "enter\n");
3845
3846 if (iwl_is_rfkill(priv))
3847 goto out_exit;
3848
3849 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3850 test_bit(STATUS_SCANNING, &priv->status))
3851 goto out_exit;
3852
Johannes Berg246ed352010-08-23 10:46:32 +02003853 if (!iwl_is_associated_ctx(ctx))
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003854 goto out_exit;
3855
3856 /* channel switch in progress */
3857 if (priv->switch_rxon.switch_in_progress == true)
3858 goto out_exit;
3859
3860 mutex_lock(&priv->mutex);
3861 if (priv->cfg->ops->lib->set_channel_switch) {
3862
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003863 ch = channel->hw_value;
Johannes Berg246ed352010-08-23 10:46:32 +02003864 if (le16_to_cpu(ctx->active.channel) != ch) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003865 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003866 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003867 ch);
3868 if (!is_channel_valid(ch_info)) {
3869 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3870 goto out;
3871 }
3872 spin_lock_irqsave(&priv->lock, flags);
3873
3874 priv->current_ht_config.smps = conf->smps_mode;
3875
3876 /* Configure HT40 channels */
Johannes Berg7e6a5882010-08-23 10:46:46 +02003877 ctx->ht.enabled = conf_is_ht(conf);
3878 if (ctx->ht.enabled) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003879 if (conf_is_ht40_minus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003880 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003881 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003882 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003883 } else if (conf_is_ht40_plus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003884 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003885 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003886 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003887 } else {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003888 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003889 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003890 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003891 }
3892 } else
Johannes Berg7e6a5882010-08-23 10:46:46 +02003893 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003894
Johannes Berg246ed352010-08-23 10:46:32 +02003895 if ((le16_to_cpu(ctx->staging.channel) != ch))
3896 ctx->staging.flags = 0;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003897
Johannes Berg246ed352010-08-23 10:46:32 +02003898 iwl_set_rxon_channel(priv, channel, ctx);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003899 iwl_set_rxon_ht(priv, ht_conf);
Johannes Berg246ed352010-08-23 10:46:32 +02003900 iwl_set_flags_for_band(priv, ctx, channel->band,
Johannes Berg8bd413e2010-08-23 10:46:40 +02003901 ctx->vif);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003902 spin_unlock_irqrestore(&priv->lock, flags);
3903
3904 iwl_set_rate(priv);
3905 /*
3906 * at this point, staging_rxon has the
3907 * configuration for channel switch
3908 */
3909 if (priv->cfg->ops->lib->set_channel_switch(priv,
3910 ch_switch))
3911 priv->switch_rxon.switch_in_progress = false;
3912 }
3913 }
3914out:
3915 mutex_unlock(&priv->mutex);
3916out_exit:
3917 if (!priv->switch_rxon.switch_in_progress)
Johannes Berg8bd413e2010-08-23 10:46:40 +02003918 ieee80211_chswitch_done(ctx->vif, false);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003919 IWL_DEBUG_MAC80211(priv, "leave\n");
3920}
3921
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003922static void iwlagn_configure_filter(struct ieee80211_hw *hw,
3923 unsigned int changed_flags,
3924 unsigned int *total_flags,
3925 u64 multicast)
3926{
3927 struct iwl_priv *priv = hw->priv;
3928 __le32 filter_or = 0, filter_nand = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02003929 struct iwl_rxon_context *ctx;
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003930
3931#define CHK(test, flag) do { \
3932 if (*total_flags & (test)) \
3933 filter_or |= (flag); \
3934 else \
3935 filter_nand |= (flag); \
3936 } while (0)
3937
3938 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3939 changed_flags, *total_flags);
3940
3941 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3942 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3943 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3944
3945#undef CHK
3946
3947 mutex_lock(&priv->mutex);
3948
Johannes Berg246ed352010-08-23 10:46:32 +02003949 for_each_context(priv, ctx) {
3950 ctx->staging.filter_flags &= ~filter_nand;
3951 ctx->staging.filter_flags |= filter_or;
3952 iwlcore_commit_rxon(priv, ctx);
3953 }
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003954
3955 mutex_unlock(&priv->mutex);
3956
3957 /*
3958 * Receiving all multicast frames is always enabled by the
3959 * default flags setup in iwl_connection_init_rx_config()
3960 * since we currently do not support programming multicast
3961 * filters into the device.
3962 */
3963 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3964 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3965}
3966
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07003967static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop)
3968{
3969 struct iwl_priv *priv = hw->priv;
3970
3971 mutex_lock(&priv->mutex);
3972 IWL_DEBUG_MAC80211(priv, "enter\n");
3973
3974 /* do not support "flush" */
3975 if (!priv->cfg->ops->lib->txfifo_flush)
3976 goto done;
3977
3978 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3979 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
3980 goto done;
3981 }
3982 if (iwl_is_rfkill(priv)) {
3983 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
3984 goto done;
3985 }
3986
3987 /*
3988 * mac80211 will not push any more frames for transmit
3989 * until the flush is completed
3990 */
3991 if (drop) {
3992 IWL_DEBUG_MAC80211(priv, "send flush command\n");
3993 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
3994 IWL_ERR(priv, "flush request fail\n");
3995 goto done;
3996 }
3997 }
3998 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
3999 iwlagn_wait_tx_queue_empty(priv);
4000done:
4001 mutex_unlock(&priv->mutex);
4002 IWL_DEBUG_MAC80211(priv, "leave\n");
4003}
4004
Zhu Yib481de92007-09-25 17:54:57 -07004005/*****************************************************************************
4006 *
Zhu Yib481de92007-09-25 17:54:57 -07004007 * driver setup and teardown
4008 *
4009 *****************************************************************************/
4010
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004011static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004012{
Reinette Chatred21050c2009-02-13 11:51:18 -08004013 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07004014
4015 init_waitqueue_head(&priv->wait_command_queue);
4016
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004017 INIT_WORK(&priv->restart, iwl_bg_restart);
4018 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004019 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08004020 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07004021 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004022 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004023 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08004024 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
4025 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08004026
Tomas Winkler2a421b92008-06-12 09:47:10 +08004027 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004028
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004029 if (priv->cfg->ops->lib->setup_deferred_work)
4030 priv->cfg->ops->lib->setup_deferred_work(priv);
4031
4032 init_timer(&priv->statistics_periodic);
4033 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004034 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07004035
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004036 init_timer(&priv->ucode_trace);
4037 priv->ucode_trace.data = (unsigned long)priv;
4038 priv->ucode_trace.function = iwl_bg_ucode_trace;
4039
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08004040 if (priv->cfg->ops->lib->recover_from_tx_stall) {
4041 init_timer(&priv->monitor_recover);
4042 priv->monitor_recover.data = (unsigned long)priv;
4043 priv->monitor_recover.function =
4044 priv->cfg->ops->lib->recover_from_tx_stall;
4045 }
4046
Mohamed Abbasef850d72009-05-22 11:01:50 -07004047 if (!priv->cfg->use_isr_legacy)
4048 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4049 iwl_irq_tasklet, (unsigned long)priv);
4050 else
4051 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4052 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004053}
4054
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004055static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004056{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004057 if (priv->cfg->ops->lib->cancel_deferred_work)
4058 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004059
Joonwoo Park3ae6a052007-11-29 10:43:16 +09004060 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004061 cancel_delayed_work(&priv->scan_check);
Johannes Berg88be0262010-04-07 00:21:36 -07004062 cancel_work_sync(&priv->start_internal_scan);
Zhu Yib481de92007-09-25 17:54:57 -07004063 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07004064 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07004065 cancel_work_sync(&priv->beacon_update);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004066 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004067 cancel_work_sync(&priv->bt_runtime_config);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004068 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004069 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07004070}
4071
Reinette Chatre89f186a2009-10-30 14:36:11 -07004072static void iwl_init_hw_rates(struct iwl_priv *priv,
4073 struct ieee80211_rate *rates)
4074{
4075 int i;
4076
4077 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
4078 rates[i].bitrate = iwl_rates[i].ieee * 5;
4079 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4080 rates[i].hw_value_short = i;
4081 rates[i].flags = 0;
4082 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
4083 /*
4084 * If CCK != 1M then set short preamble rate flag.
4085 */
4086 rates[i].flags |=
4087 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
4088 0 : IEEE80211_RATE_SHORT_PREAMBLE;
4089 }
4090 }
4091}
4092
4093static int iwl_init_drv(struct iwl_priv *priv)
4094{
4095 int ret;
4096
4097 priv->ibss_beacon = NULL;
4098
Reinette Chatre89f186a2009-10-30 14:36:11 -07004099 spin_lock_init(&priv->sta_lock);
4100 spin_lock_init(&priv->hcmd_lock);
4101
4102 INIT_LIST_HEAD(&priv->free_frames);
4103
4104 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08004105 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004106
Reinette Chatre89f186a2009-10-30 14:36:11 -07004107 priv->ieee_channels = NULL;
4108 priv->ieee_rates = NULL;
4109 priv->band = IEEE80211_BAND_2GHZ;
4110
4111 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08004112 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08004113 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08004114 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004115
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08004116 /* initialize force reset */
4117 priv->force_reset[IWL_RF_RESET].reset_duration =
4118 IWL_DELAY_NEXT_FORCE_RF_RESET;
4119 priv->force_reset[IWL_FW_RESET].reset_duration =
4120 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004121
4122 /* Choose which receivers/antennas to use */
4123 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02004124 priv->cfg->ops->hcmd->set_rxon_chain(priv,
4125 &priv->contexts[IWL_RXON_CTX_BSS]);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004126
4127 iwl_init_scan_params(priv);
4128
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004129 /* init bt coex */
4130 if (priv->cfg->advanced_bt_coexist) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07004131 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
4132 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
4133 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004134 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
4135 priv->bt_duration = BT_DURATION_LIMIT_DEF;
4136 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
4137 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
4138 }
4139
Reinette Chatre89f186a2009-10-30 14:36:11 -07004140 /* Set the tx_power_user_lmt to the lowest power level
4141 * this value will get overwritten by channel max power avg
4142 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07004143 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004144
4145 ret = iwl_init_channel_map(priv);
4146 if (ret) {
4147 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4148 goto err;
4149 }
4150
4151 ret = iwlcore_init_geos(priv);
4152 if (ret) {
4153 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4154 goto err_free_channel_map;
4155 }
4156 iwl_init_hw_rates(priv, priv->ieee_rates);
4157
4158 return 0;
4159
4160err_free_channel_map:
4161 iwl_free_channel_map(priv);
4162err:
4163 return ret;
4164}
4165
4166static void iwl_uninit_drv(struct iwl_priv *priv)
4167{
4168 iwl_calib_free_results(priv);
4169 iwlcore_free_geos(priv);
4170 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004171 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004172}
4173
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004174static struct ieee80211_ops iwl_hw_ops = {
4175 .tx = iwl_mac_tx,
4176 .start = iwl_mac_start,
4177 .stop = iwl_mac_stop,
4178 .add_interface = iwl_mac_add_interface,
4179 .remove_interface = iwl_mac_remove_interface,
4180 .config = iwl_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02004181 .configure_filter = iwlagn_configure_filter,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004182 .set_key = iwl_mac_set_key,
4183 .update_tkip_key = iwl_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004184 .conf_tx = iwl_mac_conf_tx,
4185 .reset_tsf = iwl_mac_reset_tsf,
4186 .bss_info_changed = iwl_bss_info_changed,
4187 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08004188 .hw_scan = iwl_mac_hw_scan,
4189 .sta_notify = iwl_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08004190 .sta_add = iwlagn_mac_sta_add,
4191 .sta_remove = iwl_mac_sta_remove,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07004192 .channel_switch = iwl_mac_channel_switch,
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004193 .flush = iwl_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07004194 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07004195};
4196
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004197static void iwl_hw_detect(struct iwl_priv *priv)
4198{
4199 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
4200 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
4201 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07004202 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004203}
4204
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07004205static int iwl_set_hw_params(struct iwl_priv *priv)
4206{
4207 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
4208 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
4209 if (priv->cfg->mod_params->amsdu_size_8K)
4210 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
4211 else
4212 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
4213
4214 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
4215
4216 if (priv->cfg->mod_params->disable_11n)
4217 priv->cfg->sku &= ~IWL_SKU_N;
4218
4219 /* Device-specific setup */
4220 return priv->cfg->ops->lib->set_hw_params(priv);
4221}
4222
Johannes Berge72f3682010-08-23 10:46:51 +02004223static const u8 iwlagn_bss_ac_to_fifo[] = {
4224 IWL_TX_FIFO_VO,
4225 IWL_TX_FIFO_VI,
4226 IWL_TX_FIFO_BE,
4227 IWL_TX_FIFO_BK,
4228};
4229
4230static const u8 iwlagn_bss_ac_to_queue[] = {
4231 0, 1, 2, 3,
4232};
4233
4234static const u8 iwlagn_pan_ac_to_fifo[] = {
4235 IWL_TX_FIFO_VO_IPAN,
4236 IWL_TX_FIFO_VI_IPAN,
4237 IWL_TX_FIFO_BE_IPAN,
4238 IWL_TX_FIFO_BK_IPAN,
4239};
4240
4241static const u8 iwlagn_pan_ac_to_queue[] = {
4242 7, 6, 5, 4,
4243};
4244
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004245static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004246{
Johannes Berg246ed352010-08-23 10:46:32 +02004247 int err = 0, i;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004248 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004249 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004250 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004251 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004252 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07004253
Assaf Krauss316c30d2008-03-14 10:38:46 -07004254 /************************
4255 * 1. Allocating HW data
4256 ************************/
4257
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004258 /* Disabling hardware scan means that mac80211 will perform scans
4259 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004260 if (cfg->mod_params->disable_hw_scan) {
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004261 if (iwl_debug_level & IWL_DL_INFO)
Ester Kummerbf403db2008-05-05 10:22:40 +08004262 dev_printk(KERN_DEBUG, &(pdev->dev),
4263 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004264 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004265 }
4266
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004267 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004268 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004269 err = -ENOMEM;
4270 goto out;
4271 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004272 priv = hw->priv;
4273 /* At this point both hw and priv are allocated. */
4274
Johannes Berg246ed352010-08-23 10:46:32 +02004275 /*
4276 * The default context is always valid,
4277 * more may be discovered when firmware
4278 * is loaded.
4279 */
4280 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
4281
4282 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
4283 priv->contexts[i].ctxid = i;
4284
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004285 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
4286 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
4287 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +02004288 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
Johannes Berg2995baf2010-08-23 10:46:42 +02004289 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
Johannes Bergc10afb62010-08-23 10:46:43 +02004290 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
Johannes Berge72f3682010-08-23 10:46:51 +02004291 priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo;
4292 priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004293
4294 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4295 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4296 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4297 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4298 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4299 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4300 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4301 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
Johannes Berge72f3682010-08-23 10:46:51 +02004302 priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo;
4303 priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue;
4304 priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004305
4306 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004307
Zhu Yib481de92007-09-25 17:54:57 -07004308 SET_IEEE80211_DEV(hw, &pdev->dev);
4309
Tomas Winklere1623442009-01-27 14:27:56 -08004310 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004311 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004312 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004313 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004314
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004315 /* is antenna coupling more than 35dB ? */
4316 priv->bt_ant_couple_ok =
4317 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4318 true : false;
4319
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004320 /* enable/disable bt channel announcement */
4321 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4322
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004323 if (iwl_alloc_traffic_mem(priv))
4324 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004325
Assaf Krauss316c30d2008-03-14 10:38:46 -07004326 /**************************
4327 * 2. Initializing PCI bus
4328 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004329 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4330 PCIE_LINK_STATE_CLKPM);
4331
Assaf Krauss316c30d2008-03-14 10:38:46 -07004332 if (pci_enable_device(pdev)) {
4333 err = -ENODEV;
4334 goto out_ieee80211_free_hw;
4335 }
4336
4337 pci_set_master(pdev);
4338
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004339 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004340 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004341 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004342 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004343 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004344 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004345 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004346 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004347 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004348 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004349 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004350 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004351 }
4352
4353 err = pci_request_regions(pdev, DRV_NAME);
4354 if (err)
4355 goto out_pci_disable_device;
4356
4357 pci_set_drvdata(pdev, priv);
4358
Assaf Krauss316c30d2008-03-14 10:38:46 -07004359
4360 /***********************
4361 * 3. Read REV register
4362 ***********************/
4363 priv->hw_base = pci_iomap(pdev, 0, 0);
4364 if (!priv->hw_base) {
4365 err = -ENODEV;
4366 goto out_pci_release_regions;
4367 }
4368
Tomas Winklere1623442009-01-27 14:27:56 -08004369 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004370 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004371 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004372
Reinette Chatre731a29b2009-12-14 14:12:11 -08004373 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004374 * we should init now
4375 */
4376 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004377 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004378
4379 /*
4380 * stop and reset the on-board processor just in case it is in a
4381 * strange state ... like being left stranded by a primary kernel
4382 * and this is now the kdump kernel trying to start up
4383 */
4384 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4385
Tomas Winklerb661c812008-04-23 17:14:54 -07004386 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004387 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004388 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004389
Tomas Winklere7b63582008-09-03 11:26:49 +08004390 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4391 * PCI Tx retries from interfering with C3 CPU state */
4392 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4393
Mohamed Abbas086ed112009-05-22 11:01:54 -07004394 iwl_prepare_card_hw(priv);
4395 if (!priv->hw_ready) {
4396 IWL_WARN(priv, "Failed, HW not ready\n");
4397 goto out_iounmap;
4398 }
4399
Assaf Krauss316c30d2008-03-14 10:38:46 -07004400 /*****************
4401 * 4. Read EEPROM
4402 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004403 /* Read the EEPROM */
4404 err = iwl_eeprom_init(priv);
4405 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004406 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004407 goto out_iounmap;
4408 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004409 err = iwl_eeprom_check_version(priv);
4410 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004411 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004412
Ron Rindjunsky02883012008-05-15 13:53:53 +08004413 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004414 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4415 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4416 priv->hw->wiphy->addresses = priv->addresses;
4417 priv->hw->wiphy->n_addresses = 1;
4418 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4419 if (num_mac > 1) {
4420 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4421 ETH_ALEN);
4422 priv->addresses[1].addr[5]++;
4423 priv->hw->wiphy->n_addresses++;
4424 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004425
4426 /************************
4427 * 5. Setup HW constants
4428 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08004429 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004430 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004431 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004432 }
4433
4434 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004435 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004436 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004437
Tomas Winkler6ba87952008-05-15 13:54:17 +08004438 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004439 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004440 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004441 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004442
Assaf Krauss316c30d2008-03-14 10:38:46 -07004443 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004444 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004445 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004446 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004447 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004448 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004449
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004450 pci_enable_msi(priv->pci_dev);
4451
Mohamed Abbasef850d72009-05-22 11:01:50 -07004452 iwl_alloc_isr_ict(priv);
4453 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4454 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004455 if (err) {
4456 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4457 goto out_disable_msi;
4458 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004459
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004460 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004461 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004462
Johannes Berg158bea02010-01-22 14:22:53 -08004463 /*********************************************
4464 * 8. Enable interrupts and read RFKILL state
4465 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004466
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004467 /* enable interrupts if needed: hw bug w/a */
4468 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4469 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4470 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4471 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4472 }
4473
4474 iwl_enable_interrupts(priv);
4475
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004476 /* If platform's RF_KILL switch is NOT set to KILL */
4477 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4478 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4479 else
4480 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004481
Johannes Berga60e77e2009-06-04 18:26:06 +02004482 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4483 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004484
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004485 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004486 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004487
Reinette Chatrea15707d2010-05-10 15:08:11 -07004488 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004489
Johannes Bergb08dfd02010-01-29 11:54:56 -08004490 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004491 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004492 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004493
Zhu Yib481de92007-09-25 17:54:57 -07004494 return 0;
4495
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004496 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004497 destroy_workqueue(priv->workqueue);
4498 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004499 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004500 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004501 out_disable_msi:
4502 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004503 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004504 out_free_eeprom:
4505 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004506 out_iounmap:
4507 pci_iounmap(pdev, priv->hw_base);
4508 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004509 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004510 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004511 out_pci_disable_device:
4512 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004513 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004514 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004515 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004516 out:
4517 return err;
4518}
4519
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004520static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004521{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004522 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004523 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004524
4525 if (!priv)
4526 return;
4527
Reinette Chatrea15707d2010-05-10 15:08:11 -07004528 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004529
Tomas Winklere1623442009-01-27 14:27:56 -08004530 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004531
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004532 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004533 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004534
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004535 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4536 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004537 * we need to set STATUS_EXIT_PENDING bit.
4538 */
4539 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004540 if (priv->mac80211_registered) {
4541 ieee80211_unregister_hw(priv->hw);
4542 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004543 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004544 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004545 }
4546
Ben Cahillc166b252009-10-23 13:42:35 -07004547 /*
4548 * Make sure device is reset to low power before unloading driver.
4549 * This may be redundant with iwl_down(), but there are paths to
4550 * run iwl_down() without calling apm_ops.stop(), and there are
4551 * paths to avoid running iwl_down() at all before leaving driver.
4552 * This (inexpensive) call *makes sure* device is reset.
4553 */
4554 priv->cfg->ops->lib->apm_ops.stop(priv);
4555
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004556 iwl_tt_exit(priv);
4557
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004558 /* make sure we flush any pending irq or
4559 * tasklet for the driver
4560 */
4561 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004562 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004563 spin_unlock_irqrestore(&priv->lock, flags);
4564
4565 iwl_synchronize_irq(priv);
4566
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004567 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004568
4569 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004570 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004571 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004572
Tomas Winkler073d3f52008-04-21 15:41:52 -07004573 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004574
Zhu Yib481de92007-09-25 17:54:57 -07004575
Mohamed Abbas948c1712007-10-25 17:15:45 +08004576 /*netif_stop_queue(dev); */
4577 flush_workqueue(priv->workqueue);
4578
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004579 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004580 * priv->workqueue... so we can't take down the workqueue
4581 * until now... */
4582 destroy_workqueue(priv->workqueue);
4583 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004584 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004585
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004586 free_irq(priv->pci_dev->irq, priv);
4587 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004588 pci_iounmap(pdev, priv->hw_base);
4589 pci_release_regions(pdev);
4590 pci_disable_device(pdev);
4591 pci_set_drvdata(pdev, NULL);
4592
Tomas Winkler6ba87952008-05-15 13:54:17 +08004593 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004594
Mohamed Abbasef850d72009-05-22 11:01:50 -07004595 iwl_free_isr_ict(priv);
4596
Zhu Yib481de92007-09-25 17:54:57 -07004597 if (priv->ibss_beacon)
4598 dev_kfree_skb(priv->ibss_beacon);
4599
4600 ieee80211_free_hw(priv->hw);
4601}
4602
Zhu Yib481de92007-09-25 17:54:57 -07004603
4604/*****************************************************************************
4605 *
4606 * driver and module entry point
4607 *
4608 *****************************************************************************/
4609
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004610/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004611static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004612#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004613 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4614 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004615#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004616#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004617/* 5100 Series WiFi */
4618 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4619 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4620 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4621 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4622 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4623 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4624 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4625 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4626 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4627 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4628 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4629 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4630 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4631 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4632 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4633 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4634 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4635 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4636 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4637 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4638 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4639 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4640 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4641 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4642
4643/* 5300 Series WiFi */
4644 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4645 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4646 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4647 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4648 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4649 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4650 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4651 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4652 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4653 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4654 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4655 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4656
4657/* 5350 Series WiFi/WiMax */
4658 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4659 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4660 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4661
4662/* 5150 Series Wifi/WiMax */
4663 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4664 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4665 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4666 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4667 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4668 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4669
4670 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4671 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4672 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4673 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004674
4675/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004676 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4677 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4678 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4679 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4680 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4681 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4682 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4683 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4684 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4685 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004686
Shanyu Zhao95b13012010-04-21 11:46:33 -07004687/* 6x00 Series Gen2a */
4688 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4689 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4690 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004691 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4692 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4693 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4694 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004695 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4696 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4697 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4698 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4699 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4700 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4701 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004702
4703/* 6x00 Series Gen2b */
4704 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4705 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4706 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4707 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4708 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4709 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4710 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4711 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4712 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4713 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4714 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004715 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4716 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4717 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4718 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4719 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4720 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4721 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4722 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4723 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4724 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4725 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4726 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4727 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4728 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4729 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4730 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4731 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004732
4733/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004734 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4735 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4736 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4737 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004738 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4739 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4740
Shanyu Zhao03264332010-06-29 17:27:27 -07004741/* 6x50 WiFi/WiMax Series Gen2 */
4742 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4743 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4744 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4745 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4746 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4747 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4748
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004749/* 1000 Series WiFi */
Wey-Yi Guy4bd0914f2009-09-17 10:43:52 -07004750 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4751 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4752 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4753 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4754 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4755 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4756 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4757 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4758 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4759 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4760 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4761 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004762#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004763
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004764 {0}
4765};
4766MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4767
4768static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004769 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004770 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004771 .probe = iwl_pci_probe,
4772 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004773#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004774 .suspend = iwl_pci_suspend,
4775 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004776#endif
4777};
4778
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004779static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004780{
4781
4782 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004783 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4784 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004785
Tomas Winklere227cea2008-07-18 13:53:05 +08004786 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004787 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004788 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004789 return ret;
4790 }
4791
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004792 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004793 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004794 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004795 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004796 }
Zhu Yib481de92007-09-25 17:54:57 -07004797
4798 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004799
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004800error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004801 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004802 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004803}
4804
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004805static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004806{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004807 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004808 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004809}
4810
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004811module_exit(iwl_exit);
4812module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004813
4814#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004815module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004816MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004817module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004818MODULE_PARM_DESC(debug, "debug output mask");
4819#endif
4820
Wey-Yi Guy2b0686182010-03-22 09:17:39 -07004821module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4822MODULE_PARM_DESC(swcrypto50,
4823 "using crypto in software (default 0 [hardware]) (deprecated)");
4824module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4825MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4826module_param_named(queues_num50,
4827 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4828MODULE_PARM_DESC(queues_num50,
4829 "number of hw queues in 50xx series (deprecated)");
4830module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4831MODULE_PARM_DESC(queues_num, "number of hw queues.");
4832module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4833MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4834module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4835MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4836module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4837 int, S_IRUGO);
4838MODULE_PARM_DESC(amsdu_size_8K50,
4839 "enable 8K amsdu size in 50XX series (deprecated)");
4840module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4841 int, S_IRUGO);
4842MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4843module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4844MODULE_PARM_DESC(fw_restart50,
4845 "restart firmware in case of error (deprecated)");
4846module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4847MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4848module_param_named(
4849 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
4850MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004851
4852module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4853 S_IRUGO);
4854MODULE_PARM_DESC(ucode_alternative,
4855 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004856
4857module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4858MODULE_PARM_DESC(antenna_coupling,
4859 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004860
4861module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4862MODULE_PARM_DESC(bt_ch_announce,
4863 "Enable BT channel announcement mode (default: enable)");