blob: 4410f820c2f38f5a6bf9659bcf16edcb06df10d2 [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 */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700101int iwl_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700102{
103 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800104 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800105 int ret;
106 bool new_assoc =
107 !!(priv->staging_rxon.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 */
113 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
114
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800115 ret = iwl_check_rxon_cmd(priv);
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 &&
126 (priv->switch_rxon.channel != priv->staging_rxon.channel)) {
127 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. */
Mohamed Abbas54559702008-09-03 11:18:44 +0800135 if (!iwl_full_rxon_required(priv)) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800136 ret = iwl_send_rxon_assoc(priv);
137 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
142 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Wey-Yi Guya6435652009-11-06 14:52:46 -0800143 iwl_print_rx_config_cmd(priv);
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 */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800151 if (iwl_is_associated(priv) && 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
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800155 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800156 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700157 &priv->active_rxon);
158
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 Berg2c810cc2010-04-29 00:53:29 -0700166 iwl_clear_ucode_stations(priv);
Reinette Chatre7e246192010-02-18 22:58:32 -0800167 iwl_restore_stations(priv);
Johannes Berg335348b2010-03-30 10:11:46 -0700168 ret = iwl_restore_default_wep_keys(priv);
169 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"),
Zhu Yib481de92007-09-25 17:54:57 -0700180 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700181 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700182
Tomas Winkler90e8e422009-06-19 13:52:42 -0700183 iwl_set_rxon_hwcrypto(priv, !priv->cfg->mod_params->sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800184
185 /* Apply the new configuration
Reinette Chatre7e246192010-02-18 22:58:32 -0800186 * RXON unassoc clears the station table in uCode so restoration of
187 * stations is needed after it (the RXON command) completes
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800188 */
189 if (!new_assoc) {
190 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800191 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800192 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800193 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800194 return ret;
195 }
Frans Pop91dd6c22010-03-24 14:19:58 -0700196 IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON.\n");
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800197 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Johannes Berg2c810cc2010-04-29 00:53:29 -0700198 iwl_clear_ucode_stations(priv);
Reinette Chatre7e246192010-02-18 22:58:32 -0800199 iwl_restore_stations(priv);
Johannes Berg335348b2010-03-30 10:11:46 -0700200 ret = iwl_restore_default_wep_keys(priv);
201 if (ret) {
202 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
203 return ret;
204 }
Zhu Yib481de92007-09-25 17:54:57 -0700205 }
206
Johannes Berg19cc1082009-05-08 13:44:36 -0700207 priv->start_calib = 0;
Tomas Winkler91851592008-06-30 17:23:14 +0800208 if (new_assoc) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800209 /* Apply the new configuration
210 * RXON assoc doesn't clear the station table in uCode,
211 */
212 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
213 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
214 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800215 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800216 return ret;
217 }
218 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700219 }
Wey-Yi Guya6435652009-11-06 14:52:46 -0800220 iwl_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700221
Zhu Yi36da7d72008-07-11 11:53:40 +0800222 iwl_init_sensitivity(priv);
223
224 /* If we issue a new RXON command which required a tune then we must
225 * send a new TXPOWER command or we won't be able to Tx any frames */
226 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
227 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800228 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800229 return ret;
230 }
231
Zhu Yib481de92007-09-25 17:54:57 -0700232 return 0;
233}
234
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700235void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700236{
237
Abhijeet Kolekar45823532009-04-08 11:26:44 -0700238 if (priv->cfg->ops->hcmd->set_rxon_chain)
239 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700240 iwlcore_commit_rxon(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700241}
242
Tomas Winklerfcab4232008-05-15 13:54:01 +0800243static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700244{
245 struct list_head *element;
246
Tomas Winklere1623442009-01-27 14:27:56 -0800247 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700248 priv->frames_count);
249
250 while (!list_empty(&priv->free_frames)) {
251 element = priv->free_frames.next;
252 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800253 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700254 priv->frames_count--;
255 }
256
257 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800258 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700259 priv->frames_count);
260 priv->frames_count = 0;
261 }
262}
263
Tomas Winklerfcab4232008-05-15 13:54:01 +0800264static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700265{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800266 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700267 struct list_head *element;
268 if (list_empty(&priv->free_frames)) {
269 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
270 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800271 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700272 return NULL;
273 }
274
275 priv->frames_count++;
276 return frame;
277 }
278
279 element = priv->free_frames.next;
280 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800281 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700282}
283
Tomas Winklerfcab4232008-05-15 13:54:01 +0800284static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700285{
286 memset(frame, 0, sizeof(*frame));
287 list_add(&frame->list, &priv->free_frames);
288}
289
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800290static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800291 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200292 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700293{
Johannes Berg6abbe552010-07-15 05:59:07 -0700294 if (!priv->ibss_beacon)
Zhu Yib481de92007-09-25 17:54:57 -0700295 return 0;
296
297 if (priv->ibss_beacon->len > left)
298 return 0;
299
300 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
301
302 return priv->ibss_beacon->len;
303}
304
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800305/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
306static void iwl_set_beacon_tim(struct iwl_priv *priv,
307 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
308 u8 *beacon, u32 frame_size)
309{
310 u16 tim_idx;
311 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
312
313 /*
314 * The index is relative to frame start but we start looking at the
315 * variable-length part of the beacon.
316 */
317 tim_idx = mgmt->u.beacon.variable - beacon;
318
319 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
320 while ((tim_idx < (frame_size - 2)) &&
321 (beacon[tim_idx] != WLAN_EID_TIM))
322 tim_idx += beacon[tim_idx+1] + 2;
323
324 /* If TIM field was found, set variables */
325 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
326 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
327 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
328 } else
329 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
330}
331
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700332static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800333 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800334{
335 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800336 u32 frame_size;
337 u32 rate_flags;
338 u32 rate;
339 /*
340 * We have to set up the TX command, the TX Beacon command, and the
341 * beacon contents.
342 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800343
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800344 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800345 tx_beacon_cmd = &frame->u.beacon;
346 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
347
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800348 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800349 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800350 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800351 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
352 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800353
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800354 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800355 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800356 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
357 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800358 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800359 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
360
361 /* Set up TX beacon command fields */
362 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
363 frame_size);
364
365 /* Set up packet rate and flags */
366 rate = iwl_rate_get_lowest_plcp(priv);
Johannes Berg0e1654f2010-05-18 02:48:36 -0700367 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
368 priv->hw_params.valid_tx_ant);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800369 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
370 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
371 rate_flags |= RATE_MCS_CCK_MSK;
372 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
373 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800374
375 return sizeof(*tx_beacon_cmd) + frame_size;
376}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700377static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700378{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800379 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700380 unsigned int frame_size;
381 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700382
Tomas Winklerfcab4232008-05-15 13:54:01 +0800383 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700384 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800385 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700386 "command.\n");
387 return -ENOMEM;
388 }
389
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800390 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
391 if (!frame_size) {
392 IWL_ERR(priv, "Error configuring the beacon command\n");
393 iwl_free_frame(priv, frame);
394 return -EINVAL;
395 }
Zhu Yib481de92007-09-25 17:54:57 -0700396
Tomas Winkler857485c2008-03-21 13:53:44 -0700397 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700398 &frame->u.cmd[0]);
399
Tomas Winklerfcab4232008-05-15 13:54:01 +0800400 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700401
402 return rc;
403}
404
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800405static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
406{
407 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
408
409 dma_addr_t addr = get_unaligned_le32(&tb->lo);
410 if (sizeof(dma_addr_t) > sizeof(u32))
411 addr |=
412 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
413
414 return addr;
415}
416
417static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
418{
419 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
420
421 return le16_to_cpu(tb->hi_n_len) >> 4;
422}
423
424static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
425 dma_addr_t addr, u16 len)
426{
427 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
428 u16 hi_n_len = len << 4;
429
430 put_unaligned_le32(addr, &tb->lo);
431 if (sizeof(dma_addr_t) > sizeof(u32))
432 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
433
434 tb->hi_n_len = cpu_to_le16(hi_n_len);
435
436 tfd->num_tbs = idx + 1;
437}
438
439static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
440{
441 return tfd->num_tbs & 0x1f;
442}
443
444/**
445 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
446 * @priv - driver private data
447 * @txq - tx queue
448 *
449 * Does NOT advance any TFD circular buffer read/write indexes
450 * Does NOT free the TFD itself (which is within circular buffer)
451 */
452void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
453{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800454 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800455 struct iwl_tfd *tfd;
456 struct pci_dev *dev = priv->pci_dev;
457 int index = txq->q.read_ptr;
458 int i;
459 int num_tbs;
460
461 tfd = &tfd_tmp[index];
462
463 /* Sanity check on number of chunks */
464 num_tbs = iwl_tfd_get_num_tbs(tfd);
465
466 if (num_tbs >= IWL_NUM_OF_TBS) {
467 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
468 /* @todo issue fatal error, it is quite serious situation */
469 return;
470 }
471
472 /* Unmap tx_cmd */
473 if (num_tbs)
474 pci_unmap_single(dev,
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900475 dma_unmap_addr(&txq->meta[index], mapping),
476 dma_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800477 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800478
479 /* Unmap chunks, if any. */
Johannes Bergff0d91c2010-05-17 02:37:34 -0700480 for (i = 1; i < num_tbs; i++)
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800481 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
482 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
483
Johannes Bergff0d91c2010-05-17 02:37:34 -0700484 /* free SKB */
485 if (txq->txb) {
486 struct sk_buff *skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700487
Johannes Bergff0d91c2010-05-17 02:37:34 -0700488 skb = txq->txb[txq->q.read_ptr].skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700489
Johannes Bergff0d91c2010-05-17 02:37:34 -0700490 /* can be called from irqs-disabled context */
491 if (skb) {
492 dev_kfree_skb_any(skb);
493 txq->txb[txq->q.read_ptr].skb = NULL;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800494 }
495 }
496}
497
498int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
499 struct iwl_tx_queue *txq,
500 dma_addr_t addr, u16 len,
501 u8 reset, u8 pad)
502{
503 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800504 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800505 u32 num_tbs;
506
507 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800508 tfd_tmp = (struct iwl_tfd *)txq->tfds;
509 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800510
511 if (reset)
512 memset(tfd, 0, sizeof(*tfd));
513
514 num_tbs = iwl_tfd_get_num_tbs(tfd);
515
516 /* Each TFD can point to a maximum 20 Tx buffers */
517 if (num_tbs >= IWL_NUM_OF_TBS) {
518 IWL_ERR(priv, "Error can not send more than %d chunks\n",
519 IWL_NUM_OF_TBS);
520 return -EINVAL;
521 }
522
523 BUG_ON(addr & ~DMA_BIT_MASK(36));
524 if (unlikely(addr & ~IWL_TX_DMA_MASK))
525 IWL_ERR(priv, "Unaligned address = %llx\n",
526 (unsigned long long)addr);
527
528 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
529
530 return 0;
531}
532
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800533/*
534 * Tell nic where to find circular buffer of Tx Frame Descriptors for
535 * given Tx queue, and enable the DMA channel used for that queue.
536 *
537 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
538 * channels supported in hardware.
539 */
540int iwl_hw_tx_queue_init(struct iwl_priv *priv,
541 struct iwl_tx_queue *txq)
542{
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800543 int txq_id = txq->q.id;
544
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800545 /* Circular buffer (TFD queue in DRAM) physical base address */
546 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
547 txq->q.dma_addr >> 8);
548
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800549 return 0;
550}
551
Zhu Yib481de92007-09-25 17:54:57 -0700552/******************************************************************************
553 *
554 * Generic RX handler implementations
555 *
556 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800557static void iwl_rx_reply_alive(struct iwl_priv *priv,
558 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700559{
Zhu Yi2f301222009-10-09 17:19:45 +0800560 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800561 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700562 struct delayed_work *pwork;
563
564 palive = &pkt->u.alive_frame;
565
Tomas Winklere1623442009-01-27 14:27:56 -0800566 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700567 "0x%01X 0x%01X\n",
568 palive->is_valid, palive->ver_type,
569 palive->ver_subtype);
570
571 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800572 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700573 memcpy(&priv->card_alive_init,
574 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800575 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700576 pwork = &priv->init_alive_start;
577 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800578 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700579 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800580 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700581 pwork = &priv->alive_start;
582 }
583
584 /* We delay the ALIVE response by 5ms to
585 * give the HW RF Kill time to activate... */
586 if (palive->is_valid == UCODE_VALID_OK)
587 queue_delayed_work(priv->workqueue, pwork,
588 msecs_to_jiffies(5));
589 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800590 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700591}
592
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700593static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700594{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700595 struct iwl_priv *priv =
596 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700597 struct sk_buff *beacon;
598
599 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200600 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700601
602 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800603 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700604 return;
605 }
606
607 mutex_lock(&priv->mutex);
608 /* new beacon skb is allocated every time; dispose previous.*/
609 if (priv->ibss_beacon)
610 dev_kfree_skb(priv->ibss_beacon);
611
612 priv->ibss_beacon = beacon;
613 mutex_unlock(&priv->mutex);
614
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700615 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700616}
617
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700618static void iwl_bg_bt_runtime_config(struct work_struct *work)
619{
620 struct iwl_priv *priv =
621 container_of(work, struct iwl_priv, bt_runtime_config);
622
623 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
624 return;
625
626 /* dont send host command if rf-kill is on */
627 if (!iwl_is_ready_rf(priv))
628 return;
629 priv->cfg->ops->hcmd->send_bt_config(priv);
630}
631
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700632static void iwl_bg_bt_full_concurrency(struct work_struct *work)
633{
634 struct iwl_priv *priv =
635 container_of(work, struct iwl_priv, bt_full_concurrency);
636
637 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
638 return;
639
640 /* dont send host command if rf-kill is on */
641 if (!iwl_is_ready_rf(priv))
642 return;
643
644 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
645 priv->bt_full_concurrent ?
646 "full concurrency" : "3-wire");
647
648 /*
649 * LQ & RXON updated cmds must be sent before BT Config cmd
650 * to avoid 3-wire collisions
651 */
652 if (priv->cfg->ops->hcmd->set_rxon_chain)
653 priv->cfg->ops->hcmd->set_rxon_chain(priv);
654 iwlcore_commit_rxon(priv);
655
656 priv->cfg->ops->hcmd->send_bt_config(priv);
657}
658
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800659/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700660 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800661 *
662 * This callback is provided in order to send a statistics request.
663 *
664 * This timer function is continually reset to execute within
665 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
666 * was received. We need to ensure we receive the statistics in order
667 * to update the temperature used for calibrating the TXPOWER.
668 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700669static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800670{
671 struct iwl_priv *priv = (struct iwl_priv *)data;
672
673 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
674 return;
675
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700676 /* dont send host command if rf-kill is on */
677 if (!iwl_is_ready_rf(priv))
678 return;
679
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800680 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800681}
682
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800683
684static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
685 u32 start_idx, u32 num_events,
686 u32 mode)
687{
688 u32 i;
689 u32 ptr; /* SRAM byte address of log data */
690 u32 ev, time, data; /* event log data */
691 unsigned long reg_flags;
692
693 if (mode == 0)
694 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
695 else
696 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
697
698 /* Make sure device is powered up for SRAM reads */
699 spin_lock_irqsave(&priv->reg_lock, reg_flags);
700 if (iwl_grab_nic_access(priv)) {
701 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
702 return;
703 }
704
705 /* Set starting address; reads will auto-increment */
706 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
707 rmb();
708
709 /*
710 * "time" is actually "data" for mode 0 (no timestamp).
711 * place event id # at far right for easier visual parsing.
712 */
713 for (i = 0; i < num_events; i++) {
714 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
715 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
716 if (mode == 0) {
717 trace_iwlwifi_dev_ucode_cont_event(priv,
718 0, time, ev);
719 } else {
720 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
721 trace_iwlwifi_dev_ucode_cont_event(priv,
722 time, data, ev);
723 }
724 }
725 /* Allow device to power down */
726 iwl_release_nic_access(priv);
727 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
728}
729
Johannes Berg875295f2010-01-22 14:22:55 -0800730static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800731{
732 u32 capacity; /* event log capacity in # entries */
733 u32 base; /* SRAM byte address of event log header */
734 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
735 u32 num_wraps; /* # times uCode wrapped to top of log */
736 u32 next_entry; /* index of next entry to be written by uCode */
737
738 if (priv->ucode_type == UCODE_INIT)
739 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
740 else
741 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
742 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
743 capacity = iwl_read_targ_mem(priv, base);
744 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
745 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
746 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
747 } else
748 return;
749
750 if (num_wraps == priv->event_log.num_wraps) {
751 iwl_print_cont_event_trace(priv,
752 base, priv->event_log.next_entry,
753 next_entry - priv->event_log.next_entry,
754 mode);
755 priv->event_log.non_wraps_count++;
756 } else {
757 if ((num_wraps - priv->event_log.num_wraps) > 1)
758 priv->event_log.wraps_more_count++;
759 else
760 priv->event_log.wraps_once_count++;
761 trace_iwlwifi_dev_ucode_wrap_event(priv,
762 num_wraps - priv->event_log.num_wraps,
763 next_entry, priv->event_log.next_entry);
764 if (next_entry < priv->event_log.next_entry) {
765 iwl_print_cont_event_trace(priv, base,
766 priv->event_log.next_entry,
767 capacity - priv->event_log.next_entry,
768 mode);
769
770 iwl_print_cont_event_trace(priv, base, 0,
771 next_entry, mode);
772 } else {
773 iwl_print_cont_event_trace(priv, base,
774 next_entry, capacity - next_entry,
775 mode);
776
777 iwl_print_cont_event_trace(priv, base, 0,
778 next_entry, mode);
779 }
780 }
781 priv->event_log.num_wraps = num_wraps;
782 priv->event_log.next_entry = next_entry;
783}
784
785/**
786 * iwl_bg_ucode_trace - Timer callback to log ucode event
787 *
788 * The timer is continually set to execute every
789 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
790 * this function is to perform continuous uCode event logging operation
791 * if enabled
792 */
793static void iwl_bg_ucode_trace(unsigned long data)
794{
795 struct iwl_priv *priv = (struct iwl_priv *)data;
796
797 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
798 return;
799
800 if (priv->event_log.ucode_trace) {
801 iwl_continuous_event_trace(priv);
802 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
803 mod_timer(&priv->ucode_trace,
804 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
805 }
806}
807
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700808static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800809 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700810{
Zhu Yi2f301222009-10-09 17:19:45 +0800811 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800812 struct iwl4965_beacon_notif *beacon =
813 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700814#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326a2008-06-12 09:47:11 +0800815 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700816
Tomas Winklere1623442009-01-27 14:27:56 -0800817 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700818 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800819 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700820 beacon->beacon_notify_hdr.failure_frame,
821 le32_to_cpu(beacon->ibss_mgr_status),
822 le32_to_cpu(beacon->high_tsf),
823 le32_to_cpu(beacon->low_tsf), rate);
824#endif
825
Johannes Berga85d7cc2010-07-31 08:34:10 -0700826 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
827
Johannes Berg05c914f2008-09-11 00:01:58 +0200828 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700829 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
830 queue_work(priv->workqueue, &priv->beacon_update);
831}
832
Zhu Yib481de92007-09-25 17:54:57 -0700833/* Handle notification from uCode that card's power state is changing
834 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700835static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800836 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700837{
Zhu Yi2f301222009-10-09 17:19:45 +0800838 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700839 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
840 unsigned long status = priv->status;
841
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800842 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700843 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800844 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
845 (flags & CT_CARD_DISABLED) ?
846 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700847
848 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800849 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700850
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700851 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700852 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
853
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700854 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
855 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700856
857 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700858 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700859 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700860 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700861 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700862 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800863 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700864 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700865 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800866 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700867 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700868
869 if (flags & HW_CARD_DISABLED)
870 set_bit(STATUS_RF_KILL_HW, &priv->status);
871 else
872 clear_bit(STATUS_RF_KILL_HW, &priv->status);
873
874
Zhu Yib481de92007-09-25 17:54:57 -0700875 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800876 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700877
878 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200879 test_bit(STATUS_RF_KILL_HW, &priv->status)))
880 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
881 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700882 else
883 wake_up_interruptible(&priv->wait_command_queue);
884}
885
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700886int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800887{
Tomas Winklere2e3c572008-07-18 13:53:04 +0800888 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800889 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800890 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
891 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
892 ~APMG_PS_CTRL_MSK_PWR_SRC);
893 } else {
894 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
895 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
896 ~APMG_PS_CTRL_MSK_PWR_SRC);
897 }
898
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700899 return 0;
Tomas Winklere2e3c572008-07-18 13:53:04 +0800900}
901
Wey-Yi Guy65550632010-06-24 13:18:35 -0700902static void iwl_bg_tx_flush(struct work_struct *work)
903{
904 struct iwl_priv *priv =
905 container_of(work, struct iwl_priv, tx_flush);
906
907 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
908 return;
909
910 /* do nothing if rf-kill is on */
911 if (!iwl_is_ready_rf(priv))
912 return;
913
914 if (priv->cfg->ops->lib->txfifo_flush) {
915 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
916 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
917 }
918}
919
Zhu Yib481de92007-09-25 17:54:57 -0700920/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700921 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700922 *
923 * Setup the RX handlers for each of the reply types sent from the uCode
924 * to the host.
925 *
926 * This function chains into the hardware specific files for them to setup
927 * any hardware specific handlers as well.
928 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800929static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700930{
Tomas Winkler885ba202008-05-29 16:34:55 +0800931 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700932 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
933 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800934 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
935 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700936 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700937 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700938 iwl_rx_pm_debug_statistics_notif;
939 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700940
Ben Cahill9fbab512007-11-29 11:09:47 +0800941 /*
942 * The same handler is used for both the REPLY to a discrete
943 * statistics request from the host as well as for the periodic
944 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700945 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800946 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800947 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800948
949 iwl_setup_rx_scan_handlers(priv);
950
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800951 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700952 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700953
Tomas Winklerc1354752008-05-29 16:35:04 +0800954 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
955 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800956 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700957 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
958 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800959 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700960 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800961 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700962 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700963}
964
Zhu Yib481de92007-09-25 17:54:57 -0700965/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800966 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700967 *
968 * Uses the priv->rx_handlers callback function array to invoke
969 * the appropriate handlers, including command responses,
970 * frame-received notifications, and other notifications.
971 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800972void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700973{
Tomas Winklera55360e2008-05-05 10:22:28 +0800974 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800975 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800976 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700977 u32 r, i;
978 int reclaim;
979 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800980 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800981 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700982 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -0700983
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800984 /* uCode's read index (stored in shared DRAM) indicates the last Rx
985 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800986 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700987 i = rxq->read;
988
989 /* Rx interrupt, but nothing sent from uCode */
990 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800991 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700992
Mohamed Abbas4752c932009-05-22 11:01:51 -0700993 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -0700994 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700995 if (total_empty < 0)
996 total_empty += RX_QUEUE_SIZE;
997
998 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800999 fill_rx = 1;
1000
Zhu Yib481de92007-09-25 17:54:57 -07001001 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001002 int len;
1003
Zhu Yib481de92007-09-25 17:54:57 -07001004 rxb = rxq->queue[i];
1005
Ben Cahill9fbab512007-11-29 11:09:47 +08001006 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001007 * then a bug has been introduced in the queue refilling
1008 * routines -- catch it here */
1009 BUG_ON(rxb == NULL);
1010
1011 rxq->queue[i] = NULL;
1012
Zhu Yi2f301222009-10-09 17:19:45 +08001013 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1014 PAGE_SIZE << priv->hw_params.rx_page_order,
1015 PCI_DMA_FROMDEVICE);
1016 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001017
Johannes Bergf4989d92010-05-28 04:08:30 -07001018 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1019 len += sizeof(u32); /* account for status word */
1020 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001021
Zhu Yib481de92007-09-25 17:54:57 -07001022 /* Reclaim a command buffer only if this packet is a response
1023 * to a (driver-originated) command.
1024 * If the packet (e.g. Rx frame) originated from uCode,
1025 * there is no command buffer to reclaim.
1026 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1027 * but apparently a few don't get set; catch them here. */
1028 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1029 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001030 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001031 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001032 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001033 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1034 (pkt->hdr.cmd != REPLY_TX);
1035
1036 /* Based on type of command response or notification,
1037 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001038 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001039 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001040 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001041 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001042 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001043 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001044 } else {
1045 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001046 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001047 "r %d i %d No handler needed for %s, 0x%02x\n",
1048 r, i, get_cmd_string(pkt->hdr.cmd),
1049 pkt->hdr.cmd);
1050 }
1051
Zhu Yi29b1b262009-10-23 13:42:25 -07001052 /*
1053 * XXX: After here, we should always check rxb->page
1054 * against NULL before touching it or its virtual
1055 * memory (pkt). Because some rx_handler might have
1056 * already taken or freed the pages.
1057 */
1058
Zhu Yib481de92007-09-25 17:54:57 -07001059 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001060 /* Invoke any callbacks, transfer the buffer to caller,
1061 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001062 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001063 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001064 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001065 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001066 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001067 }
1068
Zhu Yi73005152009-10-23 13:42:32 -07001069 /* Reuse the page if possible. For notification packets and
1070 * SKBs that fail to Rx correctly, add them back into the
1071 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001072 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001073 if (rxb->page != NULL) {
1074 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1075 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1076 PCI_DMA_FROMDEVICE);
1077 list_add_tail(&rxb->list, &rxq->rx_free);
1078 rxq->free_count++;
1079 } else
1080 list_add_tail(&rxb->list, &rxq->rx_used);
1081
Zhu Yib481de92007-09-25 17:54:57 -07001082 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001083
Zhu Yib481de92007-09-25 17:54:57 -07001084 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001085 /* If there are a lot of unused frames,
1086 * restock the Rx queue so ucode wont assert. */
1087 if (fill_rx) {
1088 count++;
1089 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001090 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001091 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001092 count = 0;
1093 }
1094 }
Zhu Yib481de92007-09-25 17:54:57 -07001095 }
1096
1097 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001098 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001099 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001100 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -07001101 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001102 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001103}
Tomas Winklera55360e2008-05-05 10:22:28 +08001104
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001105/* call this function to flush any scheduled tasklet */
1106static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1107{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001108 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001109 synchronize_irq(priv->pci_dev->irq);
1110 tasklet_kill(&priv->irq_tasklet);
1111}
1112
Mohamed Abbasef850d72009-05-22 11:01:50 -07001113static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001114{
1115 u32 inta, handled = 0;
1116 u32 inta_fh;
1117 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001118 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001119#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001120 u32 inta_mask;
1121#endif
1122
1123 spin_lock_irqsave(&priv->lock, flags);
1124
1125 /* Ack/clear/reset pending uCode interrupts.
1126 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1127 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001128 inta = iwl_read32(priv, CSR_INT);
1129 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001130
1131 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1132 * Any new interrupts that happen after this, either while we're
1133 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001134 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1135 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001136
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001137#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001138 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001139 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001140 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001141 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001142 inta, inta_mask, inta_fh);
1143 }
1144#endif
1145
Zhu Yi2f301222009-10-09 17:19:45 +08001146 spin_unlock_irqrestore(&priv->lock, flags);
1147
Zhu Yib481de92007-09-25 17:54:57 -07001148 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1149 * atomic, make sure that inta covers all the interrupts that
1150 * we've discovered, even if FH interrupt came in just after
1151 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001152 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001153 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001154 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001155 inta |= CSR_INT_BIT_FH_TX;
1156
1157 /* Now service all interrupt bits discovered above. */
1158 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001159 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001160
1161 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001162 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001163
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001164 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001165 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001166
1167 handled |= CSR_INT_BIT_HW_ERR;
1168
Zhu Yib481de92007-09-25 17:54:57 -07001169 return;
1170 }
1171
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001172#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001173 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001174 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001175 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001176 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001177 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001178 priv->isr_stats.sch++;
1179 }
Zhu Yib481de92007-09-25 17:54:57 -07001180
1181 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001182 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001183 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001184 priv->isr_stats.alive++;
1185 }
Zhu Yib481de92007-09-25 17:54:57 -07001186 }
1187#endif
1188 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001189 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001190
Ben Cahill9fbab512007-11-29 11:09:47 +08001191 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001192 if (inta & CSR_INT_BIT_RF_KILL) {
1193 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001194 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001195 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1196 hw_rf_kill = 1;
1197
Reinette Chatre4c423a22009-07-17 09:30:26 -07001198 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001199 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001200
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001201 priv->isr_stats.rfkill++;
1202
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001203 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001204 * the driver allows loading the ucode even if the radio
1205 * is killed. Hence update the killswitch state here. The
1206 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001207 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001208 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1209 if (hw_rf_kill)
1210 set_bit(STATUS_RF_KILL_HW, &priv->status);
1211 else
1212 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001213 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001214 }
Zhu Yib481de92007-09-25 17:54:57 -07001215
1216 handled |= CSR_INT_BIT_RF_KILL;
1217 }
1218
Ben Cahill9fbab512007-11-29 11:09:47 +08001219 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001220 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001221 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001222 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001223 handled |= CSR_INT_BIT_CT_KILL;
1224 }
1225
1226 /* Error detected by uCode */
1227 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001228 IWL_ERR(priv, "Microcode SW error detected. "
1229 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001230 priv->isr_stats.sw++;
1231 priv->isr_stats.sw_err = inta;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001232 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001233 handled |= CSR_INT_BIT_SW_ERR;
1234 }
1235
Ben Cahillc2e61da2009-10-30 14:36:09 -07001236 /*
1237 * uCode wakes up after power-down sleep.
1238 * Tell device about any new tx or host commands enqueued,
1239 * and about any Rx buffers made available while asleep.
1240 */
Zhu Yib481de92007-09-25 17:54:57 -07001241 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001242 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001243 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001244 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1245 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001246 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001247 handled |= CSR_INT_BIT_WAKEUP;
1248 }
1249
1250 /* All uCode command responses, including Tx command responses,
1251 * Rx "responses" (frame-received notification), and other
1252 * notifications from uCode come through here*/
1253 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001254 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001255 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001256 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1257 }
1258
Ben Cahillc72cd192009-10-30 14:36:08 -07001259 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001260 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001261 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001262 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001263 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001264 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001265 priv->ucode_write_complete = 1;
1266 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001267 }
1268
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001269 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001270 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001271 priv->isr_stats.unhandled++;
1272 }
Zhu Yib481de92007-09-25 17:54:57 -07001273
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001274 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001275 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001276 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001277 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001278 }
1279
1280 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001281 /* only Re-enable if diabled by irq */
1282 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001283 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001284
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001285#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001286 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001287 inta = iwl_read32(priv, CSR_INT);
1288 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1289 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001290 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001291 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1292 }
1293#endif
Zhu Yib481de92007-09-25 17:54:57 -07001294}
1295
Mohamed Abbasef850d72009-05-22 11:01:50 -07001296/* tasklet for iwlagn interrupt */
1297static void iwl_irq_tasklet(struct iwl_priv *priv)
1298{
1299 u32 inta = 0;
1300 u32 handled = 0;
1301 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001302 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001303#ifdef CONFIG_IWLWIFI_DEBUG
1304 u32 inta_mask;
1305#endif
1306
1307 spin_lock_irqsave(&priv->lock, flags);
1308
1309 /* Ack/clear/reset pending uCode interrupts.
1310 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1311 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001312 /* There is a hardware bug in the interrupt mask function that some
1313 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1314 * they are disabled in the CSR_INT_MASK register. Furthermore the
1315 * ICT interrupt handling mechanism has another bug that might cause
1316 * these unmasked interrupts fail to be detected. We workaround the
1317 * hardware bugs here by ACKing all the possible interrupts so that
1318 * interrupt coalescing can still be achieved.
1319 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001320 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001321
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001322 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001323
1324#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001325 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001326 /* just for debug */
1327 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1328 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1329 inta, inta_mask);
1330 }
1331#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001332
1333 spin_unlock_irqrestore(&priv->lock, flags);
1334
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001335 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1336 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001337
1338 /* Now service all interrupt bits discovered above. */
1339 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001340 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001341
1342 /* Tell the device to stop sending interrupts */
1343 iwl_disable_interrupts(priv);
1344
1345 priv->isr_stats.hw++;
1346 iwl_irq_handle_error(priv);
1347
1348 handled |= CSR_INT_BIT_HW_ERR;
1349
Mohamed Abbasef850d72009-05-22 11:01:50 -07001350 return;
1351 }
1352
1353#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001354 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001355 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1356 if (inta & CSR_INT_BIT_SCD) {
1357 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1358 "the frame/frames.\n");
1359 priv->isr_stats.sch++;
1360 }
1361
1362 /* Alive notification via Rx interrupt will do the real work */
1363 if (inta & CSR_INT_BIT_ALIVE) {
1364 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1365 priv->isr_stats.alive++;
1366 }
1367 }
1368#endif
1369 /* Safely ignore these bits for debug checks below */
1370 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1371
1372 /* HW RF KILL switch toggled */
1373 if (inta & CSR_INT_BIT_RF_KILL) {
1374 int hw_rf_kill = 0;
1375 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1376 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1377 hw_rf_kill = 1;
1378
Reinette Chatre4c423a22009-07-17 09:30:26 -07001379 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001380 hw_rf_kill ? "disable radio" : "enable radio");
1381
1382 priv->isr_stats.rfkill++;
1383
1384 /* driver only loads ucode once setting the interface up.
1385 * the driver allows loading the ucode even if the radio
1386 * is killed. Hence update the killswitch state here. The
1387 * rfkill handler will care about restarting if needed.
1388 */
1389 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1390 if (hw_rf_kill)
1391 set_bit(STATUS_RF_KILL_HW, &priv->status);
1392 else
1393 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001394 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001395 }
1396
1397 handled |= CSR_INT_BIT_RF_KILL;
1398 }
1399
1400 /* Chip got too hot and stopped itself */
1401 if (inta & CSR_INT_BIT_CT_KILL) {
1402 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1403 priv->isr_stats.ctkill++;
1404 handled |= CSR_INT_BIT_CT_KILL;
1405 }
1406
1407 /* Error detected by uCode */
1408 if (inta & CSR_INT_BIT_SW_ERR) {
1409 IWL_ERR(priv, "Microcode SW error detected. "
1410 " Restarting 0x%X.\n", inta);
1411 priv->isr_stats.sw++;
1412 priv->isr_stats.sw_err = inta;
1413 iwl_irq_handle_error(priv);
1414 handled |= CSR_INT_BIT_SW_ERR;
1415 }
1416
1417 /* uCode wakes up after power-down sleep */
1418 if (inta & CSR_INT_BIT_WAKEUP) {
1419 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1420 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001421 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1422 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001423
1424 priv->isr_stats.wakeup++;
1425
1426 handled |= CSR_INT_BIT_WAKEUP;
1427 }
1428
1429 /* All uCode command responses, including Tx command responses,
1430 * Rx "responses" (frame-received notification), and other
1431 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001432 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1433 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001434 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001435 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1436 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1437 iwl_write32(priv, CSR_FH_INT_STATUS,
1438 CSR49_FH_INT_RX_MASK);
1439 }
1440 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1441 handled |= CSR_INT_BIT_RX_PERIODIC;
1442 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1443 }
1444 /* Sending RX interrupt require many steps to be done in the
1445 * the device:
1446 * 1- write interrupt to current index in ICT table.
1447 * 2- dma RX frame.
1448 * 3- update RX shared data to indicate last write index.
1449 * 4- send interrupt.
1450 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001451 * but the shared data changes does not reflect this;
1452 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001453 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001454
1455 /* Disable periodic interrupt; we use it as just a one-shot. */
1456 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001457 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001458 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001459
1460 /*
1461 * Enable periodic interrupt in 8 msec only if we received
1462 * real RX interrupt (instead of just periodic int), to catch
1463 * any dangling Rx interrupt. If it was just the periodic
1464 * interrupt, there was no dangling Rx activity, and no need
1465 * to extend the periodic interrupt; one-shot is enough.
1466 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001467 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001468 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001469 CSR_INT_PERIODIC_ENA);
1470
Mohamed Abbasef850d72009-05-22 11:01:50 -07001471 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001472 }
1473
Ben Cahillc72cd192009-10-30 14:36:08 -07001474 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001475 if (inta & CSR_INT_BIT_FH_TX) {
1476 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001477 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001478 priv->isr_stats.tx++;
1479 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001480 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001481 priv->ucode_write_complete = 1;
1482 wake_up_interruptible(&priv->wait_command_queue);
1483 }
1484
1485 if (inta & ~handled) {
1486 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1487 priv->isr_stats.unhandled++;
1488 }
1489
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001490 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001491 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001492 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001493 }
1494
Mohamed Abbasef850d72009-05-22 11:01:50 -07001495 /* Re-enable all interrupts */
1496 /* only Re-enable if diabled by irq */
1497 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1498 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001499}
1500
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001501/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1502#define ACK_CNT_RATIO (50)
1503#define BA_TIMEOUT_CNT (5)
1504#define BA_TIMEOUT_MAX (16)
1505
1506/**
1507 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1508 *
1509 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1510 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1511 * operation state.
1512 */
1513bool iwl_good_ack_health(struct iwl_priv *priv,
1514 struct iwl_rx_packet *pkt)
1515{
1516 bool rc = true;
1517 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1518 int ba_timeout_delta;
1519
1520 actual_ack_cnt_delta =
1521 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001522 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001523 expected_ack_cnt_delta =
1524 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001525 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001526 ba_timeout_delta =
1527 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001528 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001529 if ((priv->_agn.agg_tids_count > 0) &&
1530 (expected_ack_cnt_delta > 0) &&
1531 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1532 < ACK_CNT_RATIO) &&
1533 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1534 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1535 " expected_ack_cnt = %d\n",
1536 actual_ack_cnt_delta, expected_ack_cnt_delta);
1537
Johannes Bergd73e4922010-05-06 12:18:41 -07001538#ifdef CONFIG_IWLWIFI_DEBUGFS
1539 /*
1540 * This is ifdef'ed on DEBUGFS because otherwise the
1541 * statistics aren't available. If DEBUGFS is set but
1542 * DEBUG is not, these will just compile out.
1543 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001544 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001545 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001546 IWL_DEBUG_RADIO(priv,
1547 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001548 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001549 ack_or_ba_timeout_collision);
1550#endif
1551 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1552 ba_timeout_delta);
1553 if (!actual_ack_cnt_delta &&
1554 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1555 rc = false;
1556 }
1557 return rc;
1558}
1559
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001560
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001561/*****************************************************************************
1562 *
1563 * sysfs attributes
1564 *
1565 *****************************************************************************/
1566
1567#ifdef CONFIG_IWLWIFI_DEBUG
1568
1569/*
1570 * The following adds a new attribute to the sysfs representation
1571 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1572 * used for controlling the debug level.
1573 *
1574 * See the level definitions in iwl for details.
1575 *
1576 * The debug_level being managed using sysfs below is a per device debug
1577 * level that is used instead of the global debug level if it (the per
1578 * device debug level) is set.
1579 */
1580static ssize_t show_debug_level(struct device *d,
1581 struct device_attribute *attr, char *buf)
1582{
1583 struct iwl_priv *priv = dev_get_drvdata(d);
1584 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1585}
1586static ssize_t store_debug_level(struct device *d,
1587 struct device_attribute *attr,
1588 const char *buf, size_t count)
1589{
1590 struct iwl_priv *priv = dev_get_drvdata(d);
1591 unsigned long val;
1592 int ret;
1593
1594 ret = strict_strtoul(buf, 0, &val);
1595 if (ret)
1596 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1597 else {
1598 priv->debug_level = val;
1599 if (iwl_alloc_traffic_mem(priv))
1600 IWL_ERR(priv,
1601 "Not enough memory to generate traffic log\n");
1602 }
1603 return strnlen(buf, count);
1604}
1605
1606static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1607 show_debug_level, store_debug_level);
1608
1609
1610#endif /* CONFIG_IWLWIFI_DEBUG */
1611
1612
1613static ssize_t show_temperature(struct device *d,
1614 struct device_attribute *attr, char *buf)
1615{
1616 struct iwl_priv *priv = dev_get_drvdata(d);
1617
1618 if (!iwl_is_alive(priv))
1619 return -EAGAIN;
1620
1621 return sprintf(buf, "%d\n", priv->temperature);
1622}
1623
1624static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1625
1626static ssize_t show_tx_power(struct device *d,
1627 struct device_attribute *attr, char *buf)
1628{
1629 struct iwl_priv *priv = dev_get_drvdata(d);
1630
1631 if (!iwl_is_ready_rf(priv))
1632 return sprintf(buf, "off\n");
1633 else
1634 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1635}
1636
1637static ssize_t store_tx_power(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, 10, &val);
1646 if (ret)
1647 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1648 else {
1649 ret = iwl_set_tx_power(priv, val, false);
1650 if (ret)
1651 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1652 ret);
1653 else
1654 ret = count;
1655 }
1656 return ret;
1657}
1658
1659static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1660
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001661static struct attribute *iwl_sysfs_entries[] = {
1662 &dev_attr_temperature.attr,
1663 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001664#ifdef CONFIG_IWLWIFI_DEBUG
1665 &dev_attr_debug_level.attr,
1666#endif
1667 NULL
1668};
1669
1670static struct attribute_group iwl_attribute_group = {
1671 .name = NULL, /* put in device directory */
1672 .attrs = iwl_sysfs_entries,
1673};
1674
Zhu Yib481de92007-09-25 17:54:57 -07001675/******************************************************************************
1676 *
1677 * uCode download functions
1678 *
1679 ******************************************************************************/
1680
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001681static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001682{
Tomas Winkler98c92212008-01-14 17:46:20 -08001683 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1684 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1685 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1686 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1687 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1688 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001689}
1690
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001691static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001692{
1693 /* Remove all resets to allow NIC to operate */
1694 iwl_write32(priv, CSR_RESET, 0);
1695}
1696
Johannes Bergdd7a2502010-04-28 23:33:10 -07001697struct iwlagn_ucode_capabilities {
1698 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001699 u32 standard_phy_calibration_size;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001700};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001701
Johannes Bergb08dfd02010-01-29 11:54:56 -08001702static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001703static int iwl_mac_setup_register(struct iwl_priv *priv,
1704 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001705
Jay Sternberg39396082010-08-12 10:24:07 -07001706#define UCODE_EXPERIMENTAL_INDEX 100
1707#define UCODE_EXPERIMENTAL_TAG "exp"
1708
Johannes Bergb08dfd02010-01-29 11:54:56 -08001709static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001710{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001711 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001712 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001713
Jay Sternberg39396082010-08-12 10:24:07 -07001714 if (first) {
1715#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1716 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1717 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1718 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1719#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001720 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001721 sprintf(tag, "%d", priv->fw_index);
1722 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001723 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001724 sprintf(tag, "%d", priv->fw_index);
1725 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001726
1727 if (priv->fw_index < priv->cfg->ucode_api_min) {
1728 IWL_ERR(priv, "no suitable firmware found!\n");
1729 return -ENOENT;
1730 }
1731
Jay Sternberg39396082010-08-12 10:24:07 -07001732 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001733
Jay Sternberg39396082010-08-12 10:24:07 -07001734 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1735 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1736 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001737 priv->firmware_name);
1738
1739 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1740 &priv->pci_dev->dev, GFP_KERNEL, priv,
1741 iwl_ucode_callback);
1742}
1743
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001744struct iwlagn_firmware_pieces {
1745 const void *inst, *data, *init, *init_data, *boot;
1746 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1747
1748 u32 build;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001749
1750 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1751 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001752};
1753
1754static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1755 const struct firmware *ucode_raw,
1756 struct iwlagn_firmware_pieces *pieces)
1757{
1758 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1759 u32 api_ver, hdr_size;
1760 const u8 *src;
1761
1762 priv->ucode_ver = le32_to_cpu(ucode->ver);
1763 api_ver = IWL_UCODE_API(priv->ucode_ver);
1764
1765 switch (api_ver) {
1766 default:
1767 /*
1768 * 4965 doesn't revision the firmware file format
1769 * along with the API version, it always uses v1
1770 * file format.
1771 */
1772 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1773 CSR_HW_REV_TYPE_4965) {
1774 hdr_size = 28;
1775 if (ucode_raw->size < hdr_size) {
1776 IWL_ERR(priv, "File size too small!\n");
1777 return -EINVAL;
1778 }
1779 pieces->build = le32_to_cpu(ucode->u.v2.build);
1780 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1781 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1782 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1783 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1784 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1785 src = ucode->u.v2.data;
1786 break;
1787 }
1788 /* fall through for 4965 */
1789 case 0:
1790 case 1:
1791 case 2:
1792 hdr_size = 24;
1793 if (ucode_raw->size < hdr_size) {
1794 IWL_ERR(priv, "File size too small!\n");
1795 return -EINVAL;
1796 }
1797 pieces->build = 0;
1798 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1799 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1800 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1801 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1802 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1803 src = ucode->u.v1.data;
1804 break;
1805 }
1806
1807 /* Verify size of file vs. image size info in file's header */
1808 if (ucode_raw->size != hdr_size + pieces->inst_size +
1809 pieces->data_size + pieces->init_size +
1810 pieces->init_data_size + pieces->boot_size) {
1811
1812 IWL_ERR(priv,
1813 "uCode file size %d does not match expected size\n",
1814 (int)ucode_raw->size);
1815 return -EINVAL;
1816 }
1817
1818 pieces->inst = src;
1819 src += pieces->inst_size;
1820 pieces->data = src;
1821 src += pieces->data_size;
1822 pieces->init = src;
1823 src += pieces->init_size;
1824 pieces->init_data = src;
1825 src += pieces->init_data_size;
1826 pieces->boot = src;
1827 src += pieces->boot_size;
1828
1829 return 0;
1830}
1831
Johannes Bergdd7a2502010-04-28 23:33:10 -07001832static int iwlagn_wanted_ucode_alternative = 1;
1833
1834static int iwlagn_load_firmware(struct iwl_priv *priv,
1835 const struct firmware *ucode_raw,
1836 struct iwlagn_firmware_pieces *pieces,
1837 struct iwlagn_ucode_capabilities *capa)
1838{
1839 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1840 struct iwl_ucode_tlv *tlv;
1841 size_t len = ucode_raw->size;
1842 const u8 *data;
1843 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1844 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001845 u32 tlv_len;
1846 enum iwl_ucode_tlv_type tlv_type;
1847 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001848
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001849 if (len < sizeof(*ucode)) {
1850 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001851 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001852 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001853
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001854 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1855 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1856 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001857 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001858 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001859
1860 /*
1861 * Check which alternatives are present, and "downgrade"
1862 * when the chosen alternative is not present, warning
1863 * the user when that happens. Some files may not have
1864 * any alternatives, so don't warn in that case.
1865 */
1866 alternatives = le64_to_cpu(ucode->alternatives);
1867 tmp = wanted_alternative;
1868 if (wanted_alternative > 63)
1869 wanted_alternative = 63;
1870 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1871 wanted_alternative--;
1872 if (wanted_alternative && wanted_alternative != tmp)
1873 IWL_WARN(priv,
1874 "uCode alternative %d not available, choosing %d\n",
1875 tmp, wanted_alternative);
1876
1877 priv->ucode_ver = le32_to_cpu(ucode->ver);
1878 pieces->build = le32_to_cpu(ucode->build);
1879 data = ucode->data;
1880
1881 len -= sizeof(*ucode);
1882
Johannes Berg704da532010-07-14 09:34:50 -07001883 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001884 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001885
1886 len -= sizeof(*tlv);
1887 tlv = (void *)data;
1888
1889 tlv_len = le32_to_cpu(tlv->length);
1890 tlv_type = le16_to_cpu(tlv->type);
1891 tlv_alt = le16_to_cpu(tlv->alternative);
1892 tlv_data = tlv->data;
1893
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001894 if (len < tlv_len) {
1895 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1896 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001897 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001898 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001899 len -= ALIGN(tlv_len, 4);
1900 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1901
1902 /*
1903 * Alternative 0 is always valid.
1904 *
1905 * Skip alternative TLVs that are not selected.
1906 */
1907 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1908 continue;
1909
1910 switch (tlv_type) {
1911 case IWL_UCODE_TLV_INST:
1912 pieces->inst = tlv_data;
1913 pieces->inst_size = tlv_len;
1914 break;
1915 case IWL_UCODE_TLV_DATA:
1916 pieces->data = tlv_data;
1917 pieces->data_size = tlv_len;
1918 break;
1919 case IWL_UCODE_TLV_INIT:
1920 pieces->init = tlv_data;
1921 pieces->init_size = tlv_len;
1922 break;
1923 case IWL_UCODE_TLV_INIT_DATA:
1924 pieces->init_data = tlv_data;
1925 pieces->init_data_size = tlv_len;
1926 break;
1927 case IWL_UCODE_TLV_BOOT:
1928 pieces->boot = tlv_data;
1929 pieces->boot_size = tlv_len;
1930 break;
1931 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001932 if (tlv_len != sizeof(u32))
1933 goto invalid_tlv_len;
1934 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001935 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001936 break;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001937 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001938 if (tlv_len != sizeof(u32))
1939 goto invalid_tlv_len;
1940 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001941 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001942 break;
1943 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001944 if (tlv_len != sizeof(u32))
1945 goto invalid_tlv_len;
1946 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001947 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001948 break;
1949 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001950 if (tlv_len != sizeof(u32))
1951 goto invalid_tlv_len;
1952 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001953 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001954 break;
1955 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001956 if (tlv_len != sizeof(u32))
1957 goto invalid_tlv_len;
1958 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001959 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001960 break;
1961 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001962 if (tlv_len != sizeof(u32))
1963 goto invalid_tlv_len;
1964 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001965 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001966 break;
1967 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001968 if (tlv_len != sizeof(u32))
1969 goto invalid_tlv_len;
1970 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001971 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001972 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07001973 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
1974 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07001975 goto invalid_tlv_len;
1976 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07001977 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001978 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001979 if (tlv_len != sizeof(u32))
1980 goto invalid_tlv_len;
1981 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001982 le32_to_cpup((__le32 *)tlv_data);
1983 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001984 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001985 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001986 break;
1987 }
1988 }
1989
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001990 if (len) {
1991 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
1992 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07001993 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001994 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001995
Johannes Berg704da532010-07-14 09:34:50 -07001996 return 0;
1997
1998 invalid_tlv_len:
1999 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
2000 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
2001
2002 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002003}
2004
Johannes Bergb08dfd02010-01-29 11:54:56 -08002005/**
2006 * iwl_ucode_callback - callback when firmware was loaded
2007 *
2008 * If loaded successfully, copies the firmware into buffers
2009 * for the card to fetch (via DMA).
2010 */
2011static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
2012{
2013 struct iwl_priv *priv = context;
2014 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002015 int err;
2016 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002017 const unsigned int api_max = priv->cfg->ucode_api_max;
2018 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002019 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07002020 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002021 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002022 struct iwlagn_ucode_capabilities ucode_capa = {
2023 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002024 .standard_phy_calibration_size =
2025 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07002026 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002027
2028 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07002029
Johannes Bergb08dfd02010-01-29 11:54:56 -08002030 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07002031 if (priv->fw_index <= priv->cfg->ucode_api_max)
2032 IWL_ERR(priv,
2033 "request for firmware file '%s' failed.\n",
2034 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002035 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002036 }
2037
Johannes Bergb08dfd02010-01-29 11:54:56 -08002038 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
2039 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07002040
Johannes Berg22adba22010-04-28 12:09:14 -07002041 /* Make sure that we got at least the API version number */
2042 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002043 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08002044 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002045 }
2046
2047 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002048 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002049
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002050 if (ucode->ver)
2051 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
2052 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07002053 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
2054 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002055
2056 if (err)
2057 goto try_again;
2058
Reinette Chatrea0987a82008-12-02 12:14:06 -08002059 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002060 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07002061
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002062 /*
2063 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08002064 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002065 * on the API version read from firmware header from here on forward
2066 */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002067 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002068 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002069 "Driver supports v%u, firmware is v%u.\n",
2070 api_max, api_ver);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002071 goto try_again;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002072 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08002073
Reinette Chatrea0987a82008-12-02 12:14:06 -08002074 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08002075 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002076 "got v%u. New firmware can be obtained "
2077 "from http://www.intellinuxwireless.org.\n",
2078 api_max, api_ver);
2079
Johannes Berg3e4de762010-04-28 12:09:12 -07002080 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07002081 sprintf(buildstr, " build %u%s", build,
2082 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
2083 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07002084 else
2085 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08002086
Johannes Berg3e4de762010-04-28 12:09:12 -07002087 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002088 IWL_UCODE_MAJOR(priv->ucode_ver),
2089 IWL_UCODE_MINOR(priv->ucode_ver),
2090 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07002091 IWL_UCODE_SERIAL(priv->ucode_ver),
2092 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002093
Johannes Berg3e4de762010-04-28 12:09:12 -07002094 snprintf(priv->hw->wiphy->fw_version,
2095 sizeof(priv->hw->wiphy->fw_version),
2096 "%u.%u.%u.%u%s",
2097 IWL_UCODE_MAJOR(priv->ucode_ver),
2098 IWL_UCODE_MINOR(priv->ucode_ver),
2099 IWL_UCODE_API(priv->ucode_ver),
2100 IWL_UCODE_SERIAL(priv->ucode_ver),
2101 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07002102
Johannes Bergb08dfd02010-01-29 11:54:56 -08002103 /*
2104 * For any of the failures below (before allocating pci memory)
2105 * we will try to load a version with a smaller API -- maybe the
2106 * user just got a corrupted version of the latest API.
2107 */
2108
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002109 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2110 priv->ucode_ver);
2111 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
2112 pieces.inst_size);
2113 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
2114 pieces.data_size);
2115 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2116 pieces.init_size);
2117 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2118 pieces.init_data_size);
2119 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2120 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002121
2122 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002123 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2124 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2125 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002126 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002127 }
2128
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002129 if (pieces.data_size > priv->hw_params.max_data_size) {
2130 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2131 pieces.data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002132 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002133 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002134
2135 if (pieces.init_size > priv->hw_params.max_inst_size) {
2136 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2137 pieces.init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002138 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002139 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002140
2141 if (pieces.init_data_size > priv->hw_params.max_data_size) {
2142 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2143 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002144 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002145 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002146
2147 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2148 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2149 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002150 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002151 }
2152
2153 /* Allocate ucode buffers for card's bus-master loading ... */
2154
2155 /* Runtime instructions and 2 copies of data:
2156 * 1) unmodified from disk
2157 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002158 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002159 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002160
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002161 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002162 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002163
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002164 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002165 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002166
Zhu, Yi1f304e42009-01-23 13:45:22 -08002167 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2168 !priv->ucode_data_backup.v_addr)
2169 goto err_pci_alloc;
2170
Zhu Yib481de92007-09-25 17:54:57 -07002171 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002172 if (pieces.init_size && pieces.init_data_size) {
2173 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002174 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002175
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002176 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002177 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002178
2179 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2180 goto err_pci_alloc;
2181 }
Zhu Yib481de92007-09-25 17:54:57 -07002182
2183 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002184 if (pieces.boot_size) {
2185 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002186 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002187
Tomas Winkler90e759d2007-11-29 11:09:41 +08002188 if (!priv->ucode_boot.v_addr)
2189 goto err_pci_alloc;
2190 }
Zhu Yib481de92007-09-25 17:54:57 -07002191
Johannes Bergb2e640d2010-05-05 23:24:54 -07002192 /* Now that we can no longer fail, copy information */
2193
2194 /*
2195 * The (size - 16) / 12 formula is based on the information recorded
2196 * for each event, which is of mode 1 (including timestamp) for all
2197 * new microcodes that include this information.
2198 */
2199 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2200 if (pieces.init_evtlog_size)
2201 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2202 else
2203 priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size;
2204 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2205 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2206 if (pieces.inst_evtlog_size)
2207 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2208 else
2209 priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size;
2210 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2211
Zhu Yib481de92007-09-25 17:54:57 -07002212 /* Copy images into buffers for card's bus-master reads ... */
2213
2214 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002215 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2216 pieces.inst_size);
2217 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002218
Tomas Winklere1623442009-01-27 14:27:56 -08002219 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002220 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2221
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002222 /*
2223 * Runtime data
2224 * NOTE: Copy into backup buffer will be done in iwl_up()
2225 */
2226 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2227 pieces.data_size);
2228 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2229 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002230
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002231 /* Initialization instructions */
2232 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002233 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002234 pieces.init_size);
2235 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002236 }
2237
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002238 /* Initialization data */
2239 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002240 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002241 pieces.init_data_size);
2242 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2243 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002244 }
2245
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002246 /* Bootstrap instructions */
2247 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2248 pieces.boot_size);
2249 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002250
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002251 /*
2252 * figure out the offset of chain noise reset and gain commands
2253 * base on the size of standard phy calibration commands table size
2254 */
2255 if (ucode_capa.standard_phy_calibration_size >
2256 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2257 ucode_capa.standard_phy_calibration_size =
2258 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2259
2260 priv->_agn.phy_calib_chain_noise_reset_cmd =
2261 ucode_capa.standard_phy_calibration_size;
2262 priv->_agn.phy_calib_chain_noise_gain_cmd =
2263 ucode_capa.standard_phy_calibration_size + 1;
2264
Johannes Bergb08dfd02010-01-29 11:54:56 -08002265 /**************************************************
2266 * This is still part of probe() in a sense...
2267 *
2268 * 9. Setup and register with mac80211 and debugfs
2269 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002270 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002271 if (err)
2272 goto out_unbind;
2273
2274 err = iwl_dbgfs_register(priv, DRV_NAME);
2275 if (err)
2276 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2277
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002278 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2279 &iwl_attribute_group);
2280 if (err) {
2281 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2282 goto out_unbind;
2283 }
2284
Zhu Yib481de92007-09-25 17:54:57 -07002285 /* We have our copies now, allow OS release its copies */
2286 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002287 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002288 return;
2289
2290 try_again:
2291 /* try next, if any */
2292 if (iwl_request_firmware(priv, false))
2293 goto out_unbind;
2294 release_firmware(ucode_raw);
2295 return;
Zhu Yib481de92007-09-25 17:54:57 -07002296
2297 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002298 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002299 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002300 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002301 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002302 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002303 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002304}
2305
Reinette Chatreb7a79402009-09-25 14:24:23 -07002306static const char *desc_lookup_text[] = {
2307 "OK",
2308 "FAIL",
2309 "BAD_PARAM",
2310 "BAD_CHECKSUM",
2311 "NMI_INTERRUPT_WDG",
2312 "SYSASSERT",
2313 "FATAL_ERROR",
2314 "BAD_COMMAND",
2315 "HW_ERROR_TUNE_LOCK",
2316 "HW_ERROR_TEMPERATURE",
2317 "ILLEGAL_CHAN_FREQ",
2318 "VCC_NOT_STABLE",
2319 "FH_ERROR",
2320 "NMI_INTERRUPT_HOST",
2321 "NMI_INTERRUPT_ACTION_PT",
2322 "NMI_INTERRUPT_UNKNOWN",
2323 "UCODE_VERSION_MISMATCH",
2324 "HW_ERROR_ABS_LOCK",
2325 "HW_ERROR_CAL_LOCK_FAIL",
2326 "NMI_INTERRUPT_INST_ACTION_PT",
2327 "NMI_INTERRUPT_DATA_ACTION_PT",
2328 "NMI_TRM_HW_ER",
2329 "NMI_INTERRUPT_TRM",
2330 "NMI_INTERRUPT_BREAK_POINT"
2331 "DEBUG_0",
2332 "DEBUG_1",
2333 "DEBUG_2",
2334 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002335};
2336
Jay Sternberg4b586452010-07-02 15:49:10 -07002337static struct { char *name; u8 num; } advanced_lookup[] = {
2338 { "NMI_INTERRUPT_WDG", 0x34 },
2339 { "SYSASSERT", 0x35 },
2340 { "UCODE_VERSION_MISMATCH", 0x37 },
2341 { "BAD_COMMAND", 0x38 },
2342 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2343 { "FATAL_ERROR", 0x3D },
2344 { "NMI_TRM_HW_ERR", 0x46 },
2345 { "NMI_INTERRUPT_TRM", 0x4C },
2346 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2347 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2348 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2349 { "NMI_INTERRUPT_HOST", 0x66 },
2350 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2351 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2352 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2353 { "ADVANCED_SYSASSERT", 0 },
2354};
2355
2356static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002357{
Jay Sternberg4b586452010-07-02 15:49:10 -07002358 int i;
2359 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002360
Jay Sternberg4b586452010-07-02 15:49:10 -07002361 if (num < max)
2362 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002363
Jay Sternberg4b586452010-07-02 15:49:10 -07002364 max = ARRAY_SIZE(advanced_lookup) - 1;
2365 for (i = 0; i < max; i++) {
2366 if (advanced_lookup[i].num == num)
2367 break;;
2368 }
2369 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002370}
2371
2372#define ERROR_START_OFFSET (1 * sizeof(u32))
2373#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2374
2375void iwl_dump_nic_error_log(struct iwl_priv *priv)
2376{
2377 u32 data2, line;
2378 u32 desc, time, count, base, data1;
2379 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002380 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002381
Johannes Bergb2e640d2010-05-05 23:24:54 -07002382 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002383 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002384 if (!base)
2385 base = priv->_agn.init_errlog_ptr;
2386 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002387 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002388 if (!base)
2389 base = priv->_agn.inst_errlog_ptr;
2390 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002391
2392 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002393 IWL_ERR(priv,
2394 "Not valid error log pointer 0x%08X for %s uCode\n",
2395 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002396 return;
2397 }
2398
2399 count = iwl_read_targ_mem(priv, base);
2400
2401 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2402 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2403 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2404 priv->status, count);
2405 }
2406
2407 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002408 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002409 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2410 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2411 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2412 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2413 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2414 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2415 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2416 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002417 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002418
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002419 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2420 blink1, blink2, ilink1, ilink2);
2421
Jay Sternberg87563712010-06-14 14:40:40 -07002422 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002423 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002424 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002425 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002426 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2427 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2428 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002429}
2430
2431#define EVENT_START_OFFSET (4 * sizeof(u32))
2432
2433/**
2434 * iwl_print_event_log - Dump error event log to syslog
2435 *
2436 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002437static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2438 u32 num_events, u32 mode,
2439 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002440{
2441 u32 i;
2442 u32 base; /* SRAM byte address of event log header */
2443 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2444 u32 ptr; /* SRAM byte address of log data */
2445 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002446 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002447
2448 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002449 return pos;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002450
2451 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002452 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002453 if (!base)
2454 base = priv->_agn.init_evtlog_ptr;
2455 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002456 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002457 if (!base)
2458 base = priv->_agn.inst_evtlog_ptr;
2459 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002460
2461 if (mode == 0)
2462 event_size = 2 * sizeof(u32);
2463 else
2464 event_size = 3 * sizeof(u32);
2465
2466 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2467
Ben Cahille5854472009-11-06 14:52:58 -08002468 /* Make sure device is powered up for SRAM reads */
2469 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2470 iwl_grab_nic_access(priv);
2471
2472 /* Set starting address; reads will auto-increment */
2473 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2474 rmb();
2475
Reinette Chatreb7a79402009-09-25 14:24:23 -07002476 /* "time" is actually "data" for mode 0 (no timestamp).
2477 * place event id # at far right for easier visual parsing. */
2478 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002479 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2480 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002481 if (mode == 0) {
2482 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002483 if (bufsz) {
2484 pos += scnprintf(*buf + pos, bufsz - pos,
2485 "EVT_LOG:0x%08x:%04u\n",
2486 time, ev);
2487 } else {
2488 trace_iwlwifi_dev_ucode_event(priv, 0,
2489 time, ev);
2490 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2491 time, ev);
2492 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002493 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002494 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002495 if (bufsz) {
2496 pos += scnprintf(*buf + pos, bufsz - pos,
2497 "EVT_LOGT:%010u:0x%08x:%04u\n",
2498 time, data, ev);
2499 } else {
2500 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002501 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002502 trace_iwlwifi_dev_ucode_event(priv, time,
2503 data, ev);
2504 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002505 }
2506 }
Ben Cahille5854472009-11-06 14:52:58 -08002507
2508 /* Allow device to power down */
2509 iwl_release_nic_access(priv);
2510 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002511 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002512}
2513
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002514/**
2515 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2516 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002517static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2518 u32 num_wraps, u32 next_entry,
2519 u32 size, u32 mode,
2520 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002521{
2522 /*
2523 * display the newest DEFAULT_LOG_ENTRIES entries
2524 * i.e the entries just before the next ont that uCode would fill.
2525 */
2526 if (num_wraps) {
2527 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002528 pos = iwl_print_event_log(priv,
2529 capacity - (size - next_entry),
2530 size - next_entry, mode,
2531 pos, buf, bufsz);
2532 pos = iwl_print_event_log(priv, 0,
2533 next_entry, mode,
2534 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002535 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002536 pos = iwl_print_event_log(priv, next_entry - size,
2537 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002538 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002539 if (next_entry < size) {
2540 pos = iwl_print_event_log(priv, 0, next_entry,
2541 mode, pos, buf, bufsz);
2542 } else {
2543 pos = iwl_print_event_log(priv, next_entry - size,
2544 size, mode, pos, buf, bufsz);
2545 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002546 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002547 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002548}
2549
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002550#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2551
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002552int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2553 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002554{
2555 u32 base; /* SRAM byte address of event log header */
2556 u32 capacity; /* event log capacity in # entries */
2557 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2558 u32 num_wraps; /* # times uCode wrapped to top of log */
2559 u32 next_entry; /* index of next entry to be written by uCode */
2560 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d2010-05-05 23:24:54 -07002561 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002562 int pos = 0;
2563 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002564
Johannes Bergb2e640d2010-05-05 23:24:54 -07002565 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002566 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002567 logsize = priv->_agn.init_evtlog_size;
2568 if (!base)
2569 base = priv->_agn.init_evtlog_ptr;
2570 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002571 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002572 logsize = priv->_agn.inst_evtlog_size;
2573 if (!base)
2574 base = priv->_agn.inst_evtlog_ptr;
2575 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002576
2577 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002578 IWL_ERR(priv,
2579 "Invalid event log pointer 0x%08X for %s uCode\n",
2580 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002581 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002582 }
2583
2584 /* event log header */
2585 capacity = iwl_read_targ_mem(priv, base);
2586 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2587 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2588 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2589
Johannes Bergb2e640d2010-05-05 23:24:54 -07002590 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002591 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002592 capacity, logsize);
2593 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002594 }
2595
Johannes Bergb2e640d2010-05-05 23:24:54 -07002596 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002597 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002598 next_entry, logsize);
2599 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002600 }
2601
Reinette Chatreb7a79402009-09-25 14:24:23 -07002602 size = num_wraps ? capacity : next_entry;
2603
2604 /* bail out if nothing in log */
2605 if (size == 0) {
2606 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002607 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002608 }
2609
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002610 /* enable/disable bt channel announcement */
2611 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2612
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002613#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002614 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002615 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2616 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2617#else
2618 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2619 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002620#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002621 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2622 size);
2623
2624#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002625 if (display) {
2626 if (full_log)
2627 bufsz = capacity * 48;
2628 else
2629 bufsz = size * 48;
2630 *buf = kmalloc(bufsz, GFP_KERNEL);
2631 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002632 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002633 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002634 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2635 /*
2636 * if uCode has wrapped back to top of log,
2637 * start at the oldest entry,
2638 * i.e the next one that uCode would fill.
2639 */
2640 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002641 pos = iwl_print_event_log(priv, next_entry,
2642 capacity - next_entry, mode,
2643 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002644 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002645 pos = iwl_print_event_log(priv, 0,
2646 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002647 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002648 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2649 next_entry, size, mode,
2650 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002651#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002652 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2653 next_entry, size, mode,
2654 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002655#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002656 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002657}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002658
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002659static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2660{
2661 struct iwl_ct_kill_config cmd;
2662 struct iwl_ct_kill_throttling_config adv_cmd;
2663 unsigned long flags;
2664 int ret = 0;
2665
2666 spin_lock_irqsave(&priv->lock, flags);
2667 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2668 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2669 spin_unlock_irqrestore(&priv->lock, flags);
2670 priv->thermal_throttle.ct_kill_toggle = false;
2671
2672 if (priv->cfg->support_ct_kill_exit) {
2673 adv_cmd.critical_temperature_enter =
2674 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2675 adv_cmd.critical_temperature_exit =
2676 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2677
2678 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2679 sizeof(adv_cmd), &adv_cmd);
2680 if (ret)
2681 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2682 else
2683 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2684 "succeeded, "
2685 "critical temperature enter is %d,"
2686 "exit is %d\n",
2687 priv->hw_params.ct_kill_threshold,
2688 priv->hw_params.ct_kill_exit_threshold);
2689 } else {
2690 cmd.critical_temperature_R =
2691 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2692
2693 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2694 sizeof(cmd), &cmd);
2695 if (ret)
2696 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2697 else
2698 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2699 "succeeded, "
2700 "critical temperature is %d\n",
2701 priv->hw_params.ct_kill_threshold);
2702 }
2703}
2704
Zhu Yib481de92007-09-25 17:54:57 -07002705/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002706 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002707 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002708 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002709 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002710static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002711{
Tomas Winkler57aab752008-04-14 21:16:03 -07002712 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002713
Tomas Winklere1623442009-01-27 14:27:56 -08002714 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002715
2716 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2717 /* We had an error bringing up the hardware, so take it
2718 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002719 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002720 goto restart;
2721 }
2722
2723 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2724 * This is a paranoid check, because we would not have gotten the
2725 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002726 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002727 /* Runtime instruction load was bad;
2728 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002729 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002730 goto restart;
2731 }
2732
Tomas Winkler57aab752008-04-14 21:16:03 -07002733 ret = priv->cfg->ops->lib->alive_notify(priv);
2734 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002735 IWL_WARN(priv,
2736 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002737 goto restart;
2738 }
2739
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002740 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002741 set_bit(STATUS_ALIVE, &priv->status);
2742
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002743 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2744 /* Enable timer to monitor the driver queues */
2745 mod_timer(&priv->monitor_recover,
2746 jiffies +
2747 msecs_to_jiffies(priv->cfg->monitor_recover_period));
2748 }
2749
Tomas Winklerfee12472008-04-03 16:05:21 -07002750 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002751 return;
2752
Johannes Berg36d68252008-05-15 12:55:26 +02002753 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002754
Johannes Berg470ab2d2010-01-21 11:23:30 -08002755 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002756
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002757 /* Configure Tx antenna selection based on H/W config */
2758 if (priv->cfg->ops->hcmd->set_tx_ant)
2759 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2760
Tomas Winkler3109ece2008-03-28 16:33:35 -07002761 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002762 struct iwl_rxon_cmd *active_rxon =
2763 (struct iwl_rxon_cmd *)&priv->active_rxon;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002764 /* apply any changes in staging */
2765 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002766 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2767 } else {
2768 /* Initialize our rx_config data */
Johannes Berg1dda6d22010-04-29 04:43:06 -07002769 iwl_connection_init_rx_config(priv, NULL);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002770
2771 if (priv->cfg->ops->hcmd->set_rxon_chain)
2772 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002773 }
2774
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002775 if (!priv->cfg->advanced_bt_coexist) {
2776 /* Configure Bluetooth device coexistence support */
2777 priv->cfg->ops->hcmd->send_bt_config(priv);
2778 }
Zhu Yib481de92007-09-25 17:54:57 -07002779
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002780 iwl_reset_run_time_calib(priv);
2781
Zhu Yib481de92007-09-25 17:54:57 -07002782 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002783 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002784
2785 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002786 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002787
Johannes Berge932a602009-10-02 13:44:03 -07002788 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002789
Tomas Winklere1623442009-01-27 14:27:56 -08002790 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002791 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002792 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002793
Johannes Berge312c242009-08-07 15:41:51 -07002794 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002795 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2796
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002797
Zhu Yib481de92007-09-25 17:54:57 -07002798 return;
2799
2800 restart:
2801 queue_work(priv->workqueue, &priv->restart);
2802}
2803
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002804static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002805
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002806static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002807{
2808 unsigned long flags;
2809 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002810
Tomas Winklere1623442009-01-27 14:27:56 -08002811 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002812
Zhu Yib481de92007-09-25 17:54:57 -07002813 if (!exit_pending)
2814 set_bit(STATUS_EXIT_PENDING, &priv->status);
2815
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002816 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2817 * to prevent rearm timer */
2818 if (priv->cfg->ops->lib->recover_from_tx_stall)
2819 del_timer_sync(&priv->monitor_recover);
2820
Johannes Berg2c810cc2010-04-29 00:53:29 -07002821 iwl_clear_ucode_stations(priv);
2822 iwl_dealloc_bcast_station(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002823 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002824
Johannes Berga1174132010-08-23 07:56:59 -07002825 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002826 priv->bt_status = 0;
Wey-Yi Guya4b96cc2010-08-23 07:57:08 -07002827 priv->bt_traffic_load = priv->cfg->bt_init_traffic_load;
Johannes Berga1174132010-08-23 07:56:59 -07002828 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002829 priv->bt_full_concurrent = false;
2830 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002831
Zhu Yib481de92007-09-25 17:54:57 -07002832 /* Unblock any waiting calls */
2833 wake_up_interruptible_all(&priv->wait_command_queue);
2834
Zhu Yib481de92007-09-25 17:54:57 -07002835 /* Wipe out the EXIT_PENDING status bit if we are not actually
2836 * exiting the module */
2837 if (!exit_pending)
2838 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2839
2840 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002841 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002842
2843 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002844 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002845 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002846 spin_unlock_irqrestore(&priv->lock, flags);
2847 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002848
2849 if (priv->mac80211_registered)
2850 ieee80211_stop_queues(priv->hw);
2851
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002852 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002853 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002854 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002855 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2856 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002857 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2858 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002859 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2860 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002861 goto exit;
2862 }
2863
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002864 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002865 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002866 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2867 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002868 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2869 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002870 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002871 STATUS_FW_ERROR |
2872 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2873 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002874
Mohamed Abbasef850d72009-05-22 11:01:50 -07002875 /* device going down, Stop using ICT table */
2876 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002877
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002878 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002879 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002880
Ben Cahill309e7312009-11-06 14:53:03 -08002881 /* Power-down device's busmaster DMA clocks */
2882 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002883 udelay(5);
2884
Ben Cahill309e7312009-11-06 14:53:03 -08002885 /* Make sure (redundant) we've released our request to stay awake */
2886 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2887
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002888 /* Stop the device, and put it in low power state */
2889 priv->cfg->ops->lib->apm_ops.stop(priv);
2890
Zhu Yib481de92007-09-25 17:54:57 -07002891 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002892 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002893
2894 if (priv->ibss_beacon)
2895 dev_kfree_skb(priv->ibss_beacon);
2896 priv->ibss_beacon = NULL;
2897
2898 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002899 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002900}
2901
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002902static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002903{
2904 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002905 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002906 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002907
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002908 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002909}
2910
Mohamed Abbas086ed112009-05-22 11:01:54 -07002911#define HW_READY_TIMEOUT (50)
2912
2913static int iwl_set_hw_ready(struct iwl_priv *priv)
2914{
2915 int ret = 0;
2916
2917 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2918 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2919
2920 /* See if we got it */
2921 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2922 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2923 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2924 HW_READY_TIMEOUT);
2925 if (ret != -ETIMEDOUT)
2926 priv->hw_ready = true;
2927 else
2928 priv->hw_ready = false;
2929
2930 IWL_DEBUG_INFO(priv, "hardware %s\n",
2931 (priv->hw_ready == 1) ? "ready" : "not ready");
2932 return ret;
2933}
2934
2935static int iwl_prepare_card_hw(struct iwl_priv *priv)
2936{
2937 int ret = 0;
2938
Frans Pop91dd6c22010-03-24 14:19:58 -07002939 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07002940
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002941 ret = iwl_set_hw_ready(priv);
2942 if (priv->hw_ready)
2943 return ret;
2944
2945 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002946 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2947 CSR_HW_IF_CONFIG_REG_PREPARE);
2948
2949 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2950 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
2951 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
2952
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002953 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002954 if (ret != -ETIMEDOUT)
2955 iwl_set_hw_ready(priv);
2956
2957 return ret;
2958}
2959
Zhu Yib481de92007-09-25 17:54:57 -07002960#define MAX_HW_RESTARTS 5
2961
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002962static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002963{
Tomas Winkler57aab752008-04-14 21:16:03 -07002964 int i;
2965 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002966
2967 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002968 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002969 return -EIO;
2970 }
2971
Reinette Chatree903fbd2008-01-30 22:05:15 -08002972 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002973 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002974 return -EIO;
2975 }
2976
Johannes Berg2c810cc2010-04-29 00:53:29 -07002977 ret = iwl_alloc_bcast_station(priv, true);
2978 if (ret)
2979 return ret;
2980
Mohamed Abbas086ed112009-05-22 11:01:54 -07002981 iwl_prepare_card_hw(priv);
2982
2983 if (!priv->hw_ready) {
2984 IWL_WARN(priv, "Exit HW not ready\n");
2985 return -EIO;
2986 }
2987
Zhu Yie655b9f2008-01-24 02:19:38 -08002988 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08002989 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08002990 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002991 else
Zhu Yie655b9f2008-01-24 02:19:38 -08002992 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002993
Tomas Winklerc1842d62008-08-04 16:00:43 +08002994 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02002995 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
2996
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002997 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02002998 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08002999 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003000 }
3001
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003002 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003003
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003004 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003005 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003006 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07003007 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003008 }
3009
3010 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003011 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3012 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003013 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3014
3015 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003016 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003017 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003018
3019 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003020 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3021 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003022
3023 /* Copy original ucode data image from disk into backup cache.
3024 * This will be used to initialize the on-board processor's
3025 * data SRAM for a clean start when the runtime program first loads. */
3026 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08003027 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003028
Zhu Yib481de92007-09-25 17:54:57 -07003029 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3030
Zhu Yib481de92007-09-25 17:54:57 -07003031 /* load bootstrap state machine,
3032 * load bootstrap program into processor's memory,
3033 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003034 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003035
Tomas Winkler57aab752008-04-14 21:16:03 -07003036 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003037 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
3038 ret);
Zhu Yib481de92007-09-25 17:54:57 -07003039 continue;
3040 }
3041
3042 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003043 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003044
Tomas Winklere1623442009-01-27 14:27:56 -08003045 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003046
3047 return 0;
3048 }
3049
3050 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003051 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08003052 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003053
3054 /* tried to restart and config the device for as long as our
3055 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003056 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003057 return -EIO;
3058}
3059
3060
3061/*****************************************************************************
3062 *
3063 * Workqueue callbacks
3064 *
3065 *****************************************************************************/
3066
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003067static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003068{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003069 struct iwl_priv *priv =
3070 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003071
3072 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3073 return;
3074
3075 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003076 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003077 mutex_unlock(&priv->mutex);
3078}
3079
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003080static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003081{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003082 struct iwl_priv *priv =
3083 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003084
3085 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3086 return;
3087
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003088 /* enable dram interrupt */
3089 iwl_reset_ict(priv);
3090
Zhu Yib481de92007-09-25 17:54:57 -07003091 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003092 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003093 mutex_unlock(&priv->mutex);
3094}
3095
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003096static void iwl_bg_run_time_calib_work(struct work_struct *work)
3097{
3098 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3099 run_time_calib_work);
3100
3101 mutex_lock(&priv->mutex);
3102
3103 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3104 test_bit(STATUS_SCANNING, &priv->status)) {
3105 mutex_unlock(&priv->mutex);
3106 return;
3107 }
3108
3109 if (priv->start_calib) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003110 if (priv->cfg->bt_statistics) {
3111 iwl_chain_noise_calibration(priv,
3112 (void *)&priv->_agn.statistics_bt);
3113 iwl_sensitivity_calibration(priv,
3114 (void *)&priv->_agn.statistics_bt);
3115 } else {
3116 iwl_chain_noise_calibration(priv,
3117 (void *)&priv->_agn.statistics);
3118 iwl_sensitivity_calibration(priv,
3119 (void *)&priv->_agn.statistics);
3120 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003121 }
3122
3123 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003124}
3125
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003126static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003127{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003128 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003129
3130 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3131 return;
3132
Johannes Berg19cc1082009-05-08 13:44:36 -07003133 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003134 bool bt_sco, bt_full_concurrent;
3135 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003136 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003137 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003138
Johannes Berg19cc1082009-05-08 13:44:36 -07003139 mutex_lock(&priv->mutex);
3140 priv->vif = NULL;
3141 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003142
3143 /*
3144 * __iwl_down() will clear the BT status variables,
3145 * which is correct, but when we restart we really
3146 * want to keep them so restore them afterwards.
3147 *
3148 * The restart process will later pick them up and
3149 * re-configure the hw when we reconfigure the BT
3150 * command.
3151 */
3152 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003153 bt_full_concurrent = priv->bt_full_concurrent;
3154 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003155 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003156 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003157
Johannes Berga1174132010-08-23 07:56:59 -07003158 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003159
3160 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003161 priv->bt_full_concurrent = bt_full_concurrent;
3162 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003163 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003164 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003165
Johannes Berg19cc1082009-05-08 13:44:36 -07003166 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003167 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003168 ieee80211_restart_hw(priv->hw);
3169 } else {
3170 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003171
3172 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3173 return;
3174
3175 mutex_lock(&priv->mutex);
3176 __iwl_up(priv);
3177 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003178 }
Zhu Yib481de92007-09-25 17:54:57 -07003179}
3180
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003181static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003182{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003183 struct iwl_priv *priv =
3184 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003185
3186 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3187 return;
3188
3189 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003190 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003191 mutex_unlock(&priv->mutex);
3192}
3193
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003194#define IWL_DELAY_NEXT_SCAN (HZ*2)
3195
Johannes Berg1dda6d22010-04-29 04:43:06 -07003196void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003197{
Zhu Yib481de92007-09-25 17:54:57 -07003198 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003199 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003200
Johannes Berg1dda6d22010-04-29 04:43:06 -07003201 if (!vif || !priv->is_open)
3202 return;
3203
3204 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003205 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003206 return;
3207 }
3208
Zhu Yib481de92007-09-25 17:54:57 -07003209 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3210 return;
3211
Tomas Winkler2a421b92008-06-12 09:47:10 +08003212 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003213
Zhu Yib481de92007-09-25 17:54:57 -07003214 conf = ieee80211_get_hw_conf(priv->hw);
3215
3216 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003217 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003218
Johannes Berg948f5a22010-07-29 07:07:51 -07003219 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003220 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003221 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003222 "Attempting to continue.\n");
3223
3224 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
3225
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08003226 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03003227
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003228 if (priv->cfg->ops->hcmd->set_rxon_chain)
3229 priv->cfg->ops->hcmd->set_rxon_chain(priv);
3230
Johannes Berg1dda6d22010-04-29 04:43:06 -07003231 priv->staging_rxon.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003232
Tomas Winklere1623442009-01-27 14:27:56 -08003233 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003234 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003235
Johannes Bergc213d742010-05-06 12:21:40 -07003236 if (vif->bss_conf.use_short_preamble)
Zhu Yib481de92007-09-25 17:54:57 -07003237 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
3238 else
3239 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
3240
3241 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003242 if (vif->bss_conf.use_short_slot)
Zhu Yib481de92007-09-25 17:54:57 -07003243 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
3244 else
3245 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003246 }
3247
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003248 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003249
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003250 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003251 vif->bss_conf.aid, priv->active_rxon.bssid_addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003252
Johannes Berg1dda6d22010-04-29 04:43:06 -07003253 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003254 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07003255 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003256 case NL80211_IFTYPE_ADHOC:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003257 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003258 break;
Zhu Yib481de92007-09-25 17:54:57 -07003259 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003260 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003261 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003262 break;
3263 }
3264
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08003265 /* the chain noise calibration will enabled PM upon completion
3266 * If chain noise has already been run, then we need to enable
3267 * power management here */
3268 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07003269 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003270
3271 /* Enable Rx differential gain and sensitivity calibrations */
3272 iwl_chain_noise_reset(priv);
3273 priv->start_calib = 1;
3274
Reinette Chatre508e32e2008-04-14 21:16:13 -07003275}
3276
Zhu Yib481de92007-09-25 17:54:57 -07003277/*****************************************************************************
3278 *
3279 * mac80211 entry point functions
3280 *
3281 *****************************************************************************/
3282
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003283#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08003284
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003285/*
3286 * Not a mac80211 entry point function, but it fits in with all the
3287 * other mac80211 functions grouped here.
3288 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003289static int iwl_mac_setup_register(struct iwl_priv *priv,
3290 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003291{
3292 int ret;
3293 struct ieee80211_hw *hw = priv->hw;
3294 hw->rate_control_algorithm = "iwl-agn-rs";
3295
3296 /* Tell mac80211 our characteristics */
3297 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003298 IEEE80211_HW_AMPDU_AGGREGATION |
3299 IEEE80211_HW_SPECTRUM_MGMT;
3300
3301 if (!priv->cfg->broken_powersave)
3302 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3303 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3304
Johannes Bergba37a3d2009-12-10 14:37:27 -08003305 if (priv->cfg->sku & IWL_SKU_N)
3306 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3307 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3308
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003309 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003310 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3311
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003312 hw->wiphy->interface_modes =
3313 BIT(NL80211_IFTYPE_STATION) |
3314 BIT(NL80211_IFTYPE_ADHOC);
3315
Reinette Chatref6c8f152010-03-12 11:13:26 -08003316 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003317 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003318
3319 /*
3320 * For now, disable PS by default because it affects
3321 * RX performance significantly.
3322 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003323 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003324
Reinette Chatre1382c712010-02-25 10:02:19 -08003325 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003326 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003327 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003328
3329 /* Default value; 4 EDCA QOS priorities */
3330 hw->queues = 4;
3331
3332 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3333
3334 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3335 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3336 &priv->bands[IEEE80211_BAND_2GHZ];
3337 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3338 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3339 &priv->bands[IEEE80211_BAND_5GHZ];
3340
3341 ret = ieee80211_register_hw(priv->hw);
3342 if (ret) {
3343 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3344 return ret;
3345 }
3346 priv->mac80211_registered = 1;
3347
3348 return 0;
3349}
3350
3351
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003352static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003353{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003354 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003355 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003356
Tomas Winklere1623442009-01-27 14:27:56 -08003357 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003358
3359 /* we should be verifying the device is ready to be opened */
3360 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003361 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003362 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003363
Zhu Yie655b9f2008-01-24 02:19:38 -08003364 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003365 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003366
Tomas Winklerc1842d62008-08-04 16:00:43 +08003367 if (iwl_is_rfkill(priv))
3368 goto out;
3369
Tomas Winklere1623442009-01-27 14:27:56 -08003370 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003371
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003372 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08003373 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003374 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3375 test_bit(STATUS_READY, &priv->status),
3376 UCODE_READY_TIMEOUT);
3377 if (!ret) {
3378 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003379 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003380 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003381 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003382 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003383 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003384
Johannes Berge932a602009-10-02 13:44:03 -07003385 iwl_led_start(priv);
3386
Tomas Winklerc1842d62008-08-04 16:00:43 +08003387out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003388 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003389 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003390 return 0;
3391}
3392
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003393static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003394{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003395 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003396
Tomas Winklere1623442009-01-27 14:27:56 -08003397 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003398
Johannes Berg19cc1082009-05-08 13:44:36 -07003399 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003400 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003401
Zhu Yib481de92007-09-25 17:54:57 -07003402 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003403
Wey-Yi Guy5bddf542009-08-21 13:34:25 -07003404 if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003405 /* stop mac, cancel any scan request and clear
3406 * RXON_FILTER_ASSOC_MSK BIT
3407 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003408 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003409 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003410 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003411 }
3412
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003413 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003414
3415 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003416
3417 /* enable interrupts again in order to receive rfkill changes */
3418 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3419 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003420
Tomas Winklere1623442009-01-27 14:27:56 -08003421 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003422}
3423
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003424static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003425{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003426 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003427
Tomas Winklere1623442009-01-27 14:27:56 -08003428 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003429
Tomas Winklere1623442009-01-27 14:27:56 -08003430 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003431 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003432
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003433 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003434 dev_kfree_skb_any(skb);
3435
Tomas Winklere1623442009-01-27 14:27:56 -08003436 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003437 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003438}
3439
Johannes Berg1dda6d22010-04-29 04:43:06 -07003440void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003441{
Tomas Winkler857485c2008-03-21 13:53:44 -07003442 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003443
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003444 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003445 return;
3446
3447 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08003448 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003449
3450 /* RXON - unassoc (to set timing command) */
3451 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003452 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003453
3454 /* RXON Timing */
Johannes Berg948f5a22010-07-29 07:07:51 -07003455 ret = iwl_send_rxon_timing(priv, vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003456 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003457 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003458 "Attempting to continue.\n");
3459
Daniel C Halperinf513dff2009-11-13 11:56:34 -08003460 /* AP has all antennas */
3461 priv->chain_noise_data.active_chains =
3462 priv->hw_params.valid_rx_ant;
3463 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003464 if (priv->cfg->ops->hcmd->set_rxon_chain)
3465 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003466
Johannes Berg1dda6d22010-04-29 04:43:06 -07003467 priv->staging_rxon.assoc_id = 0;
3468
Johannes Bergc213d742010-05-06 12:21:40 -07003469 if (vif->bss_conf.use_short_preamble)
Zhu Yib481de92007-09-25 17:54:57 -07003470 priv->staging_rxon.flags |=
3471 RXON_FLG_SHORT_PREAMBLE_MSK;
3472 else
3473 priv->staging_rxon.flags &=
3474 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3475
3476 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003477 if (vif->bss_conf.use_short_slot)
Zhu Yib481de92007-09-25 17:54:57 -07003478 priv->staging_rxon.flags |=
3479 RXON_FLG_SHORT_SLOT_MSK;
3480 else
3481 priv->staging_rxon.flags &=
3482 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003483 }
3484 /* restore RXON assoc */
3485 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003486 iwlcore_commit_rxon(priv);
Zhu Yie1493de2007-09-27 11:27:32 +08003487 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003488 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003489
3490 /* FIXME - we need to add code here to detect a totally new
3491 * configuration, reset the AP, unassoc, rxon timing, assoc,
3492 * clear sta table, add BCAST sta... */
3493}
3494
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003495static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003496 struct ieee80211_vif *vif,
3497 struct ieee80211_key_conf *keyconf,
3498 struct ieee80211_sta *sta,
3499 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003500{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003501
Tomas Winkler9f586712008-11-12 13:14:05 -08003502 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08003503 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003504
Johannes Bergbdbb6122010-04-30 13:53:37 -07003505 iwl_update_tkip_key(priv, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003506 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003507
Tomas Winklere1623442009-01-27 14:27:56 -08003508 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003509}
3510
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003511static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003512 struct ieee80211_vif *vif,
3513 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003514 struct ieee80211_key_conf *key)
3515{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003516 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08003517 int ret;
3518 u8 sta_id;
3519 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003520
Tomas Winklere1623442009-01-27 14:27:56 -08003521 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003522
Tomas Winkler90e8e422009-06-19 13:52:42 -07003523 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003524 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003525 return -EOPNOTSUPP;
3526 }
Zhu Yib481de92007-09-25 17:54:57 -07003527
Johannes Berg0af8bca2010-04-30 14:08:00 -07003528 sta_id = iwl_sta_id_or_broadcast(priv, sta);
3529 if (sta_id == IWL_INVALID_STATION)
3530 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003531
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003532 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003533 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003534
Johannes Berga90178fa2010-03-30 02:44:16 -07003535 /*
3536 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003537 * so far, we are in legacy wep mode (group key only), otherwise we are
3538 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003539 * In legacy wep mode, we use another host command to the uCode.
3540 */
Johannes Berg97359d12010-08-10 09:46:38 +02003541 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3542 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003543 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003544 if (cmd == SET_KEY)
3545 is_default_wep_key = !priv->key_mapping_key;
3546 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003547 is_default_wep_key =
3548 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003549 }
mabbas052c4b92007-10-25 17:15:43 +08003550
Zhu Yib481de92007-09-25 17:54:57 -07003551 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003552 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003553 if (is_default_wep_key)
3554 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003555 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07003556 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003557
Tomas Winklere1623442009-01-27 14:27:56 -08003558 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003559 break;
3560 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003561 if (is_default_wep_key)
3562 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003563 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07003564 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003565
Tomas Winklere1623442009-01-27 14:27:56 -08003566 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003567 break;
3568 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003569 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003570 }
3571
Johannes Berg72e15d72010-02-19 11:42:32 -08003572 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003573 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003574
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003575 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003576}
3577
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003578static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01003579 struct ieee80211_vif *vif,
Johannes Berg832f47e2010-04-29 04:43:07 -07003580 enum ieee80211_ampdu_mlme_action action,
3581 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003582{
3583 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003584 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003585
Tomas Winklere1623442009-01-27 14:27:56 -08003586 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003587 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003588
3589 if (!(priv->cfg->sku & IWL_SKU_N))
3590 return -EACCES;
3591
Johannes Berg4620fef2010-06-16 03:30:27 -07003592 mutex_lock(&priv->mutex);
3593
Tomas Winklerd783b062008-07-18 13:53:02 +08003594 switch (action) {
3595 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003596 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003597 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3598 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003599 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003600 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003601 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003602 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003603 ret = 0;
3604 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003605 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003606 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003607 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003608 if (ret == 0) {
3609 priv->_agn.agg_tids_count++;
3610 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3611 priv->_agn.agg_tids_count);
3612 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003613 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003614 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003615 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003616 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003617 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3618 priv->_agn.agg_tids_count--;
3619 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3620 priv->_agn.agg_tids_count);
3621 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003622 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003623 ret = 0;
Johannes Berg94597ab2010-08-09 10:57:02 -07003624 if (priv->cfg->use_rts_for_aggregation) {
3625 struct iwl_station_priv *sta_priv =
3626 (void *) sta->drv_priv;
3627 /*
3628 * switch off RTS/CTS if it was previously enabled
3629 */
3630
3631 sta_priv->lq_sta.lq.general_params.flags &=
3632 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
3633 iwl_send_lq_cmd(priv, &sta_priv->lq_sta.lq,
3634 CMD_ASYNC, false);
3635 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003636 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003637 case IEEE80211_AMPDU_TX_OPERATIONAL:
Johannes Berg94597ab2010-08-09 10:57:02 -07003638 if (priv->cfg->use_rts_for_aggregation) {
3639 struct iwl_station_priv *sta_priv =
3640 (void *) sta->drv_priv;
3641
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003642 /*
3643 * switch to RTS/CTS if it is the prefer protection
3644 * method for HT traffic
3645 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003646
3647 sta_priv->lq_sta.lq.general_params.flags |=
3648 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
3649 iwl_send_lq_cmd(priv, &sta_priv->lq_sta.lq,
3650 CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003651 }
3652 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003653 break;
3654 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003655 mutex_unlock(&priv->mutex);
3656
3657 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003658}
Tomas Winkler9f586712008-11-12 13:14:05 -08003659
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003660static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
3661 struct ieee80211_vif *vif,
3662 enum sta_notify_cmd cmd,
3663 struct ieee80211_sta *sta)
3664{
3665 struct iwl_priv *priv = hw->priv;
3666 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3667 int sta_id;
3668
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003669 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003670 case STA_NOTIFY_SLEEP:
3671 WARN_ON(!sta_priv->client);
3672 sta_priv->asleep = true;
3673 if (atomic_read(&sta_priv->pending_frames) > 0)
3674 ieee80211_sta_block_awake(hw, sta, true);
3675 break;
3676 case STA_NOTIFY_AWAKE:
3677 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003678 if (!sta_priv->asleep)
3679 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003680 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003681 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003682 if (sta_id != IWL_INVALID_STATION)
3683 iwl_sta_modify_ps_wake(priv, sta_id);
3684 break;
3685 default:
3686 break;
3687 }
3688}
3689
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003690static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3691 struct ieee80211_vif *vif,
3692 struct ieee80211_sta *sta)
3693{
3694 struct iwl_priv *priv = hw->priv;
3695 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003696 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003697 int ret;
3698 u8 sta_id;
3699
3700 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3701 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003702 mutex_lock(&priv->mutex);
3703 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3704 sta->addr);
3705 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003706
3707 atomic_set(&sta_priv->pending_frames, 0);
3708 if (vif->type == NL80211_IFTYPE_AP)
3709 sta_priv->client = true;
3710
3711 ret = iwl_add_station_common(priv, sta->addr, is_ap, &sta->ht_cap,
3712 &sta_id);
3713 if (ret) {
3714 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3715 sta->addr, ret);
3716 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003717 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003718 return ret;
3719 }
3720
Johannes Bergfd1af152010-04-30 11:30:43 -07003721 sta_priv->common.sta_id = sta_id;
3722
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003723 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003724 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003725 sta->addr);
3726 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003727 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003728
Johannes Bergfd1af152010-04-30 11:30:43 -07003729 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003730}
3731
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003732static void iwl_mac_channel_switch(struct ieee80211_hw *hw,
3733 struct ieee80211_channel_switch *ch_switch)
3734{
3735 struct iwl_priv *priv = hw->priv;
3736 const struct iwl_channel_info *ch_info;
3737 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003738 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003739 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
3740 u16 ch;
3741 unsigned long flags = 0;
3742
3743 IWL_DEBUG_MAC80211(priv, "enter\n");
3744
3745 if (iwl_is_rfkill(priv))
3746 goto out_exit;
3747
3748 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3749 test_bit(STATUS_SCANNING, &priv->status))
3750 goto out_exit;
3751
3752 if (!iwl_is_associated(priv))
3753 goto out_exit;
3754
3755 /* channel switch in progress */
3756 if (priv->switch_rxon.switch_in_progress == true)
3757 goto out_exit;
3758
3759 mutex_lock(&priv->mutex);
3760 if (priv->cfg->ops->lib->set_channel_switch) {
3761
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003762 ch = channel->hw_value;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003763 if (le16_to_cpu(priv->active_rxon.channel) != ch) {
3764 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003765 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003766 ch);
3767 if (!is_channel_valid(ch_info)) {
3768 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3769 goto out;
3770 }
3771 spin_lock_irqsave(&priv->lock, flags);
3772
3773 priv->current_ht_config.smps = conf->smps_mode;
3774
3775 /* Configure HT40 channels */
3776 ht_conf->is_ht = conf_is_ht(conf);
3777 if (ht_conf->is_ht) {
3778 if (conf_is_ht40_minus(conf)) {
3779 ht_conf->extension_chan_offset =
3780 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
3781 ht_conf->is_40mhz = true;
3782 } else if (conf_is_ht40_plus(conf)) {
3783 ht_conf->extension_chan_offset =
3784 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
3785 ht_conf->is_40mhz = true;
3786 } else {
3787 ht_conf->extension_chan_offset =
3788 IEEE80211_HT_PARAM_CHA_SEC_NONE;
3789 ht_conf->is_40mhz = false;
3790 }
3791 } else
3792 ht_conf->is_40mhz = false;
3793
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003794 if (le16_to_cpu(priv->staging_rxon.channel) != ch)
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003795 priv->staging_rxon.flags = 0;
3796
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003797 iwl_set_rxon_channel(priv, channel);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003798 iwl_set_rxon_ht(priv, ht_conf);
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003799 iwl_set_flags_for_band(priv, channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003800 priv->vif);
3801 spin_unlock_irqrestore(&priv->lock, flags);
3802
3803 iwl_set_rate(priv);
3804 /*
3805 * at this point, staging_rxon has the
3806 * configuration for channel switch
3807 */
3808 if (priv->cfg->ops->lib->set_channel_switch(priv,
3809 ch_switch))
3810 priv->switch_rxon.switch_in_progress = false;
3811 }
3812 }
3813out:
3814 mutex_unlock(&priv->mutex);
3815out_exit:
3816 if (!priv->switch_rxon.switch_in_progress)
3817 ieee80211_chswitch_done(priv->vif, false);
3818 IWL_DEBUG_MAC80211(priv, "leave\n");
3819}
3820
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003821static void iwlagn_configure_filter(struct ieee80211_hw *hw,
3822 unsigned int changed_flags,
3823 unsigned int *total_flags,
3824 u64 multicast)
3825{
3826 struct iwl_priv *priv = hw->priv;
3827 __le32 filter_or = 0, filter_nand = 0;
3828
3829#define CHK(test, flag) do { \
3830 if (*total_flags & (test)) \
3831 filter_or |= (flag); \
3832 else \
3833 filter_nand |= (flag); \
3834 } while (0)
3835
3836 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3837 changed_flags, *total_flags);
3838
3839 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3840 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3841 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3842
3843#undef CHK
3844
3845 mutex_lock(&priv->mutex);
3846
3847 priv->staging_rxon.filter_flags &= ~filter_nand;
3848 priv->staging_rxon.filter_flags |= filter_or;
3849
3850 iwlcore_commit_rxon(priv);
3851
3852 mutex_unlock(&priv->mutex);
3853
3854 /*
3855 * Receiving all multicast frames is always enabled by the
3856 * default flags setup in iwl_connection_init_rx_config()
3857 * since we currently do not support programming multicast
3858 * filters into the device.
3859 */
3860 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3861 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3862}
3863
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07003864static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop)
3865{
3866 struct iwl_priv *priv = hw->priv;
3867
3868 mutex_lock(&priv->mutex);
3869 IWL_DEBUG_MAC80211(priv, "enter\n");
3870
3871 /* do not support "flush" */
3872 if (!priv->cfg->ops->lib->txfifo_flush)
3873 goto done;
3874
3875 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3876 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
3877 goto done;
3878 }
3879 if (iwl_is_rfkill(priv)) {
3880 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
3881 goto done;
3882 }
3883
3884 /*
3885 * mac80211 will not push any more frames for transmit
3886 * until the flush is completed
3887 */
3888 if (drop) {
3889 IWL_DEBUG_MAC80211(priv, "send flush command\n");
3890 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
3891 IWL_ERR(priv, "flush request fail\n");
3892 goto done;
3893 }
3894 }
3895 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
3896 iwlagn_wait_tx_queue_empty(priv);
3897done:
3898 mutex_unlock(&priv->mutex);
3899 IWL_DEBUG_MAC80211(priv, "leave\n");
3900}
3901
Zhu Yib481de92007-09-25 17:54:57 -07003902/*****************************************************************************
3903 *
Zhu Yib481de92007-09-25 17:54:57 -07003904 * driver setup and teardown
3905 *
3906 *****************************************************************************/
3907
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003908static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003909{
Reinette Chatred21050c2009-02-13 11:51:18 -08003910 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003911
3912 init_waitqueue_head(&priv->wait_command_queue);
3913
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003914 INIT_WORK(&priv->restart, iwl_bg_restart);
3915 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003916 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003917 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07003918 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003919 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003920 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003921 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3922 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003923
Tomas Winkler2a421b92008-06-12 09:47:10 +08003924 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003925
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003926 if (priv->cfg->ops->lib->setup_deferred_work)
3927 priv->cfg->ops->lib->setup_deferred_work(priv);
3928
3929 init_timer(&priv->statistics_periodic);
3930 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003931 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003932
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08003933 init_timer(&priv->ucode_trace);
3934 priv->ucode_trace.data = (unsigned long)priv;
3935 priv->ucode_trace.function = iwl_bg_ucode_trace;
3936
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08003937 if (priv->cfg->ops->lib->recover_from_tx_stall) {
3938 init_timer(&priv->monitor_recover);
3939 priv->monitor_recover.data = (unsigned long)priv;
3940 priv->monitor_recover.function =
3941 priv->cfg->ops->lib->recover_from_tx_stall;
3942 }
3943
Mohamed Abbasef850d72009-05-22 11:01:50 -07003944 if (!priv->cfg->use_isr_legacy)
3945 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3946 iwl_irq_tasklet, (unsigned long)priv);
3947 else
3948 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3949 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003950}
3951
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003952static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003953{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003954 if (priv->cfg->ops->lib->cancel_deferred_work)
3955 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003956
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003957 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003958 cancel_delayed_work(&priv->scan_check);
Johannes Berg88be0262010-04-07 00:21:36 -07003959 cancel_work_sync(&priv->start_internal_scan);
Zhu Yib481de92007-09-25 17:54:57 -07003960 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07003961 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07003962 cancel_work_sync(&priv->beacon_update);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003963 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003964 cancel_work_sync(&priv->bt_runtime_config);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003965 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08003966 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07003967}
3968
Reinette Chatre89f186a2009-10-30 14:36:11 -07003969static void iwl_init_hw_rates(struct iwl_priv *priv,
3970 struct ieee80211_rate *rates)
3971{
3972 int i;
3973
3974 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
3975 rates[i].bitrate = iwl_rates[i].ieee * 5;
3976 rates[i].hw_value = i; /* Rate scaling will work on indexes */
3977 rates[i].hw_value_short = i;
3978 rates[i].flags = 0;
3979 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
3980 /*
3981 * If CCK != 1M then set short preamble rate flag.
3982 */
3983 rates[i].flags |=
3984 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
3985 0 : IEEE80211_RATE_SHORT_PREAMBLE;
3986 }
3987 }
3988}
3989
3990static int iwl_init_drv(struct iwl_priv *priv)
3991{
3992 int ret;
3993
3994 priv->ibss_beacon = NULL;
3995
Reinette Chatre89f186a2009-10-30 14:36:11 -07003996 spin_lock_init(&priv->sta_lock);
3997 spin_lock_init(&priv->hcmd_lock);
3998
3999 INIT_LIST_HEAD(&priv->free_frames);
4000
4001 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08004002 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004003
Reinette Chatre89f186a2009-10-30 14:36:11 -07004004 priv->ieee_channels = NULL;
4005 priv->ieee_rates = NULL;
4006 priv->band = IEEE80211_BAND_2GHZ;
4007
4008 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08004009 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08004010 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08004011 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004012
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08004013 /* initialize force reset */
4014 priv->force_reset[IWL_RF_RESET].reset_duration =
4015 IWL_DELAY_NEXT_FORCE_RF_RESET;
4016 priv->force_reset[IWL_FW_RESET].reset_duration =
4017 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004018
4019 /* Choose which receivers/antennas to use */
4020 if (priv->cfg->ops->hcmd->set_rxon_chain)
4021 priv->cfg->ops->hcmd->set_rxon_chain(priv);
4022
4023 iwl_init_scan_params(priv);
4024
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004025 /* init bt coex */
4026 if (priv->cfg->advanced_bt_coexist) {
4027 priv->kill_ack_mask = IWL6000G2B_BT_KILL_ACK_MASK_DEFAULT;
4028 priv->kill_cts_mask = IWL6000G2B_BT_KILL_CTS_MASK_DEFAULT;
4029 priv->bt_valid = IWL6000G2B_BT_ALL_VALID_MSK;
4030 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
4031 priv->bt_duration = BT_DURATION_LIMIT_DEF;
4032 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
4033 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
4034 }
4035
Reinette Chatre89f186a2009-10-30 14:36:11 -07004036 /* Set the tx_power_user_lmt to the lowest power level
4037 * this value will get overwritten by channel max power avg
4038 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07004039 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004040
4041 ret = iwl_init_channel_map(priv);
4042 if (ret) {
4043 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4044 goto err;
4045 }
4046
4047 ret = iwlcore_init_geos(priv);
4048 if (ret) {
4049 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4050 goto err_free_channel_map;
4051 }
4052 iwl_init_hw_rates(priv, priv->ieee_rates);
4053
4054 return 0;
4055
4056err_free_channel_map:
4057 iwl_free_channel_map(priv);
4058err:
4059 return ret;
4060}
4061
4062static void iwl_uninit_drv(struct iwl_priv *priv)
4063{
4064 iwl_calib_free_results(priv);
4065 iwlcore_free_geos(priv);
4066 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004067 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004068}
4069
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004070static struct ieee80211_ops iwl_hw_ops = {
4071 .tx = iwl_mac_tx,
4072 .start = iwl_mac_start,
4073 .stop = iwl_mac_stop,
4074 .add_interface = iwl_mac_add_interface,
4075 .remove_interface = iwl_mac_remove_interface,
4076 .config = iwl_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02004077 .configure_filter = iwlagn_configure_filter,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004078 .set_key = iwl_mac_set_key,
4079 .update_tkip_key = iwl_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004080 .conf_tx = iwl_mac_conf_tx,
4081 .reset_tsf = iwl_mac_reset_tsf,
4082 .bss_info_changed = iwl_bss_info_changed,
4083 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08004084 .hw_scan = iwl_mac_hw_scan,
4085 .sta_notify = iwl_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08004086 .sta_add = iwlagn_mac_sta_add,
4087 .sta_remove = iwl_mac_sta_remove,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07004088 .channel_switch = iwl_mac_channel_switch,
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004089 .flush = iwl_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07004090 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07004091};
4092
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004093static void iwl_hw_detect(struct iwl_priv *priv)
4094{
4095 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
4096 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
4097 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07004098 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004099}
4100
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07004101static int iwl_set_hw_params(struct iwl_priv *priv)
4102{
4103 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
4104 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
4105 if (priv->cfg->mod_params->amsdu_size_8K)
4106 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
4107 else
4108 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
4109
4110 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
4111
4112 if (priv->cfg->mod_params->disable_11n)
4113 priv->cfg->sku &= ~IWL_SKU_N;
4114
4115 /* Device-specific setup */
4116 return priv->cfg->ops->lib->set_hw_params(priv);
4117}
4118
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004119static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004120{
4121 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004122 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004123 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004124 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004125 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004126 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07004127
Assaf Krauss316c30d2008-03-14 10:38:46 -07004128 /************************
4129 * 1. Allocating HW data
4130 ************************/
4131
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004132 /* Disabling hardware scan means that mac80211 will perform scans
4133 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004134 if (cfg->mod_params->disable_hw_scan) {
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004135 if (iwl_debug_level & IWL_DL_INFO)
Ester Kummerbf403db2008-05-05 10:22:40 +08004136 dev_printk(KERN_DEBUG, &(pdev->dev),
4137 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004138 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004139 }
4140
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004141 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004142 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004143 err = -ENOMEM;
4144 goto out;
4145 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004146 priv = hw->priv;
4147 /* At this point both hw and priv are allocated. */
4148
Zhu Yib481de92007-09-25 17:54:57 -07004149 SET_IEEE80211_DEV(hw, &pdev->dev);
4150
Tomas Winklere1623442009-01-27 14:27:56 -08004151 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004152 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004153 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004154 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004155
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004156 /* is antenna coupling more than 35dB ? */
4157 priv->bt_ant_couple_ok =
4158 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4159 true : false;
4160
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004161 /* enable/disable bt channel announcement */
4162 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4163
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004164 if (iwl_alloc_traffic_mem(priv))
4165 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004166
Assaf Krauss316c30d2008-03-14 10:38:46 -07004167 /**************************
4168 * 2. Initializing PCI bus
4169 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004170 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4171 PCIE_LINK_STATE_CLKPM);
4172
Assaf Krauss316c30d2008-03-14 10:38:46 -07004173 if (pci_enable_device(pdev)) {
4174 err = -ENODEV;
4175 goto out_ieee80211_free_hw;
4176 }
4177
4178 pci_set_master(pdev);
4179
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004180 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004181 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004182 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004183 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004184 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004185 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004186 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004187 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004188 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004189 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004190 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004191 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004192 }
4193
4194 err = pci_request_regions(pdev, DRV_NAME);
4195 if (err)
4196 goto out_pci_disable_device;
4197
4198 pci_set_drvdata(pdev, priv);
4199
Assaf Krauss316c30d2008-03-14 10:38:46 -07004200
4201 /***********************
4202 * 3. Read REV register
4203 ***********************/
4204 priv->hw_base = pci_iomap(pdev, 0, 0);
4205 if (!priv->hw_base) {
4206 err = -ENODEV;
4207 goto out_pci_release_regions;
4208 }
4209
Tomas Winklere1623442009-01-27 14:27:56 -08004210 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004211 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004212 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004213
Reinette Chatre731a29b2009-12-14 14:12:11 -08004214 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004215 * we should init now
4216 */
4217 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004218 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004219
4220 /*
4221 * stop and reset the on-board processor just in case it is in a
4222 * strange state ... like being left stranded by a primary kernel
4223 * and this is now the kdump kernel trying to start up
4224 */
4225 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4226
Tomas Winklerb661c812008-04-23 17:14:54 -07004227 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004228 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004229 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004230
Tomas Winklere7b63582008-09-03 11:26:49 +08004231 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4232 * PCI Tx retries from interfering with C3 CPU state */
4233 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4234
Mohamed Abbas086ed112009-05-22 11:01:54 -07004235 iwl_prepare_card_hw(priv);
4236 if (!priv->hw_ready) {
4237 IWL_WARN(priv, "Failed, HW not ready\n");
4238 goto out_iounmap;
4239 }
4240
Assaf Krauss316c30d2008-03-14 10:38:46 -07004241 /*****************
4242 * 4. Read EEPROM
4243 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004244 /* Read the EEPROM */
4245 err = iwl_eeprom_init(priv);
4246 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004247 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004248 goto out_iounmap;
4249 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004250 err = iwl_eeprom_check_version(priv);
4251 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004252 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004253
Ron Rindjunsky02883012008-05-15 13:53:53 +08004254 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004255 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4256 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4257 priv->hw->wiphy->addresses = priv->addresses;
4258 priv->hw->wiphy->n_addresses = 1;
4259 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4260 if (num_mac > 1) {
4261 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4262 ETH_ALEN);
4263 priv->addresses[1].addr[5]++;
4264 priv->hw->wiphy->n_addresses++;
4265 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004266
4267 /************************
4268 * 5. Setup HW constants
4269 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08004270 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004271 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004272 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004273 }
4274
4275 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004276 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004277 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004278
Tomas Winkler6ba87952008-05-15 13:54:17 +08004279 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004280 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004281 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004282 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004283
Assaf Krauss316c30d2008-03-14 10:38:46 -07004284 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004285 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004286 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004287 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004288 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004289 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004290
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004291 pci_enable_msi(priv->pci_dev);
4292
Mohamed Abbasef850d72009-05-22 11:01:50 -07004293 iwl_alloc_isr_ict(priv);
4294 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4295 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004296 if (err) {
4297 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4298 goto out_disable_msi;
4299 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004300
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004301 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004302 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004303
Johannes Berg158bea02010-01-22 14:22:53 -08004304 /*********************************************
4305 * 8. Enable interrupts and read RFKILL state
4306 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004307
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004308 /* enable interrupts if needed: hw bug w/a */
4309 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4310 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4311 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4312 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4313 }
4314
4315 iwl_enable_interrupts(priv);
4316
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004317 /* If platform's RF_KILL switch is NOT set to KILL */
4318 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4319 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4320 else
4321 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004322
Johannes Berga60e77e2009-06-04 18:26:06 +02004323 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4324 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004325
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004326 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004327 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004328
Reinette Chatrea15707d2010-05-10 15:08:11 -07004329 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004330
Johannes Bergb08dfd02010-01-29 11:54:56 -08004331 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004332 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004333 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004334
Zhu Yib481de92007-09-25 17:54:57 -07004335 return 0;
4336
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004337 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004338 destroy_workqueue(priv->workqueue);
4339 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004340 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004341 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004342 out_disable_msi:
4343 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004344 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004345 out_free_eeprom:
4346 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004347 out_iounmap:
4348 pci_iounmap(pdev, priv->hw_base);
4349 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004350 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004351 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004352 out_pci_disable_device:
4353 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004354 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004355 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004356 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004357 out:
4358 return err;
4359}
4360
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004361static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004362{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004363 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004364 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004365
4366 if (!priv)
4367 return;
4368
Reinette Chatrea15707d2010-05-10 15:08:11 -07004369 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004370
Tomas Winklere1623442009-01-27 14:27:56 -08004371 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004372
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004373 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004374 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004375
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004376 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4377 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004378 * we need to set STATUS_EXIT_PENDING bit.
4379 */
4380 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004381 if (priv->mac80211_registered) {
4382 ieee80211_unregister_hw(priv->hw);
4383 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004384 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004385 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004386 }
4387
Ben Cahillc166b252009-10-23 13:42:35 -07004388 /*
4389 * Make sure device is reset to low power before unloading driver.
4390 * This may be redundant with iwl_down(), but there are paths to
4391 * run iwl_down() without calling apm_ops.stop(), and there are
4392 * paths to avoid running iwl_down() at all before leaving driver.
4393 * This (inexpensive) call *makes sure* device is reset.
4394 */
4395 priv->cfg->ops->lib->apm_ops.stop(priv);
4396
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004397 iwl_tt_exit(priv);
4398
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004399 /* make sure we flush any pending irq or
4400 * tasklet for the driver
4401 */
4402 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004403 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004404 spin_unlock_irqrestore(&priv->lock, flags);
4405
4406 iwl_synchronize_irq(priv);
4407
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004408 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004409
4410 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004411 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004412 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004413
Tomas Winkler073d3f52008-04-21 15:41:52 -07004414 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004415
Zhu Yib481de92007-09-25 17:54:57 -07004416
Mohamed Abbas948c1712007-10-25 17:15:45 +08004417 /*netif_stop_queue(dev); */
4418 flush_workqueue(priv->workqueue);
4419
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004420 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004421 * priv->workqueue... so we can't take down the workqueue
4422 * until now... */
4423 destroy_workqueue(priv->workqueue);
4424 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004425 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004426
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004427 free_irq(priv->pci_dev->irq, priv);
4428 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004429 pci_iounmap(pdev, priv->hw_base);
4430 pci_release_regions(pdev);
4431 pci_disable_device(pdev);
4432 pci_set_drvdata(pdev, NULL);
4433
Tomas Winkler6ba87952008-05-15 13:54:17 +08004434 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004435
Mohamed Abbasef850d72009-05-22 11:01:50 -07004436 iwl_free_isr_ict(priv);
4437
Zhu Yib481de92007-09-25 17:54:57 -07004438 if (priv->ibss_beacon)
4439 dev_kfree_skb(priv->ibss_beacon);
4440
4441 ieee80211_free_hw(priv->hw);
4442}
4443
Zhu Yib481de92007-09-25 17:54:57 -07004444
4445/*****************************************************************************
4446 *
4447 * driver and module entry point
4448 *
4449 *****************************************************************************/
4450
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004451/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004452static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004453#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004454 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4455 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004456#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004457#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004458/* 5100 Series WiFi */
4459 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4460 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4461 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4462 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4463 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4464 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4465 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4466 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4467 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4468 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4469 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4470 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4471 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4472 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4473 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4474 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4475 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4476 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4477 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4478 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4479 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4480 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4481 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4482 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4483
4484/* 5300 Series WiFi */
4485 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4486 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4487 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4488 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4489 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4490 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4491 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4492 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4493 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4494 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4495 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4496 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4497
4498/* 5350 Series WiFi/WiMax */
4499 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4500 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4501 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4502
4503/* 5150 Series Wifi/WiMax */
4504 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4505 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4506 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4507 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4508 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4509 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4510
4511 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4512 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4513 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4514 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004515
4516/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004517 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4518 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4519 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4520 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4521 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4522 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4523 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4524 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4525 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4526 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004527
Shanyu Zhao95b13012010-04-21 11:46:33 -07004528/* 6x00 Series Gen2a */
4529 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4530 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4531 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004532 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4533 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4534 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4535 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004536 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4537 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4538 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4539 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4540 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4541 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4542 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004543
4544/* 6x00 Series Gen2b */
4545 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4546 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4547 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4548 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4549 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4550 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4551 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4552 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4553 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4554 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4555 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004556 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4557 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4558 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4559 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4560 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4561 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4562 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4563 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4564 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4565 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4566 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4567 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4568 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4569 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4570 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4571 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4572 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004573
4574/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004575 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4576 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4577 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4578 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004579 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4580 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4581
Shanyu Zhao03264332010-06-29 17:27:27 -07004582/* 6x50 WiFi/WiMax Series Gen2 */
4583 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4584 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4585 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4586 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4587 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4588 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4589
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004590/* 1000 Series WiFi */
Wey-Yi Guy4bd0914f2009-09-17 10:43:52 -07004591 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4592 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4593 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4594 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4595 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4596 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4597 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4598 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4599 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4600 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4601 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4602 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004603#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004604
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004605 {0}
4606};
4607MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4608
4609static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004610 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004611 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004612 .probe = iwl_pci_probe,
4613 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004614#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004615 .suspend = iwl_pci_suspend,
4616 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004617#endif
4618};
4619
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004620static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004621{
4622
4623 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004624 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4625 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004626
Tomas Winklere227cea2008-07-18 13:53:05 +08004627 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004628 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004629 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004630 return ret;
4631 }
4632
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004633 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004634 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004635 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004636 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004637 }
Zhu Yib481de92007-09-25 17:54:57 -07004638
4639 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004640
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004641error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004642 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004643 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004644}
4645
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004646static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004647{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004648 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004649 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004650}
4651
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004652module_exit(iwl_exit);
4653module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004654
4655#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004656module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004657MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004658module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004659MODULE_PARM_DESC(debug, "debug output mask");
4660#endif
4661
Wey-Yi Guy2b068612010-03-22 09:17:39 -07004662module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4663MODULE_PARM_DESC(swcrypto50,
4664 "using crypto in software (default 0 [hardware]) (deprecated)");
4665module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4666MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4667module_param_named(queues_num50,
4668 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4669MODULE_PARM_DESC(queues_num50,
4670 "number of hw queues in 50xx series (deprecated)");
4671module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4672MODULE_PARM_DESC(queues_num, "number of hw queues.");
4673module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4674MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4675module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4676MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4677module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4678 int, S_IRUGO);
4679MODULE_PARM_DESC(amsdu_size_8K50,
4680 "enable 8K amsdu size in 50XX series (deprecated)");
4681module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4682 int, S_IRUGO);
4683MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4684module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4685MODULE_PARM_DESC(fw_restart50,
4686 "restart firmware in case of error (deprecated)");
4687module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4688MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4689module_param_named(
4690 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
4691MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004692
4693module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4694 S_IRUGO);
4695MODULE_PARM_DESC(ucode_alternative,
4696 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004697
4698module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4699MODULE_PARM_DESC(antenna_coupling,
4700 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004701
4702module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4703MODULE_PARM_DESC(bt_ch_announce,
4704 "Enable BT channel announcement mode (default: enable)");