blob: 85ff1552481fec8f9e394a181ce75574803393eb [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
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040036#include <linux/sched.h>
Zhu Yib481de92007-09-25 17:54:57 -070037#include <linux/skbuff.h>
38#include <linux/netdevice.h>
39#include <linux/wireless.h>
40#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070041#include <linux/etherdevice.h>
42#include <linux/if_arp.h>
43
Zhu Yib481de92007-09-25 17:54:57 -070044#include <net/mac80211.h>
45
46#include <asm/div64.h>
47
Samuel Ortiza3139c52008-12-19 10:37:09 +080048#define DRV_NAME "iwlagn"
49
Assaf Krauss6bc913b2008-03-11 16:17:18 -070050#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070051#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070052#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070053#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070054#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070055#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070056#include "iwl-calib.h"
Johannes Berga1175122010-01-21 06:21:10 -080057#include "iwl-agn.h"
Zhu Yib481de92007-09-25 17:54:57 -070058
Christoph Hellwig416e1432007-10-25 17:15:49 +080059
Zhu Yib481de92007-09-25 17:54:57 -070060/******************************************************************************
61 *
62 * module boiler plate
63 *
64 ******************************************************************************/
65
Zhu Yib481de92007-09-25 17:54:57 -070066/*
67 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070068 */
Tomas Winklerd783b062008-07-18 13:53:02 +080069#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070070
Tomas Winkler0a6857e2008-03-12 16:58:49 -070071#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070072#define VD "d"
73#else
74#define VD
75#endif
76
Reinette Chatre81963d62010-01-22 14:22:57 -080077#define DRV_VERSION IWLWIFI_VERSION VD
Zhu Yib481de92007-09-25 17:54:57 -070078
Zhu Yib481de92007-09-25 17:54:57 -070079
80MODULE_DESCRIPTION(DRV_DESCRIPTION);
81MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080082MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070083MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030084MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070085
Zhu Yib481de92007-09-25 17:54:57 -070086/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080087 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -070088 * the functionality provided here
89 */
90
91/**************************************************************/
92
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 Guy0924e512009-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));
129 priv->switch_rxon.switch_in_progress = false;
130 }
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
147 /* station table will be cleared */
148 priv->assoc_station_added = 0;
149
Zhu Yib481de92007-09-25 17:54:57 -0700150 /* If we are currently associated and the new config requires
151 * an RXON_ASSOC and the new config wants the associated mask enabled,
152 * we must clear the associated from the active configuration
153 * before we apply the new config */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800154 if (iwl_is_associated(priv) && new_assoc) {
Tomas Winklere1623442009-01-27 14:27:56 -0800155 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700156 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
157
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800158 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800159 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700160 &priv->active_rxon);
161
162 /* If the mask clearing failed then we set
163 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800164 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700165 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800166 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800167 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700168 }
Reinette Chatre7e246192010-02-18 22:58:32 -0800169 iwl_clear_ucode_stations(priv, false);
170 iwl_restore_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700171 }
172
Tomas Winklere1623442009-01-27 14:27:56 -0800173 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700174 "* with%s RXON_FILTER_ASSOC_MSK\n"
175 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700176 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800177 (new_assoc ? "" : "out"),
Zhu Yib481de92007-09-25 17:54:57 -0700178 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700179 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700180
Tomas Winkler90e8e422009-06-19 13:52:42 -0700181 iwl_set_rxon_hwcrypto(priv, !priv->cfg->mod_params->sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800182
183 /* Apply the new configuration
Reinette Chatre7e246192010-02-18 22:58:32 -0800184 * RXON unassoc clears the station table in uCode so restoration of
185 * stations is needed after it (the RXON command) completes
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800186 */
187 if (!new_assoc) {
188 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800189 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800190 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800191 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800192 return ret;
193 }
Reinette Chatre7e246192010-02-18 22:58:32 -0800194 IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON. \n");
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800195 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Reinette Chatre7e246192010-02-18 22:58:32 -0800196 iwl_clear_ucode_stations(priv, false);
197 iwl_restore_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700198 }
199
Johannes Berg19cc1082009-05-08 13:44:36 -0700200 priv->start_calib = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700201
Zhu Yib481de92007-09-25 17:54:57 -0700202 /* If we have set the ASSOC_MSK and we are in BSS mode then
203 * add the IWL_AP_ID to the station rate table */
Tomas Winkler91851592008-06-30 17:23:14 +0800204 if (new_assoc) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200205 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler91851592008-06-30 17:23:14 +0800206 ret = iwl_rxon_add_station(priv,
207 priv->active_rxon.bssid_addr, 1);
208 if (ret == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800209 IWL_ERR(priv,
210 "Error adding AP address for TX.\n");
Tomas Winkler91851592008-06-30 17:23:14 +0800211 return -EIO;
212 }
213 priv->assoc_station_added = 1;
214 if (priv->default_wep_key &&
215 iwl_send_static_wepkey_cmd(priv, 0))
Winkler, Tomas15b16872008-12-19 10:37:33 +0800216 IWL_ERR(priv,
217 "Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700218 }
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800219
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700220 /*
221 * allow CTS-to-self if possible for new association.
222 * this is relevant only for 5000 series and up,
223 * but will not damage 4965
224 */
225 priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
226
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800227 /* Apply the new configuration
228 * RXON assoc doesn't clear the station table in uCode,
229 */
230 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
231 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
232 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800233 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800234 return ret;
235 }
236 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700237 }
Wey-Yi Guya6435652009-11-06 14:52:46 -0800238 iwl_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700239
Zhu Yi36da7d72008-07-11 11:53:40 +0800240 iwl_init_sensitivity(priv);
241
242 /* If we issue a new RXON command which required a tune then we must
243 * send a new TXPOWER command or we won't be able to Tx any frames */
244 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
245 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800246 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800247 return ret;
248 }
249
Zhu Yib481de92007-09-25 17:54:57 -0700250 return 0;
251}
252
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700253void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b55f2008-04-21 15:41:51 -0700254{
255
Abhijeet Kolekar45823532009-04-08 11:26:44 -0700256 if (priv->cfg->ops->hcmd->set_rxon_chain)
257 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700258 iwlcore_commit_rxon(priv);
Mohamed Abbas5da4b55f2008-04-21 15:41:51 -0700259}
260
Tomas Winklerfcab4232008-05-15 13:54:01 +0800261static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700262{
263 struct list_head *element;
264
Tomas Winklere1623442009-01-27 14:27:56 -0800265 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700266 priv->frames_count);
267
268 while (!list_empty(&priv->free_frames)) {
269 element = priv->free_frames.next;
270 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800271 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700272 priv->frames_count--;
273 }
274
275 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800276 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700277 priv->frames_count);
278 priv->frames_count = 0;
279 }
280}
281
Tomas Winklerfcab4232008-05-15 13:54:01 +0800282static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700283{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800284 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700285 struct list_head *element;
286 if (list_empty(&priv->free_frames)) {
287 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
288 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800289 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700290 return NULL;
291 }
292
293 priv->frames_count++;
294 return frame;
295 }
296
297 element = priv->free_frames.next;
298 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800299 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700300}
301
Tomas Winklerfcab4232008-05-15 13:54:01 +0800302static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700303{
304 memset(frame, 0, sizeof(*frame));
305 list_add(&frame->list, &priv->free_frames);
306}
307
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800308static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800309 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200310 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700311{
Tomas Winkler3109ece2008-03-28 16:33:35 -0700312 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200313 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
314 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700315 return 0;
316
317 if (priv->ibss_beacon->len > left)
318 return 0;
319
320 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
321
322 return priv->ibss_beacon->len;
323}
324
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800325/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
326static void iwl_set_beacon_tim(struct iwl_priv *priv,
327 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
328 u8 *beacon, u32 frame_size)
329{
330 u16 tim_idx;
331 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
332
333 /*
334 * The index is relative to frame start but we start looking at the
335 * variable-length part of the beacon.
336 */
337 tim_idx = mgmt->u.beacon.variable - beacon;
338
339 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
340 while ((tim_idx < (frame_size - 2)) &&
341 (beacon[tim_idx] != WLAN_EID_TIM))
342 tim_idx += beacon[tim_idx+1] + 2;
343
344 /* If TIM field was found, set variables */
345 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
346 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
347 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
348 } else
349 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
350}
351
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700352static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800353 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800354{
355 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800356 u32 frame_size;
357 u32 rate_flags;
358 u32 rate;
359 /*
360 * We have to set up the TX command, the TX Beacon command, and the
361 * beacon contents.
362 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800363
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800364 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800365 tx_beacon_cmd = &frame->u.beacon;
366 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
367
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800368 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800369 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800370 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800371 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
372 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800373
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800374 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800375 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800376 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
377 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800378 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800379 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
380
381 /* Set up TX beacon command fields */
382 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
383 frame_size);
384
385 /* Set up packet rate and flags */
386 rate = iwl_rate_get_lowest_plcp(priv);
387 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant);
388 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
389 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
390 rate_flags |= RATE_MCS_CCK_MSK;
391 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
392 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800393
394 return sizeof(*tx_beacon_cmd) + frame_size;
395}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700396static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700397{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800398 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700399 unsigned int frame_size;
400 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700401
Tomas Winklerfcab4232008-05-15 13:54:01 +0800402 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700403 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800404 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700405 "command.\n");
406 return -ENOMEM;
407 }
408
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800409 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
410 if (!frame_size) {
411 IWL_ERR(priv, "Error configuring the beacon command\n");
412 iwl_free_frame(priv, frame);
413 return -EINVAL;
414 }
Zhu Yib481de92007-09-25 17:54:57 -0700415
Tomas Winkler857485c2008-03-21 13:53:44 -0700416 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700417 &frame->u.cmd[0]);
418
Tomas Winklerfcab4232008-05-15 13:54:01 +0800419 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700420
421 return rc;
422}
423
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800424static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
425{
426 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
427
428 dma_addr_t addr = get_unaligned_le32(&tb->lo);
429 if (sizeof(dma_addr_t) > sizeof(u32))
430 addr |=
431 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
432
433 return addr;
434}
435
436static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
437{
438 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
439
440 return le16_to_cpu(tb->hi_n_len) >> 4;
441}
442
443static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
444 dma_addr_t addr, u16 len)
445{
446 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
447 u16 hi_n_len = len << 4;
448
449 put_unaligned_le32(addr, &tb->lo);
450 if (sizeof(dma_addr_t) > sizeof(u32))
451 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
452
453 tb->hi_n_len = cpu_to_le16(hi_n_len);
454
455 tfd->num_tbs = idx + 1;
456}
457
458static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
459{
460 return tfd->num_tbs & 0x1f;
461}
462
463/**
464 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
465 * @priv - driver private data
466 * @txq - tx queue
467 *
468 * Does NOT advance any TFD circular buffer read/write indexes
469 * Does NOT free the TFD itself (which is within circular buffer)
470 */
471void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
472{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800473 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800474 struct iwl_tfd *tfd;
475 struct pci_dev *dev = priv->pci_dev;
476 int index = txq->q.read_ptr;
477 int i;
478 int num_tbs;
479
480 tfd = &tfd_tmp[index];
481
482 /* Sanity check on number of chunks */
483 num_tbs = iwl_tfd_get_num_tbs(tfd);
484
485 if (num_tbs >= IWL_NUM_OF_TBS) {
486 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
487 /* @todo issue fatal error, it is quite serious situation */
488 return;
489 }
490
491 /* Unmap tx_cmd */
492 if (num_tbs)
493 pci_unmap_single(dev,
Johannes Bergc2acea82009-07-24 11:13:05 -0700494 pci_unmap_addr(&txq->meta[index], mapping),
495 pci_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800496 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800497
498 /* Unmap chunks, if any. */
499 for (i = 1; i < num_tbs; i++) {
500 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
501 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
502
503 if (txq->txb) {
504 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
505 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
506 }
507 }
508}
509
510int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
511 struct iwl_tx_queue *txq,
512 dma_addr_t addr, u16 len,
513 u8 reset, u8 pad)
514{
515 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800516 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800517 u32 num_tbs;
518
519 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800520 tfd_tmp = (struct iwl_tfd *)txq->tfds;
521 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800522
523 if (reset)
524 memset(tfd, 0, sizeof(*tfd));
525
526 num_tbs = iwl_tfd_get_num_tbs(tfd);
527
528 /* Each TFD can point to a maximum 20 Tx buffers */
529 if (num_tbs >= IWL_NUM_OF_TBS) {
530 IWL_ERR(priv, "Error can not send more than %d chunks\n",
531 IWL_NUM_OF_TBS);
532 return -EINVAL;
533 }
534
535 BUG_ON(addr & ~DMA_BIT_MASK(36));
536 if (unlikely(addr & ~IWL_TX_DMA_MASK))
537 IWL_ERR(priv, "Unaligned address = %llx\n",
538 (unsigned long long)addr);
539
540 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
541
542 return 0;
543}
544
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800545/*
546 * Tell nic where to find circular buffer of Tx Frame Descriptors for
547 * given Tx queue, and enable the DMA channel used for that queue.
548 *
549 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
550 * channels supported in hardware.
551 */
552int iwl_hw_tx_queue_init(struct iwl_priv *priv,
553 struct iwl_tx_queue *txq)
554{
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800555 int txq_id = txq->q.id;
556
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800557 /* Circular buffer (TFD queue in DRAM) physical base address */
558 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
559 txq->q.dma_addr >> 8);
560
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800561 return 0;
562}
563
Zhu Yib481de92007-09-25 17:54:57 -0700564/******************************************************************************
565 *
566 * Generic RX handler implementations
567 *
568 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800569static void iwl_rx_reply_alive(struct iwl_priv *priv,
570 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700571{
Zhu Yi2f301222009-10-09 17:19:45 +0800572 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800573 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700574 struct delayed_work *pwork;
575
576 palive = &pkt->u.alive_frame;
577
Tomas Winklere1623442009-01-27 14:27:56 -0800578 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700579 "0x%01X 0x%01X\n",
580 palive->is_valid, palive->ver_type,
581 palive->ver_subtype);
582
583 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800584 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700585 memcpy(&priv->card_alive_init,
586 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800587 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700588 pwork = &priv->init_alive_start;
589 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800590 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700591 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800592 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700593 pwork = &priv->alive_start;
594 }
595
596 /* We delay the ALIVE response by 5ms to
597 * give the HW RF Kill time to activate... */
598 if (palive->is_valid == UCODE_VALID_OK)
599 queue_delayed_work(priv->workqueue, pwork,
600 msecs_to_jiffies(5));
601 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800602 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700603}
604
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700605static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700606{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700607 struct iwl_priv *priv =
608 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700609 struct sk_buff *beacon;
610
611 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200612 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700613
614 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800615 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700616 return;
617 }
618
619 mutex_lock(&priv->mutex);
620 /* new beacon skb is allocated every time; dispose previous.*/
621 if (priv->ibss_beacon)
622 dev_kfree_skb(priv->ibss_beacon);
623
624 priv->ibss_beacon = beacon;
625 mutex_unlock(&priv->mutex);
626
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700627 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700628}
629
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800630/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700631 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800632 *
633 * This callback is provided in order to send a statistics request.
634 *
635 * This timer function is continually reset to execute within
636 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
637 * was received. We need to ensure we receive the statistics in order
638 * to update the temperature used for calibrating the TXPOWER.
639 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700640static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800641{
642 struct iwl_priv *priv = (struct iwl_priv *)data;
643
644 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
645 return;
646
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700647 /* dont send host command if rf-kill is on */
648 if (!iwl_is_ready_rf(priv))
649 return;
650
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800651 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800652}
653
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800654
655static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
656 u32 start_idx, u32 num_events,
657 u32 mode)
658{
659 u32 i;
660 u32 ptr; /* SRAM byte address of log data */
661 u32 ev, time, data; /* event log data */
662 unsigned long reg_flags;
663
664 if (mode == 0)
665 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
666 else
667 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
668
669 /* Make sure device is powered up for SRAM reads */
670 spin_lock_irqsave(&priv->reg_lock, reg_flags);
671 if (iwl_grab_nic_access(priv)) {
672 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
673 return;
674 }
675
676 /* Set starting address; reads will auto-increment */
677 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
678 rmb();
679
680 /*
681 * "time" is actually "data" for mode 0 (no timestamp).
682 * place event id # at far right for easier visual parsing.
683 */
684 for (i = 0; i < num_events; i++) {
685 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
686 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
687 if (mode == 0) {
688 trace_iwlwifi_dev_ucode_cont_event(priv,
689 0, time, ev);
690 } else {
691 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
692 trace_iwlwifi_dev_ucode_cont_event(priv,
693 time, data, ev);
694 }
695 }
696 /* Allow device to power down */
697 iwl_release_nic_access(priv);
698 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
699}
700
Johannes Berg875295f2010-01-22 14:22:55 -0800701static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800702{
703 u32 capacity; /* event log capacity in # entries */
704 u32 base; /* SRAM byte address of event log header */
705 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
706 u32 num_wraps; /* # times uCode wrapped to top of log */
707 u32 next_entry; /* index of next entry to be written by uCode */
708
709 if (priv->ucode_type == UCODE_INIT)
710 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
711 else
712 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
713 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
714 capacity = iwl_read_targ_mem(priv, base);
715 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
716 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
717 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
718 } else
719 return;
720
721 if (num_wraps == priv->event_log.num_wraps) {
722 iwl_print_cont_event_trace(priv,
723 base, priv->event_log.next_entry,
724 next_entry - priv->event_log.next_entry,
725 mode);
726 priv->event_log.non_wraps_count++;
727 } else {
728 if ((num_wraps - priv->event_log.num_wraps) > 1)
729 priv->event_log.wraps_more_count++;
730 else
731 priv->event_log.wraps_once_count++;
732 trace_iwlwifi_dev_ucode_wrap_event(priv,
733 num_wraps - priv->event_log.num_wraps,
734 next_entry, priv->event_log.next_entry);
735 if (next_entry < priv->event_log.next_entry) {
736 iwl_print_cont_event_trace(priv, base,
737 priv->event_log.next_entry,
738 capacity - priv->event_log.next_entry,
739 mode);
740
741 iwl_print_cont_event_trace(priv, base, 0,
742 next_entry, mode);
743 } else {
744 iwl_print_cont_event_trace(priv, base,
745 next_entry, capacity - next_entry,
746 mode);
747
748 iwl_print_cont_event_trace(priv, base, 0,
749 next_entry, mode);
750 }
751 }
752 priv->event_log.num_wraps = num_wraps;
753 priv->event_log.next_entry = next_entry;
754}
755
756/**
757 * iwl_bg_ucode_trace - Timer callback to log ucode event
758 *
759 * The timer is continually set to execute every
760 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
761 * this function is to perform continuous uCode event logging operation
762 * if enabled
763 */
764static void iwl_bg_ucode_trace(unsigned long data)
765{
766 struct iwl_priv *priv = (struct iwl_priv *)data;
767
768 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
769 return;
770
771 if (priv->event_log.ucode_trace) {
772 iwl_continuous_event_trace(priv);
773 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
774 mod_timer(&priv->ucode_trace,
775 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
776 }
777}
778
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700779static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800780 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700781{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700782#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800783 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800784 struct iwl4965_beacon_notif *beacon =
785 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326a2008-06-12 09:47:11 +0800786 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700787
Tomas Winklere1623442009-01-27 14:27:56 -0800788 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700789 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800790 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700791 beacon->beacon_notify_hdr.failure_frame,
792 le32_to_cpu(beacon->ibss_mgr_status),
793 le32_to_cpu(beacon->high_tsf),
794 le32_to_cpu(beacon->low_tsf), rate);
795#endif
796
Johannes Berg05c914f2008-09-11 00:01:58 +0200797 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700798 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
799 queue_work(priv->workqueue, &priv->beacon_update);
800}
801
Zhu Yib481de92007-09-25 17:54:57 -0700802/* Handle notification from uCode that card's power state is changing
803 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700804static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800805 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700806{
Zhu Yi2f301222009-10-09 17:19:45 +0800807 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700808 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
809 unsigned long status = priv->status;
810
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800811 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700812 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800813 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
814 (flags & CT_CARD_DISABLED) ?
815 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700816
817 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800818 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700819
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700820 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700821 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
822
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700823 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
824 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700825
826 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700827 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700828 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700829 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700830 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700831 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800832 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -0700833 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700834 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800835 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -0700836 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700837
838 if (flags & HW_CARD_DISABLED)
839 set_bit(STATUS_RF_KILL_HW, &priv->status);
840 else
841 clear_bit(STATUS_RF_KILL_HW, &priv->status);
842
843
Zhu Yib481de92007-09-25 17:54:57 -0700844 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800845 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700846
847 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200848 test_bit(STATUS_RF_KILL_HW, &priv->status)))
849 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
850 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700851 else
852 wake_up_interruptible(&priv->wait_command_queue);
853}
854
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700855int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800856{
Tomas Winklere2e3c572008-07-18 13:53:04 +0800857 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800858 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800859 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
860 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
861 ~APMG_PS_CTRL_MSK_PWR_SRC);
862 } else {
863 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
864 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
865 ~APMG_PS_CTRL_MSK_PWR_SRC);
866 }
867
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700868 return 0;
Tomas Winklere2e3c572008-07-18 13:53:04 +0800869}
870
Zhu Yib481de92007-09-25 17:54:57 -0700871/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700872 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700873 *
874 * Setup the RX handlers for each of the reply types sent from the uCode
875 * to the host.
876 *
877 * This function chains into the hardware specific files for them to setup
878 * any hardware specific handlers as well.
879 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800880static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700881{
Tomas Winkler885ba202008-05-29 16:34:55 +0800882 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700883 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
884 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800885 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
886 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700887 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700888 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700889 iwl_rx_pm_debug_statistics_notif;
890 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700891
Ben Cahill9fbab512007-11-29 11:09:47 +0800892 /*
893 * The same handler is used for both the REPLY to a discrete
894 * statistics request from the host as well as for the periodic
895 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700896 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800897 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800898 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800899
900 iwl_setup_rx_scan_handlers(priv);
901
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800902 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700903 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700904
Tomas Winklerc1354752008-05-29 16:35:04 +0800905 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
906 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800907 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800908 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
909 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800910 /* block ack */
911 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800912 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700913 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700914}
915
Zhu Yib481de92007-09-25 17:54:57 -0700916/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800917 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700918 *
919 * Uses the priv->rx_handlers callback function array to invoke
920 * the appropriate handlers, including command responses,
921 * frame-received notifications, and other notifications.
922 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800923void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700924{
Tomas Winklera55360e2008-05-05 10:22:28 +0800925 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800926 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800927 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700928 u32 r, i;
929 int reclaim;
930 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800931 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800932 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700933 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -0700934
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800935 /* uCode's read index (stored in shared DRAM) indicates the last Rx
936 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800937 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700938 i = rxq->read;
939
940 /* Rx interrupt, but nothing sent from uCode */
941 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800942 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700943
Mohamed Abbas4752c932009-05-22 11:01:51 -0700944 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -0700945 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700946 if (total_empty < 0)
947 total_empty += RX_QUEUE_SIZE;
948
949 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800950 fill_rx = 1;
951
Zhu Yib481de92007-09-25 17:54:57 -0700952 while (i != r) {
953 rxb = rxq->queue[i];
954
Ben Cahill9fbab512007-11-29 11:09:47 +0800955 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700956 * then a bug has been introduced in the queue refilling
957 * routines -- catch it here */
958 BUG_ON(rxb == NULL);
959
960 rxq->queue[i] = NULL;
961
Zhu Yi2f301222009-10-09 17:19:45 +0800962 pci_unmap_page(priv->pci_dev, rxb->page_dma,
963 PAGE_SIZE << priv->hw_params.rx_page_order,
964 PCI_DMA_FROMDEVICE);
965 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700966
Johannes Bergbe1a71a2009-10-02 13:44:02 -0700967 trace_iwlwifi_dev_rx(priv, pkt,
968 le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK);
969
Zhu Yib481de92007-09-25 17:54:57 -0700970 /* Reclaim a command buffer only if this packet is a response
971 * to a (driver-originated) command.
972 * If the packet (e.g. Rx frame) originated from uCode,
973 * there is no command buffer to reclaim.
974 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
975 * but apparently a few don't get set; catch them here. */
976 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
977 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700978 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700979 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800980 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700981 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
982 (pkt->hdr.cmd != REPLY_TX);
983
984 /* Based on type of command response or notification,
985 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700986 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -0700987 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -0800988 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +0800989 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700990 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -0700991 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700992 } else {
993 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -0800994 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700995 "r %d i %d No handler needed for %s, 0x%02x\n",
996 r, i, get_cmd_string(pkt->hdr.cmd),
997 pkt->hdr.cmd);
998 }
999
Zhu Yi29b1b262009-10-23 13:42:25 -07001000 /*
1001 * XXX: After here, we should always check rxb->page
1002 * against NULL before touching it or its virtual
1003 * memory (pkt). Because some rx_handler might have
1004 * already taken or freed the pages.
1005 */
1006
Zhu Yib481de92007-09-25 17:54:57 -07001007 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001008 /* Invoke any callbacks, transfer the buffer to caller,
1009 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001010 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001011 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001012 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001013 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001014 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001015 }
1016
Zhu Yi73005152009-10-23 13:42:32 -07001017 /* Reuse the page if possible. For notification packets and
1018 * SKBs that fail to Rx correctly, add them back into the
1019 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001020 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001021 if (rxb->page != NULL) {
1022 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1023 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1024 PCI_DMA_FROMDEVICE);
1025 list_add_tail(&rxb->list, &rxq->rx_free);
1026 rxq->free_count++;
1027 } else
1028 list_add_tail(&rxb->list, &rxq->rx_used);
1029
Zhu Yib481de92007-09-25 17:54:57 -07001030 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001031
Zhu Yib481de92007-09-25 17:54:57 -07001032 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001033 /* If there are a lot of unused frames,
1034 * restock the Rx queue so ucode wont assert. */
1035 if (fill_rx) {
1036 count++;
1037 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001038 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001039 iwl_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001040 count = 0;
1041 }
1042 }
Zhu Yib481de92007-09-25 17:54:57 -07001043 }
1044
1045 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001046 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001047 if (fill_rx)
1048 iwl_rx_replenish_now(priv);
1049 else
1050 iwl_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001051}
Tomas Winklera55360e2008-05-05 10:22:28 +08001052
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001053/* call this function to flush any scheduled tasklet */
1054static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1055{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001056 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001057 synchronize_irq(priv->pci_dev->irq);
1058 tasklet_kill(&priv->irq_tasklet);
1059}
1060
Mohamed Abbasef850d72009-05-22 11:01:50 -07001061static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001062{
1063 u32 inta, handled = 0;
1064 u32 inta_fh;
1065 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001066 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001068 u32 inta_mask;
1069#endif
1070
1071 spin_lock_irqsave(&priv->lock, flags);
1072
1073 /* Ack/clear/reset pending uCode interrupts.
1074 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1075 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001076 inta = iwl_read32(priv, CSR_INT);
1077 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001078
1079 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1080 * Any new interrupts that happen after this, either while we're
1081 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001082 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1083 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001084
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001085#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001086 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001087 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001088 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001089 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001090 inta, inta_mask, inta_fh);
1091 }
1092#endif
1093
Zhu Yi2f301222009-10-09 17:19:45 +08001094 spin_unlock_irqrestore(&priv->lock, flags);
1095
Zhu Yib481de92007-09-25 17:54:57 -07001096 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1097 * atomic, make sure that inta covers all the interrupts that
1098 * we've discovered, even if FH interrupt came in just after
1099 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001100 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001101 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001102 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001103 inta |= CSR_INT_BIT_FH_TX;
1104
1105 /* Now service all interrupt bits discovered above. */
1106 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001107 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001108
1109 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001110 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001111
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001112 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001113 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001114
1115 handled |= CSR_INT_BIT_HW_ERR;
1116
Zhu Yib481de92007-09-25 17:54:57 -07001117 return;
1118 }
1119
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001120#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001121 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001122 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001123 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001124 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001125 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001126 priv->isr_stats.sch++;
1127 }
Zhu Yib481de92007-09-25 17:54:57 -07001128
1129 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001130 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001131 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001132 priv->isr_stats.alive++;
1133 }
Zhu Yib481de92007-09-25 17:54:57 -07001134 }
1135#endif
1136 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001137 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001138
Ben Cahill9fbab512007-11-29 11:09:47 +08001139 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001140 if (inta & CSR_INT_BIT_RF_KILL) {
1141 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001142 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001143 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1144 hw_rf_kill = 1;
1145
Reinette Chatre4c423a22009-07-17 09:30:26 -07001146 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001147 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001148
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001149 priv->isr_stats.rfkill++;
1150
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001151 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001152 * the driver allows loading the ucode even if the radio
1153 * is killed. Hence update the killswitch state here. The
1154 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001155 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001156 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1157 if (hw_rf_kill)
1158 set_bit(STATUS_RF_KILL_HW, &priv->status);
1159 else
1160 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001161 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001162 }
Zhu Yib481de92007-09-25 17:54:57 -07001163
1164 handled |= CSR_INT_BIT_RF_KILL;
1165 }
1166
Ben Cahill9fbab512007-11-29 11:09:47 +08001167 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001168 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001169 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001170 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001171 handled |= CSR_INT_BIT_CT_KILL;
1172 }
1173
1174 /* Error detected by uCode */
1175 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001176 IWL_ERR(priv, "Microcode SW error detected. "
1177 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001178 priv->isr_stats.sw++;
1179 priv->isr_stats.sw_err = inta;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001180 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001181 handled |= CSR_INT_BIT_SW_ERR;
1182 }
1183
Ben Cahillc2e61da2009-10-30 14:36:09 -07001184 /*
1185 * uCode wakes up after power-down sleep.
1186 * Tell device about any new tx or host commands enqueued,
1187 * and about any Rx buffers made available while asleep.
1188 */
Zhu Yib481de92007-09-25 17:54:57 -07001189 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001190 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001191 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001192 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1193 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001194 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001195 handled |= CSR_INT_BIT_WAKEUP;
1196 }
1197
1198 /* All uCode command responses, including Tx command responses,
1199 * Rx "responses" (frame-received notification), and other
1200 * notifications from uCode come through here*/
1201 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001202 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001203 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001204 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1205 }
1206
Ben Cahillc72cd192009-10-30 14:36:08 -07001207 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001208 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001209 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001210 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001211 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001212 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001213 priv->ucode_write_complete = 1;
1214 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001215 }
1216
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001217 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001218 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001219 priv->isr_stats.unhandled++;
1220 }
Zhu Yib481de92007-09-25 17:54:57 -07001221
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001222 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001223 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001224 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001225 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001226 }
1227
1228 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001229 /* only Re-enable if diabled by irq */
1230 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001231 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001232
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001233#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001234 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001235 inta = iwl_read32(priv, CSR_INT);
1236 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1237 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001238 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001239 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1240 }
1241#endif
Zhu Yib481de92007-09-25 17:54:57 -07001242}
1243
Mohamed Abbasef850d72009-05-22 11:01:50 -07001244/* tasklet for iwlagn interrupt */
1245static void iwl_irq_tasklet(struct iwl_priv *priv)
1246{
1247 u32 inta = 0;
1248 u32 handled = 0;
1249 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001250 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001251#ifdef CONFIG_IWLWIFI_DEBUG
1252 u32 inta_mask;
1253#endif
1254
1255 spin_lock_irqsave(&priv->lock, flags);
1256
1257 /* Ack/clear/reset pending uCode interrupts.
1258 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1259 */
Johannes Berga4c8b2a62010-01-21 06:25:54 -08001260 iwl_write32(priv, CSR_INT, priv->_agn.inta);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001261
Johannes Berga4c8b2a62010-01-21 06:25:54 -08001262 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001263
1264#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001265 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001266 /* just for debug */
1267 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1268 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1269 inta, inta_mask);
1270 }
1271#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001272
1273 spin_unlock_irqrestore(&priv->lock, flags);
1274
Johannes Berga4c8b2a62010-01-21 06:25:54 -08001275 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1276 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001277
1278 /* Now service all interrupt bits discovered above. */
1279 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001280 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001281
1282 /* Tell the device to stop sending interrupts */
1283 iwl_disable_interrupts(priv);
1284
1285 priv->isr_stats.hw++;
1286 iwl_irq_handle_error(priv);
1287
1288 handled |= CSR_INT_BIT_HW_ERR;
1289
Mohamed Abbasef850d72009-05-22 11:01:50 -07001290 return;
1291 }
1292
1293#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001294 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001295 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1296 if (inta & CSR_INT_BIT_SCD) {
1297 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1298 "the frame/frames.\n");
1299 priv->isr_stats.sch++;
1300 }
1301
1302 /* Alive notification via Rx interrupt will do the real work */
1303 if (inta & CSR_INT_BIT_ALIVE) {
1304 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1305 priv->isr_stats.alive++;
1306 }
1307 }
1308#endif
1309 /* Safely ignore these bits for debug checks below */
1310 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1311
1312 /* HW RF KILL switch toggled */
1313 if (inta & CSR_INT_BIT_RF_KILL) {
1314 int hw_rf_kill = 0;
1315 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1316 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1317 hw_rf_kill = 1;
1318
Reinette Chatre4c423a22009-07-17 09:30:26 -07001319 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001320 hw_rf_kill ? "disable radio" : "enable radio");
1321
1322 priv->isr_stats.rfkill++;
1323
1324 /* driver only loads ucode once setting the interface up.
1325 * the driver allows loading the ucode even if the radio
1326 * is killed. Hence update the killswitch state here. The
1327 * rfkill handler will care about restarting if needed.
1328 */
1329 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1330 if (hw_rf_kill)
1331 set_bit(STATUS_RF_KILL_HW, &priv->status);
1332 else
1333 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001334 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001335 }
1336
1337 handled |= CSR_INT_BIT_RF_KILL;
1338 }
1339
1340 /* Chip got too hot and stopped itself */
1341 if (inta & CSR_INT_BIT_CT_KILL) {
1342 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1343 priv->isr_stats.ctkill++;
1344 handled |= CSR_INT_BIT_CT_KILL;
1345 }
1346
1347 /* Error detected by uCode */
1348 if (inta & CSR_INT_BIT_SW_ERR) {
1349 IWL_ERR(priv, "Microcode SW error detected. "
1350 " Restarting 0x%X.\n", inta);
1351 priv->isr_stats.sw++;
1352 priv->isr_stats.sw_err = inta;
1353 iwl_irq_handle_error(priv);
1354 handled |= CSR_INT_BIT_SW_ERR;
1355 }
1356
1357 /* uCode wakes up after power-down sleep */
1358 if (inta & CSR_INT_BIT_WAKEUP) {
1359 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1360 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001361 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1362 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001363
1364 priv->isr_stats.wakeup++;
1365
1366 handled |= CSR_INT_BIT_WAKEUP;
1367 }
1368
1369 /* All uCode command responses, including Tx command responses,
1370 * Rx "responses" (frame-received notification), and other
1371 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001372 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1373 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001374 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001375 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1376 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1377 iwl_write32(priv, CSR_FH_INT_STATUS,
1378 CSR49_FH_INT_RX_MASK);
1379 }
1380 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1381 handled |= CSR_INT_BIT_RX_PERIODIC;
1382 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1383 }
1384 /* Sending RX interrupt require many steps to be done in the
1385 * the device:
1386 * 1- write interrupt to current index in ICT table.
1387 * 2- dma RX frame.
1388 * 3- update RX shared data to indicate last write index.
1389 * 4- send interrupt.
1390 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001391 * but the shared data changes does not reflect this;
1392 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001393 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001394
1395 /* Disable periodic interrupt; we use it as just a one-shot. */
1396 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001397 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001398 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001399
1400 /*
1401 * Enable periodic interrupt in 8 msec only if we received
1402 * real RX interrupt (instead of just periodic int), to catch
1403 * any dangling Rx interrupt. If it was just the periodic
1404 * interrupt, there was no dangling Rx activity, and no need
1405 * to extend the periodic interrupt; one-shot is enough.
1406 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001407 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001408 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001409 CSR_INT_PERIODIC_ENA);
1410
Mohamed Abbasef850d72009-05-22 11:01:50 -07001411 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001412 }
1413
Ben Cahillc72cd192009-10-30 14:36:08 -07001414 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001415 if (inta & CSR_INT_BIT_FH_TX) {
1416 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001417 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001418 priv->isr_stats.tx++;
1419 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001420 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001421 priv->ucode_write_complete = 1;
1422 wake_up_interruptible(&priv->wait_command_queue);
1423 }
1424
1425 if (inta & ~handled) {
1426 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1427 priv->isr_stats.unhandled++;
1428 }
1429
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001430 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001431 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001432 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001433 }
1434
Mohamed Abbasef850d72009-05-22 11:01:50 -07001435 /* Re-enable all interrupts */
1436 /* only Re-enable if diabled by irq */
1437 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1438 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001439}
1440
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001441
Zhu Yib481de92007-09-25 17:54:57 -07001442/******************************************************************************
1443 *
1444 * uCode download functions
1445 *
1446 ******************************************************************************/
1447
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001448static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001449{
Tomas Winkler98c92212008-01-14 17:46:20 -08001450 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1451 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1452 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1453 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1454 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1455 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001456}
1457
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001458static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001459{
1460 /* Remove all resets to allow NIC to operate */
1461 iwl_write32(priv, CSR_RESET, 0);
1462}
1463
1464
Johannes Bergb08dfd02010-01-29 11:54:56 -08001465static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
1466static int iwl_mac_setup_register(struct iwl_priv *priv);
1467
1468static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001469{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001470 const char *name_pre = priv->cfg->fw_name_pre;
Johannes Bergb08dfd02010-01-29 11:54:56 -08001471
1472 if (first)
1473 priv->fw_index = priv->cfg->ucode_api_max;
1474 else
1475 priv->fw_index--;
1476
1477 if (priv->fw_index < priv->cfg->ucode_api_min) {
1478 IWL_ERR(priv, "no suitable firmware found!\n");
1479 return -ENOENT;
1480 }
1481
1482 sprintf(priv->firmware_name, "%s%d%s",
1483 name_pre, priv->fw_index, ".ucode");
1484
1485 IWL_DEBUG_INFO(priv, "attempting to load firmware '%s'\n",
1486 priv->firmware_name);
1487
1488 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1489 &priv->pci_dev->dev, GFP_KERNEL, priv,
1490 iwl_ucode_callback);
1491}
1492
1493/**
1494 * iwl_ucode_callback - callback when firmware was loaded
1495 *
1496 * If loaded successfully, copies the firmware into buffers
1497 * for the card to fetch (via DMA).
1498 */
1499static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
1500{
1501 struct iwl_priv *priv = context;
1502 struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001503 const unsigned int api_max = priv->cfg->ucode_api_max;
1504 const unsigned int api_min = priv->cfg->ucode_api_min;
Zhu Yib481de92007-09-25 17:54:57 -07001505 u8 *src;
1506 size_t len;
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001507 u32 api_ver, build;
1508 u32 inst_size, data_size, init_size, init_data_size, boot_size;
Johannes Bergb08dfd02010-01-29 11:54:56 -08001509 int err;
Jay Sternbergabdc2d62009-07-31 14:28:09 -07001510 u16 eeprom_ver;
Zhu Yib481de92007-09-25 17:54:57 -07001511
Johannes Bergb08dfd02010-01-29 11:54:56 -08001512 if (!ucode_raw) {
1513 IWL_ERR(priv, "request for firmware file '%s' failed.\n",
1514 priv->firmware_name);
1515 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001516 }
1517
Johannes Bergb08dfd02010-01-29 11:54:56 -08001518 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
1519 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07001520
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001521 /* Make sure that we got at least the v1 header! */
1522 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001523 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001524 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001525 }
1526
1527 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001528 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07001529
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001530 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001531 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001532 build = priv->cfg->ops->ucode->get_build(ucode, api_ver);
1533 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
1534 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
1535 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
1536 init_data_size =
1537 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
1538 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
1539 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001540
Reinette Chatrea0987a82008-12-02 12:14:06 -08001541 /* api_ver should match the api version forming part of the
1542 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01001543 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001544
1545 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001546 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001547 "Driver supports v%u, firmware is v%u.\n",
1548 api_max, api_ver);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001549 goto try_again;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001550 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001551
Reinette Chatrea0987a82008-12-02 12:14:06 -08001552 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001553 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001554 "got v%u. New firmware can be obtained "
1555 "from http://www.intellinuxwireless.org.\n",
1556 api_max, api_ver);
1557
Tomas Winkler978785a2008-12-19 10:37:31 +08001558 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1559 IWL_UCODE_MAJOR(priv->ucode_ver),
1560 IWL_UCODE_MINOR(priv->ucode_ver),
1561 IWL_UCODE_API(priv->ucode_ver),
1562 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001563
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07001564 snprintf(priv->hw->wiphy->fw_version,
1565 sizeof(priv->hw->wiphy->fw_version),
1566 "%u.%u.%u.%u",
1567 IWL_UCODE_MAJOR(priv->ucode_ver),
1568 IWL_UCODE_MINOR(priv->ucode_ver),
1569 IWL_UCODE_API(priv->ucode_ver),
1570 IWL_UCODE_SERIAL(priv->ucode_ver));
1571
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001572 if (build)
1573 IWL_DEBUG_INFO(priv, "Build %u\n", build);
1574
Jay Sternbergabdc2d62009-07-31 14:28:09 -07001575 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
1576 IWL_DEBUG_INFO(priv, "NVM Type: %s, version: 0x%x\n",
1577 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
1578 ? "OTP" : "EEPROM", eeprom_ver);
1579
Tomas Winklere1623442009-01-27 14:27:56 -08001580 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001581 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001582 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001583 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001584 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001585 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001586 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001587 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001588 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001589 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001590 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001591 boot_size);
1592
Johannes Bergb08dfd02010-01-29 11:54:56 -08001593 /*
1594 * For any of the failures below (before allocating pci memory)
1595 * we will try to load a version with a smaller API -- maybe the
1596 * user just got a corrupted version of the latest API.
1597 */
1598
Zhu Yib481de92007-09-25 17:54:57 -07001599 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001600 if (ucode_raw->size !=
1601 priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07001602 inst_size + data_size + init_size +
1603 init_data_size + boot_size) {
1604
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001605 IWL_DEBUG_INFO(priv,
1606 "uCode file size %d does not match expected size\n",
1607 (int)ucode_raw->size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001608 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001609 }
1610
1611 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001612 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001613 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001614 inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001615 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001616 }
1617
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001618 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001619 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001620 data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001621 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001622 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001623 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001624 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1625 init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001626 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001627 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001628 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001629 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001630 init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001631 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001632 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001633 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001634 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1635 boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001636 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001637 }
1638
1639 /* Allocate ucode buffers for card's bus-master loading ... */
1640
1641 /* Runtime instructions and 2 copies of data:
1642 * 1) unmodified from disk
1643 * 2) backup cache for save/restore during power-downs */
1644 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001645 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001646
1647 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001648 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001649
1650 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001651 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001652
Zhu, Yi1f304e42009-01-23 13:45:22 -08001653 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1654 !priv->ucode_data_backup.v_addr)
1655 goto err_pci_alloc;
1656
Zhu Yib481de92007-09-25 17:54:57 -07001657 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001658 if (init_size && init_data_size) {
1659 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001660 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001661
Tomas Winkler90e759d2007-11-29 11:09:41 +08001662 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001663 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001664
1665 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1666 goto err_pci_alloc;
1667 }
Zhu Yib481de92007-09-25 17:54:57 -07001668
1669 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001670 if (boot_size) {
1671 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001672 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001673
Tomas Winkler90e759d2007-11-29 11:09:41 +08001674 if (!priv->ucode_boot.v_addr)
1675 goto err_pci_alloc;
1676 }
Zhu Yib481de92007-09-25 17:54:57 -07001677
1678 /* Copy images into buffers for card's bus-master reads ... */
1679
1680 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001681 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001682 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001683 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001684 src += len;
1685
Tomas Winklere1623442009-01-27 14:27:56 -08001686 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001687 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1688
1689 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001690 * NOTE: Copy into backup buffer will be done in iwl_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001691 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001692 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001693 memcpy(priv->ucode_data.v_addr, src, len);
1694 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001695 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07001696
1697 /* Initialization instructions (3rd block) */
1698 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001699 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001700 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001701 len);
Zhu Yib481de92007-09-25 17:54:57 -07001702 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001703 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07001704 }
1705
1706 /* Initialization data (4th block) */
1707 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001708 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001709 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001710 len);
Zhu Yib481de92007-09-25 17:54:57 -07001711 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001712 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07001713 }
1714
1715 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001716 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001717 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001718 memcpy(priv->ucode_boot.v_addr, src, len);
1719
Johannes Bergb08dfd02010-01-29 11:54:56 -08001720 /**************************************************
1721 * This is still part of probe() in a sense...
1722 *
1723 * 9. Setup and register with mac80211 and debugfs
1724 **************************************************/
1725 err = iwl_mac_setup_register(priv);
1726 if (err)
1727 goto out_unbind;
1728
1729 err = iwl_dbgfs_register(priv, DRV_NAME);
1730 if (err)
1731 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
1732
Zhu Yib481de92007-09-25 17:54:57 -07001733 /* We have our copies now, allow OS release its copies */
1734 release_firmware(ucode_raw);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001735 return;
1736
1737 try_again:
1738 /* try next, if any */
1739 if (iwl_request_firmware(priv, false))
1740 goto out_unbind;
1741 release_firmware(ucode_raw);
1742 return;
Zhu Yib481de92007-09-25 17:54:57 -07001743
1744 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001745 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001746 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001747 out_unbind:
1748 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07001749 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07001750}
1751
Reinette Chatreb7a79402009-09-25 14:24:23 -07001752static const char *desc_lookup_text[] = {
1753 "OK",
1754 "FAIL",
1755 "BAD_PARAM",
1756 "BAD_CHECKSUM",
1757 "NMI_INTERRUPT_WDG",
1758 "SYSASSERT",
1759 "FATAL_ERROR",
1760 "BAD_COMMAND",
1761 "HW_ERROR_TUNE_LOCK",
1762 "HW_ERROR_TEMPERATURE",
1763 "ILLEGAL_CHAN_FREQ",
1764 "VCC_NOT_STABLE",
1765 "FH_ERROR",
1766 "NMI_INTERRUPT_HOST",
1767 "NMI_INTERRUPT_ACTION_PT",
1768 "NMI_INTERRUPT_UNKNOWN",
1769 "UCODE_VERSION_MISMATCH",
1770 "HW_ERROR_ABS_LOCK",
1771 "HW_ERROR_CAL_LOCK_FAIL",
1772 "NMI_INTERRUPT_INST_ACTION_PT",
1773 "NMI_INTERRUPT_DATA_ACTION_PT",
1774 "NMI_TRM_HW_ER",
1775 "NMI_INTERRUPT_TRM",
1776 "NMI_INTERRUPT_BREAK_POINT"
1777 "DEBUG_0",
1778 "DEBUG_1",
1779 "DEBUG_2",
1780 "DEBUG_3",
Wey-Yi Guya7fce6e2010-01-19 16:51:50 -08001781 "ADVANCED SYSASSERT"
Reinette Chatreb7a79402009-09-25 14:24:23 -07001782};
1783
1784static const char *desc_lookup(int i)
1785{
1786 int max = ARRAY_SIZE(desc_lookup_text) - 1;
1787
1788 if (i < 0 || i > max)
1789 i = max;
1790
1791 return desc_lookup_text[i];
1792}
1793
1794#define ERROR_START_OFFSET (1 * sizeof(u32))
1795#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1796
1797void iwl_dump_nic_error_log(struct iwl_priv *priv)
1798{
1799 u32 data2, line;
1800 u32 desc, time, count, base, data1;
1801 u32 blink1, blink2, ilink1, ilink2;
1802
1803 if (priv->ucode_type == UCODE_INIT)
1804 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
1805 else
1806 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1807
1808 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08001809 IWL_ERR(priv,
1810 "Not valid error log pointer 0x%08X for %s uCode\n",
1811 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07001812 return;
1813 }
1814
1815 count = iwl_read_targ_mem(priv, base);
1816
1817 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
1818 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1819 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1820 priv->status, count);
1821 }
1822
1823 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
1824 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
1825 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
1826 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
1827 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
1828 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
1829 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
1830 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
1831 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
1832
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001833 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
1834 blink1, blink2, ilink1, ilink2);
1835
Reinette Chatreb7a79402009-09-25 14:24:23 -07001836 IWL_ERR(priv, "Desc Time "
1837 "data1 data2 line\n");
1838 IWL_ERR(priv, "%-28s (#%02d) %010u 0x%08X 0x%08X %u\n",
1839 desc_lookup(desc), desc, time, data1, data2, line);
1840 IWL_ERR(priv, "blink1 blink2 ilink1 ilink2\n");
1841 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
1842 ilink1, ilink2);
1843
1844}
1845
1846#define EVENT_START_OFFSET (4 * sizeof(u32))
1847
1848/**
1849 * iwl_print_event_log - Dump error event log to syslog
1850 *
1851 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001852static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
1853 u32 num_events, u32 mode,
1854 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07001855{
1856 u32 i;
1857 u32 base; /* SRAM byte address of event log header */
1858 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1859 u32 ptr; /* SRAM byte address of log data */
1860 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08001861 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001862
1863 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001864 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001865 if (priv->ucode_type == UCODE_INIT)
1866 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1867 else
1868 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1869
1870 if (mode == 0)
1871 event_size = 2 * sizeof(u32);
1872 else
1873 event_size = 3 * sizeof(u32);
1874
1875 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1876
Ben Cahille5854472009-11-06 14:52:58 -08001877 /* Make sure device is powered up for SRAM reads */
1878 spin_lock_irqsave(&priv->reg_lock, reg_flags);
1879 iwl_grab_nic_access(priv);
1880
1881 /* Set starting address; reads will auto-increment */
1882 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1883 rmb();
1884
Reinette Chatreb7a79402009-09-25 14:24:23 -07001885 /* "time" is actually "data" for mode 0 (no timestamp).
1886 * place event id # at far right for easier visual parsing. */
1887 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08001888 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1889 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001890 if (mode == 0) {
1891 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001892 if (bufsz) {
1893 pos += scnprintf(*buf + pos, bufsz - pos,
1894 "EVT_LOG:0x%08x:%04u\n",
1895 time, ev);
1896 } else {
1897 trace_iwlwifi_dev_ucode_event(priv, 0,
1898 time, ev);
1899 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
1900 time, ev);
1901 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07001902 } else {
Ben Cahille5854472009-11-06 14:52:58 -08001903 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001904 if (bufsz) {
1905 pos += scnprintf(*buf + pos, bufsz - pos,
1906 "EVT_LOGT:%010u:0x%08x:%04u\n",
1907 time, data, ev);
1908 } else {
1909 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07001910 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001911 trace_iwlwifi_dev_ucode_event(priv, time,
1912 data, ev);
1913 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07001914 }
1915 }
Ben Cahille5854472009-11-06 14:52:58 -08001916
1917 /* Allow device to power down */
1918 iwl_release_nic_access(priv);
1919 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001920 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001921}
1922
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001923/**
1924 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
1925 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001926static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
1927 u32 num_wraps, u32 next_entry,
1928 u32 size, u32 mode,
1929 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001930{
1931 /*
1932 * display the newest DEFAULT_LOG_ENTRIES entries
1933 * i.e the entries just before the next ont that uCode would fill.
1934 */
1935 if (num_wraps) {
1936 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001937 pos = iwl_print_event_log(priv,
1938 capacity - (size - next_entry),
1939 size - next_entry, mode,
1940 pos, buf, bufsz);
1941 pos = iwl_print_event_log(priv, 0,
1942 next_entry, mode,
1943 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001944 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001945 pos = iwl_print_event_log(priv, next_entry - size,
1946 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001947 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001948 if (next_entry < size) {
1949 pos = iwl_print_event_log(priv, 0, next_entry,
1950 mode, pos, buf, bufsz);
1951 } else {
1952 pos = iwl_print_event_log(priv, next_entry - size,
1953 size, mode, pos, buf, bufsz);
1954 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001955 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001956 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001957}
1958
Ben Cahill84c40692009-11-06 14:52:57 -08001959/* For sanity check only. Actual size is determined by uCode, typ. 512 */
1960#define MAX_EVENT_LOG_SIZE (512)
1961
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001962#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
1963
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001964int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
1965 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07001966{
1967 u32 base; /* SRAM byte address of event log header */
1968 u32 capacity; /* event log capacity in # entries */
1969 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1970 u32 num_wraps; /* # times uCode wrapped to top of log */
1971 u32 next_entry; /* index of next entry to be written by uCode */
1972 u32 size; /* # entries that we'll print */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001973 int pos = 0;
1974 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001975
1976 if (priv->ucode_type == UCODE_INIT)
1977 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1978 else
1979 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1980
1981 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08001982 IWL_ERR(priv,
1983 "Invalid event log pointer 0x%08X for %s uCode\n",
1984 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001985 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001986 }
1987
1988 /* event log header */
1989 capacity = iwl_read_targ_mem(priv, base);
1990 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1991 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1992 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
1993
Ben Cahill84c40692009-11-06 14:52:57 -08001994 if (capacity > MAX_EVENT_LOG_SIZE) {
1995 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
1996 capacity, MAX_EVENT_LOG_SIZE);
1997 capacity = MAX_EVENT_LOG_SIZE;
1998 }
1999
2000 if (next_entry > MAX_EVENT_LOG_SIZE) {
2001 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
2002 next_entry, MAX_EVENT_LOG_SIZE);
2003 next_entry = MAX_EVENT_LOG_SIZE;
2004 }
2005
Reinette Chatreb7a79402009-09-25 14:24:23 -07002006 size = num_wraps ? capacity : next_entry;
2007
2008 /* bail out if nothing in log */
2009 if (size == 0) {
2010 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002011 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002012 }
2013
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002014#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002015 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002016 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2017 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2018#else
2019 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2020 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002021#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002022 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2023 size);
2024
2025#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002026 if (display) {
2027 if (full_log)
2028 bufsz = capacity * 48;
2029 else
2030 bufsz = size * 48;
2031 *buf = kmalloc(bufsz, GFP_KERNEL);
2032 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002033 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002034 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002035 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2036 /*
2037 * if uCode has wrapped back to top of log,
2038 * start at the oldest entry,
2039 * i.e the next one that uCode would fill.
2040 */
2041 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002042 pos = iwl_print_event_log(priv, next_entry,
2043 capacity - next_entry, mode,
2044 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002045 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002046 pos = iwl_print_event_log(priv, 0,
2047 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002048 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002049 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2050 next_entry, size, mode,
2051 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002052#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002053 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2054 next_entry, size, mode,
2055 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002056#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002057 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002058}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002059
Zhu Yib481de92007-09-25 17:54:57 -07002060/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002061 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002062 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002063 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002064 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002065static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002066{
Tomas Winkler57aab752008-04-14 21:16:03 -07002067 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002068
Tomas Winklere1623442009-01-27 14:27:56 -08002069 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002070
2071 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2072 /* We had an error bringing up the hardware, so take it
2073 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002074 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002075 goto restart;
2076 }
2077
2078 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2079 * This is a paranoid check, because we would not have gotten the
2080 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002081 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002082 /* Runtime instruction load was bad;
2083 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002084 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002085 goto restart;
2086 }
2087
Tomas Winkler57aab752008-04-14 21:16:03 -07002088 ret = priv->cfg->ops->lib->alive_notify(priv);
2089 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002090 IWL_WARN(priv,
2091 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002092 goto restart;
2093 }
2094
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002095 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002096 set_bit(STATUS_ALIVE, &priv->status);
2097
Tomas Winklerfee12472008-04-03 16:05:21 -07002098 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002099 return;
2100
Johannes Berg36d68252008-05-15 12:55:26 +02002101 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002102
Johannes Berg470ab2d2010-01-21 11:23:30 -08002103 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002104
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002105 /* Configure Tx antenna selection based on H/W config */
2106 if (priv->cfg->ops->hcmd->set_tx_ant)
2107 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2108
Tomas Winkler3109ece2008-03-28 16:33:35 -07002109 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002110 struct iwl_rxon_cmd *active_rxon =
2111 (struct iwl_rxon_cmd *)&priv->active_rxon;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002112 /* apply any changes in staging */
2113 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002114 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2115 } else {
2116 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002117 iwl_connection_init_rx_config(priv, priv->iw_mode);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002118
2119 if (priv->cfg->ops->hcmd->set_rxon_chain)
2120 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2121
Zhu Yib481de92007-09-25 17:54:57 -07002122 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2123 }
2124
Ben Cahill9fbab512007-11-29 11:09:47 +08002125 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002126 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002127
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002128 iwl_reset_run_time_calib(priv);
2129
Zhu Yib481de92007-09-25 17:54:57 -07002130 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002131 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002132
2133 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002134 iwl_rf_kill_ct_config(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002135
Johannes Berge932a602009-10-02 13:44:03 -07002136 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002137
Tomas Winklere1623442009-01-27 14:27:56 -08002138 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002139 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002140 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002141
Johannes Berge312c242009-08-07 15:41:51 -07002142 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002143 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2144
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002145
Zhu Yib481de92007-09-25 17:54:57 -07002146 return;
2147
2148 restart:
2149 queue_work(priv->workqueue, &priv->restart);
2150}
2151
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002152static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002153
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002154static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002155{
2156 unsigned long flags;
2157 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002158
Tomas Winklere1623442009-01-27 14:27:56 -08002159 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002160
Zhu Yib481de92007-09-25 17:54:57 -07002161 if (!exit_pending)
2162 set_bit(STATUS_EXIT_PENDING, &priv->status);
2163
Reinette Chatre7e246192010-02-18 22:58:32 -08002164 iwl_clear_ucode_stations(priv, true);
Zhu Yib481de92007-09-25 17:54:57 -07002165
2166 /* Unblock any waiting calls */
2167 wake_up_interruptible_all(&priv->wait_command_queue);
2168
Zhu Yib481de92007-09-25 17:54:57 -07002169 /* Wipe out the EXIT_PENDING status bit if we are not actually
2170 * exiting the module */
2171 if (!exit_pending)
2172 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2173
2174 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002175 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002176
2177 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002178 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002179 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002180 spin_unlock_irqrestore(&priv->lock, flags);
2181 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002182
2183 if (priv->mac80211_registered)
2184 ieee80211_stop_queues(priv->hw);
2185
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002186 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002187 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002188 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002189 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2190 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002191 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2192 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002193 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2194 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002195 goto exit;
2196 }
2197
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002198 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002199 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002200 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2201 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002202 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2203 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002204 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002205 STATUS_FW_ERROR |
2206 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2207 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002208
Mohamed Abbasef850d72009-05-22 11:01:50 -07002209 /* device going down, Stop using ICT table */
2210 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002211
Tomas Winklerda1bc452008-05-29 16:35:00 +08002212 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08002213 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002214
Ben Cahill309e7312009-11-06 14:53:03 -08002215 /* Power-down device's busmaster DMA clocks */
2216 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002217 udelay(5);
2218
Ben Cahill309e7312009-11-06 14:53:03 -08002219 /* Make sure (redundant) we've released our request to stay awake */
2220 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2221
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002222 /* Stop the device, and put it in low power state */
2223 priv->cfg->ops->lib->apm_ops.stop(priv);
2224
Zhu Yib481de92007-09-25 17:54:57 -07002225 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002226 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002227
2228 if (priv->ibss_beacon)
2229 dev_kfree_skb(priv->ibss_beacon);
2230 priv->ibss_beacon = NULL;
2231
2232 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002233 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002234}
2235
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002236static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002237{
2238 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002239 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002240 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002241
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002242 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002243}
2244
Mohamed Abbas086ed112009-05-22 11:01:54 -07002245#define HW_READY_TIMEOUT (50)
2246
2247static int iwl_set_hw_ready(struct iwl_priv *priv)
2248{
2249 int ret = 0;
2250
2251 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2252 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2253
2254 /* See if we got it */
2255 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2256 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2257 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2258 HW_READY_TIMEOUT);
2259 if (ret != -ETIMEDOUT)
2260 priv->hw_ready = true;
2261 else
2262 priv->hw_ready = false;
2263
2264 IWL_DEBUG_INFO(priv, "hardware %s\n",
2265 (priv->hw_ready == 1) ? "ready" : "not ready");
2266 return ret;
2267}
2268
2269static int iwl_prepare_card_hw(struct iwl_priv *priv)
2270{
2271 int ret = 0;
2272
2273 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter \n");
2274
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002275 ret = iwl_set_hw_ready(priv);
2276 if (priv->hw_ready)
2277 return ret;
2278
2279 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002280 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2281 CSR_HW_IF_CONFIG_REG_PREPARE);
2282
2283 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2284 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
2285 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
2286
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002287 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002288 if (ret != -ETIMEDOUT)
2289 iwl_set_hw_ready(priv);
2290
2291 return ret;
2292}
2293
Zhu Yib481de92007-09-25 17:54:57 -07002294#define MAX_HW_RESTARTS 5
2295
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002296static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002297{
Tomas Winkler57aab752008-04-14 21:16:03 -07002298 int i;
2299 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002300
2301 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002302 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002303 return -EIO;
2304 }
2305
Reinette Chatree903fbd2008-01-30 22:05:15 -08002306 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002307 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002308 return -EIO;
2309 }
2310
Mohamed Abbas086ed112009-05-22 11:01:54 -07002311 iwl_prepare_card_hw(priv);
2312
2313 if (!priv->hw_ready) {
2314 IWL_WARN(priv, "Exit HW not ready\n");
2315 return -EIO;
2316 }
2317
Zhu Yie655b9f2008-01-24 02:19:38 -08002318 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08002319 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08002320 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002321 else
Zhu Yie655b9f2008-01-24 02:19:38 -08002322 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002323
Tomas Winklerc1842d62008-08-04 16:00:43 +08002324 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02002325 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
2326
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002327 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02002328 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08002329 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002330 }
2331
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002332 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002333
Ron Rindjunsky1053d352008-05-05 10:22:43 +08002334 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002335 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002336 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07002337 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002338 }
2339
2340 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002341 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2342 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002343 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2344
2345 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002346 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002347 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002348
2349 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002350 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2351 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002352
2353 /* Copy original ucode data image from disk into backup cache.
2354 * This will be used to initialize the on-board processor's
2355 * data SRAM for a clean start when the runtime program first loads. */
2356 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002357 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002358
Zhu Yib481de92007-09-25 17:54:57 -07002359 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2360
Zhu Yib481de92007-09-25 17:54:57 -07002361 /* load bootstrap state machine,
2362 * load bootstrap program into processor's memory,
2363 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07002364 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002365
Tomas Winkler57aab752008-04-14 21:16:03 -07002366 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002367 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
2368 ret);
Zhu Yib481de92007-09-25 17:54:57 -07002369 continue;
2370 }
2371
2372 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002373 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002374
Tomas Winklere1623442009-01-27 14:27:56 -08002375 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002376
2377 return 0;
2378 }
2379
2380 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002381 __iwl_down(priv);
Mohamed Abbas64e72c32008-06-12 09:47:03 +08002382 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002383
2384 /* tried to restart and config the device for as long as our
2385 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002386 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002387 return -EIO;
2388}
2389
2390
2391/*****************************************************************************
2392 *
2393 * Workqueue callbacks
2394 *
2395 *****************************************************************************/
2396
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002397static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002398{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002399 struct iwl_priv *priv =
2400 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002401
2402 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2403 return;
2404
2405 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08002406 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002407 mutex_unlock(&priv->mutex);
2408}
2409
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002410static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002411{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002412 struct iwl_priv *priv =
2413 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002414
2415 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2416 return;
2417
Mohamed Abbas258c44a2009-06-03 11:44:10 -07002418 /* enable dram interrupt */
2419 iwl_reset_ict(priv);
2420
Zhu Yib481de92007-09-25 17:54:57 -07002421 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002422 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002423 mutex_unlock(&priv->mutex);
2424}
2425
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08002426static void iwl_bg_run_time_calib_work(struct work_struct *work)
2427{
2428 struct iwl_priv *priv = container_of(work, struct iwl_priv,
2429 run_time_calib_work);
2430
2431 mutex_lock(&priv->mutex);
2432
2433 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
2434 test_bit(STATUS_SCANNING, &priv->status)) {
2435 mutex_unlock(&priv->mutex);
2436 return;
2437 }
2438
2439 if (priv->start_calib) {
2440 iwl_chain_noise_calibration(priv, &priv->statistics);
2441
2442 iwl_sensitivity_calibration(priv, &priv->statistics);
2443 }
2444
2445 mutex_unlock(&priv->mutex);
2446 return;
2447}
2448
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002449static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002450{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002451 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002452
2453 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2454 return;
2455
Johannes Berg19cc1082009-05-08 13:44:36 -07002456 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
2457 mutex_lock(&priv->mutex);
2458 priv->vif = NULL;
2459 priv->is_open = 0;
2460 mutex_unlock(&priv->mutex);
2461 iwl_down(priv);
2462 ieee80211_restart_hw(priv->hw);
2463 } else {
2464 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08002465
2466 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2467 return;
2468
2469 mutex_lock(&priv->mutex);
2470 __iwl_up(priv);
2471 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07002472 }
Zhu Yib481de92007-09-25 17:54:57 -07002473}
2474
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002475static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002476{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002477 struct iwl_priv *priv =
2478 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002479
2480 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2481 return;
2482
2483 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08002484 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002485 mutex_unlock(&priv->mutex);
2486}
2487
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002488#define IWL_DELAY_NEXT_SCAN (HZ*2)
2489
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002490void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002491{
Zhu Yib481de92007-09-25 17:54:57 -07002492 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07002493 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002494 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002495
Johannes Berg05c914f2008-09-11 00:01:58 +02002496 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002497 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002498 return;
2499 }
2500
Tomas Winklere1623442009-01-27 14:27:56 -08002501 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002502 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002503
2504
2505 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2506 return;
2507
Zhu Yib481de92007-09-25 17:54:57 -07002508
Reinette Chatre508e32e2008-04-14 21:16:13 -07002509 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08002510 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002511
Tomas Winkler2a421b92008-06-12 09:47:10 +08002512 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08002513
Zhu Yib481de92007-09-25 17:54:57 -07002514 conf = ieee80211_get_hw_conf(priv->hw);
2515
2516 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002517 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002518
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002519 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002520 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002521 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002522 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002523 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002524 "Attempting to continue.\n");
2525
2526 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2527
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08002528 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03002529
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002530 if (priv->cfg->ops->hcmd->set_rxon_chain)
2531 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2532
Zhu Yib481de92007-09-25 17:54:57 -07002533 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2534
Tomas Winklere1623442009-01-27 14:27:56 -08002535 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002536 priv->assoc_id, priv->beacon_int);
2537
2538 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2539 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2540 else
2541 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2542
2543 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2544 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2545 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2546 else
2547 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2548
Johannes Berg05c914f2008-09-11 00:01:58 +02002549 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002550 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2551
2552 }
2553
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002554 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002555
2556 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002557 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002558 break;
2559
Johannes Berg05c914f2008-09-11 00:01:58 +02002560 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002561
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002562 /* assume default assoc id */
2563 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002564
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002565 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002566 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002567
2568 break;
2569
2570 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002571 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002572 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002573 break;
2574 }
2575
Johannes Berg05c914f2008-09-11 00:01:58 +02002576 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002577 priv->assoc_station_added = 1;
2578
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002579 spin_lock_irqsave(&priv->lock, flags);
2580 iwl_activate_qos(priv, 0);
2581 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002582
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002583 /* the chain noise calibration will enabled PM upon completion
2584 * If chain noise has already been run, then we need to enable
2585 * power management here */
2586 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07002587 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002588
2589 /* Enable Rx differential gain and sensitivity calibrations */
2590 iwl_chain_noise_reset(priv);
2591 priv->start_calib = 1;
2592
Reinette Chatre508e32e2008-04-14 21:16:13 -07002593}
2594
Zhu Yib481de92007-09-25 17:54:57 -07002595/*****************************************************************************
2596 *
2597 * mac80211 entry point functions
2598 *
2599 *****************************************************************************/
2600
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002601#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a669262008-01-14 17:46:18 -08002602
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002603/*
2604 * Not a mac80211 entry point function, but it fits in with all the
2605 * other mac80211 functions grouped here.
2606 */
Johannes Berg158bea02010-01-22 14:22:53 -08002607static int iwl_mac_setup_register(struct iwl_priv *priv)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002608{
2609 int ret;
2610 struct ieee80211_hw *hw = priv->hw;
2611 hw->rate_control_algorithm = "iwl-agn-rs";
2612
2613 /* Tell mac80211 our characteristics */
2614 hw->flags = IEEE80211_HW_SIGNAL_DBM |
2615 IEEE80211_HW_NOISE_DBM |
2616 IEEE80211_HW_AMPDU_AGGREGATION |
2617 IEEE80211_HW_SPECTRUM_MGMT;
2618
2619 if (!priv->cfg->broken_powersave)
2620 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
2621 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
2622
Johannes Bergba37a3d2009-12-10 14:37:27 -08002623 if (priv->cfg->sku & IWL_SKU_N)
2624 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
2625 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
2626
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002627 hw->sta_data_size = sizeof(struct iwl_station_priv);
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002628 hw->wiphy->interface_modes =
2629 BIT(NL80211_IFTYPE_STATION) |
2630 BIT(NL80211_IFTYPE_ADHOC);
2631
Johannes Berg5be83de2009-11-19 00:56:28 +01002632 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY |
2633 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002634
2635 /*
2636 * For now, disable PS by default because it affects
2637 * RX performance significantly.
2638 */
Johannes Berg5be83de2009-11-19 00:56:28 +01002639 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002640
Samuel Ortiz21b2d8b2010-02-05 11:33:48 -08002641 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX + 1;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002642 /* we create the 802.11 header and a zero-length SSID element */
2643 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
2644
2645 /* Default value; 4 EDCA QOS priorities */
2646 hw->queues = 4;
2647
2648 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
2649
2650 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
2651 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
2652 &priv->bands[IEEE80211_BAND_2GHZ];
2653 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
2654 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
2655 &priv->bands[IEEE80211_BAND_5GHZ];
2656
2657 ret = ieee80211_register_hw(priv->hw);
2658 if (ret) {
2659 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
2660 return ret;
2661 }
2662 priv->mac80211_registered = 1;
2663
2664 return 0;
2665}
2666
2667
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002668static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002669{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002670 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08002671 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002672
Tomas Winklere1623442009-01-27 14:27:56 -08002673 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002674
2675 /* we should be verifying the device is ready to be opened */
2676 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002677 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002678 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08002679
Zhu Yie655b9f2008-01-24 02:19:38 -08002680 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002681 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002682
Tomas Winklerc1842d62008-08-04 16:00:43 +08002683 if (iwl_is_rfkill(priv))
2684 goto out;
2685
Tomas Winklere1623442009-01-27 14:27:56 -08002686 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002687
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002688 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a669262008-01-14 17:46:18 -08002689 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002690 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2691 test_bit(STATUS_READY, &priv->status),
2692 UCODE_READY_TIMEOUT);
2693 if (!ret) {
2694 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002695 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002696 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002697 return -ETIMEDOUT;
Zhu Yi5a669262008-01-14 17:46:18 -08002698 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002699 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002700
Johannes Berge932a602009-10-02 13:44:03 -07002701 iwl_led_start(priv);
2702
Tomas Winklerc1842d62008-08-04 16:00:43 +08002703out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002704 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002705 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002706 return 0;
2707}
2708
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002709static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002710{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002711 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002712
Tomas Winklere1623442009-01-27 14:27:56 -08002713 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002714
Johannes Berg19cc1082009-05-08 13:44:36 -07002715 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08002716 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08002717
Zhu Yib481de92007-09-25 17:54:57 -07002718 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08002719
Wey-Yi Guy5bddf542009-08-21 13:34:25 -07002720 if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002721 /* stop mac, cancel any scan request and clear
2722 * RXON_FILTER_ASSOC_MSK BIT
2723 */
Zhu Yi5a669262008-01-14 17:46:18 -08002724 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002725 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002726 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002727 }
2728
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002729 iwl_down(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002730
2731 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002732
2733 /* enable interrupts again in order to receive rfkill changes */
2734 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2735 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002736
Tomas Winklere1623442009-01-27 14:27:56 -08002737 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002738}
2739
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002740static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002741{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002742 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002743
Tomas Winklere1623442009-01-27 14:27:56 -08002744 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002745
Tomas Winklere1623442009-01-27 14:27:56 -08002746 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002747 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002748
Johannes Berge039fa42008-05-15 12:55:29 +02002749 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002750 dev_kfree_skb_any(skb);
2751
Tomas Winklere1623442009-01-27 14:27:56 -08002752 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002753 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002754}
2755
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07002756void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002757{
Tomas Winkler857485c2008-03-21 13:53:44 -07002758 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002759 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002760
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002761 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002762 return;
2763
2764 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002765 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002766
2767 /* RXON - unassoc (to set timing command) */
2768 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002769 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002770
2771 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002772 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002773 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002774 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002775 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002776 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002777 "Attempting to continue.\n");
2778
Daniel C Halperinf513dff2009-11-13 11:56:34 -08002779 /* AP has all antennas */
2780 priv->chain_noise_data.active_chains =
2781 priv->hw_params.valid_rx_ant;
2782 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002783 if (priv->cfg->ops->hcmd->set_rxon_chain)
2784 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002785
2786 /* FIXME: what should be the assoc_id for AP? */
2787 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2788 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2789 priv->staging_rxon.flags |=
2790 RXON_FLG_SHORT_PREAMBLE_MSK;
2791 else
2792 priv->staging_rxon.flags &=
2793 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2794
2795 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2796 if (priv->assoc_capability &
2797 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2798 priv->staging_rxon.flags |=
2799 RXON_FLG_SHORT_SLOT_MSK;
2800 else
2801 priv->staging_rxon.flags &=
2802 ~RXON_FLG_SHORT_SLOT_MSK;
2803
Johannes Berg05c914f2008-09-11 00:01:58 +02002804 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002805 priv->staging_rxon.flags &=
2806 ~RXON_FLG_SHORT_SLOT_MSK;
2807 }
2808 /* restore RXON assoc */
2809 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002810 iwlcore_commit_rxon(priv);
Daniel C Halperinf513dff2009-11-13 11:56:34 -08002811 iwl_reset_qos(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002812 spin_lock_irqsave(&priv->lock, flags);
2813 iwl_activate_qos(priv, 1);
2814 spin_unlock_irqrestore(&priv->lock, flags);
Reinette Chatre9a9ca652009-10-30 14:36:12 -07002815 iwl_add_bcast_station(priv);
Zhu Yie1493de2007-09-27 11:27:32 +08002816 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002817 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002818
2819 /* FIXME - we need to add code here to detect a totally new
2820 * configuration, reset the AP, unassoc, rxon timing, assoc,
2821 * clear sta table, add BCAST sta... */
2822}
2823
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002824static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01002825 struct ieee80211_vif *vif,
2826 struct ieee80211_key_conf *keyconf,
2827 struct ieee80211_sta *sta,
2828 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002829{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002830
Tomas Winkler9f586712008-11-12 13:14:05 -08002831 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002832 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002833
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01002834 iwl_update_tkip_key(priv, keyconf,
2835 sta ? sta->addr : iwl_bcast_addr,
2836 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002837
Tomas Winklere1623442009-01-27 14:27:56 -08002838 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002839}
2840
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002841static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002842 struct ieee80211_vif *vif,
2843 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002844 struct ieee80211_key_conf *key)
2845{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002846 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002847 const u8 *addr;
2848 int ret;
2849 u8 sta_id;
2850 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002851
Tomas Winklere1623442009-01-27 14:27:56 -08002852 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002853
Tomas Winkler90e8e422009-06-19 13:52:42 -07002854 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002855 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002856 return -EOPNOTSUPP;
2857 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002858 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winklerc587de02009-06-03 11:44:07 -07002859 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002860 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002861 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002862 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002863 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002864
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002865 }
Zhu Yib481de92007-09-25 17:54:57 -07002866
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002867 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002868 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002869
2870 /* If we are getting WEP group key and we didn't receive any key mapping
2871 * so far, we are in legacy wep mode (group key only), otherwise we are
2872 * in 1X mode.
2873 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002874 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002875 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002876 if (cmd == SET_KEY)
2877 is_default_wep_key = !priv->key_mapping_key;
2878 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002879 is_default_wep_key =
2880 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002881 }
mabbas052c4b92007-10-25 17:15:43 +08002882
Zhu Yib481de92007-09-25 17:54:57 -07002883 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002884 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002885 if (is_default_wep_key)
2886 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002887 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002888 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002889
Tomas Winklere1623442009-01-27 14:27:56 -08002890 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002891 break;
2892 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002893 if (is_default_wep_key)
2894 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002895 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002896 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002897
Tomas Winklere1623442009-01-27 14:27:56 -08002898 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002899 break;
2900 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002901 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002902 }
2903
Johannes Berg72e15d72010-02-19 11:42:32 -08002904 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002905 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002906
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002907 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002908}
2909
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002910static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01002911 struct ieee80211_vif *vif,
Tomas Winklerd783b062008-07-18 13:53:02 +08002912 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002913 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002914{
2915 struct iwl_priv *priv = hw->priv;
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002916 int ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002917
Tomas Winklere1623442009-01-27 14:27:56 -08002918 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002919 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002920
2921 if (!(priv->cfg->sku & IWL_SKU_N))
2922 return -EACCES;
2923
2924 switch (action) {
2925 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002926 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002927 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002928 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002929 IWL_DEBUG_HT(priv, "stop Rx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002930 ret = iwl_sta_rx_agg_stop(priv, sta->addr, tid);
2931 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2932 return 0;
2933 else
2934 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002935 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002936 IWL_DEBUG_HT(priv, "start Tx\n");
Reinette Chatreab9bdc32010-02-23 14:02:52 -08002937 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002938 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002939 IWL_DEBUG_HT(priv, "stop Tx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002940 ret = iwl_tx_agg_stop(priv, sta->addr, tid);
2941 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2942 return 0;
2943 else
2944 return ret;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08002945 case IEEE80211_AMPDU_TX_OPERATIONAL:
2946 /* do nothing */
2947 return -EOPNOTSUPP;
Tomas Winklerd783b062008-07-18 13:53:02 +08002948 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002949 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002950 return -EINVAL;
2951 break;
2952 }
2953 return 0;
2954}
Tomas Winkler9f586712008-11-12 13:14:05 -08002955
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002956static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002957 struct ieee80211_low_level_stats *stats)
2958{
Ester Kummerbf403db2008-05-05 10:22:40 +08002959 struct iwl_priv *priv = hw->priv;
2960
2961 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002962 IWL_DEBUG_MAC80211(priv, "enter\n");
2963 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002964
2965 return 0;
2966}
2967
Johannes Berg6ab10ff2009-11-13 11:56:37 -08002968static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
2969 struct ieee80211_vif *vif,
2970 enum sta_notify_cmd cmd,
2971 struct ieee80211_sta *sta)
2972{
2973 struct iwl_priv *priv = hw->priv;
2974 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
2975 int sta_id;
2976
2977 /*
2978 * TODO: We really should use this callback to
2979 * actually maintain the station table in
2980 * the device.
2981 */
2982
2983 switch (cmd) {
2984 case STA_NOTIFY_ADD:
2985 atomic_set(&sta_priv->pending_frames, 0);
2986 if (vif->type == NL80211_IFTYPE_AP)
2987 sta_priv->client = true;
2988 break;
2989 case STA_NOTIFY_SLEEP:
2990 WARN_ON(!sta_priv->client);
2991 sta_priv->asleep = true;
2992 if (atomic_read(&sta_priv->pending_frames) > 0)
2993 ieee80211_sta_block_awake(hw, sta, true);
2994 break;
2995 case STA_NOTIFY_AWAKE:
2996 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08002997 if (!sta_priv->asleep)
2998 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08002999 sta_priv->asleep = false;
3000 sta_id = iwl_find_station(priv, sta->addr);
3001 if (sta_id != IWL_INVALID_STATION)
3002 iwl_sta_modify_ps_wake(priv, sta_id);
3003 break;
3004 default:
3005 break;
3006 }
3007}
3008
Zhu Yib481de92007-09-25 17:54:57 -07003009/*****************************************************************************
3010 *
3011 * sysfs attributes
3012 *
3013 *****************************************************************************/
3014
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003015#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003016
3017/*
3018 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08003019 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07003020 * used for controlling the debug level.
3021 *
3022 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003023 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003024 * The debug_level being managed using sysfs below is a per device debug
3025 * level that is used instead of the global debug level if it (the per
3026 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003027 */
Ester Kummer8cf769c2008-05-06 11:05:11 +08003028static ssize_t show_debug_level(struct device *d,
3029 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003030{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003031 struct iwl_priv *priv = dev_get_drvdata(d);
3032 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003033}
Ester Kummer8cf769c2008-05-06 11:05:11 +08003034static ssize_t store_debug_level(struct device *d,
3035 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003036 const char *buf, size_t count)
3037{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003038 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08003039 unsigned long val;
3040 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003041
Tomas Winkler9257746f2008-09-03 11:26:32 +08003042 ret = strict_strtoul(buf, 0, &val);
3043 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003044 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003045 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003046 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003047 if (iwl_alloc_traffic_mem(priv))
3048 IWL_ERR(priv,
3049 "Not enough memory to generate traffic log\n");
3050 }
Zhu Yib481de92007-09-25 17:54:57 -07003051 return strnlen(buf, count);
3052}
3053
Ester Kummer8cf769c2008-05-06 11:05:11 +08003054static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3055 show_debug_level, store_debug_level);
3056
Zhu Yib481de92007-09-25 17:54:57 -07003057
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003058#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003059
Zhu Yib481de92007-09-25 17:54:57 -07003060
3061static ssize_t show_temperature(struct device *d,
3062 struct device_attribute *attr, char *buf)
3063{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003064 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003065
Tomas Winklerfee12472008-04-03 16:05:21 -07003066 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003067 return -EAGAIN;
3068
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08003069 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07003070}
3071
3072static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3073
Zhu Yib481de92007-09-25 17:54:57 -07003074static ssize_t show_tx_power(struct device *d,
3075 struct device_attribute *attr, char *buf)
3076{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003077 struct iwl_priv *priv = dev_get_drvdata(d);
Jay Sternberg91f39e82008-12-17 16:52:34 +08003078
3079 if (!iwl_is_ready_rf(priv))
3080 return sprintf(buf, "off\n");
3081 else
3082 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003083}
3084
3085static ssize_t store_tx_power(struct device *d,
3086 struct device_attribute *attr,
3087 const char *buf, size_t count)
3088{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003089 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08003090 unsigned long val;
3091 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003092
Tomas Winkler9257746f2008-09-03 11:26:32 +08003093 ret = strict_strtoul(buf, 10, &val);
3094 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003095 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Wey-Yi Guy5eadd942009-08-21 13:34:17 -07003096 else {
3097 ret = iwl_set_tx_power(priv, val, false);
3098 if (ret)
3099 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
3100 ret);
3101 else
3102 ret = count;
3103 }
3104 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003105}
3106
3107static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3108
Zhu Yib481de92007-09-25 17:54:57 -07003109static ssize_t show_statistics(struct device *d,
3110 struct device_attribute *attr, char *buf)
3111{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003112 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003113 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003114 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003115 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003116 int rc = 0;
3117
Tomas Winklerfee12472008-04-03 16:05:21 -07003118 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003119 return -EAGAIN;
3120
3121 mutex_lock(&priv->mutex);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08003122 rc = iwl_send_statistics_request(priv, CMD_SYNC, false);
Zhu Yib481de92007-09-25 17:54:57 -07003123 mutex_unlock(&priv->mutex);
3124
3125 if (rc) {
3126 len = sprintf(buf,
3127 "Error sending statistics request: 0x%08X\n", rc);
3128 return len;
3129 }
3130
3131 while (size && (PAGE_SIZE - len)) {
3132 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3133 PAGE_SIZE - len, 1);
3134 len = strlen(buf);
3135 if (PAGE_SIZE - len)
3136 buf[len++] = '\n';
3137
3138 ofs += 16;
3139 size -= min(size, 16U);
3140 }
3141
3142 return len;
3143}
3144
3145static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3146
Wey-Yi Guy01abfbb2009-09-17 10:43:45 -07003147static ssize_t show_rts_ht_protection(struct device *d,
3148 struct device_attribute *attr, char *buf)
3149{
3150 struct iwl_priv *priv = dev_get_drvdata(d);
3151
3152 return sprintf(buf, "%s\n",
3153 priv->cfg->use_rts_for_ht ? "RTS/CTS" : "CTS-to-self");
3154}
3155
3156static ssize_t store_rts_ht_protection(struct device *d,
3157 struct device_attribute *attr,
3158 const char *buf, size_t count)
3159{
3160 struct iwl_priv *priv = dev_get_drvdata(d);
3161 unsigned long val;
3162 int ret;
3163
3164 ret = strict_strtoul(buf, 10, &val);
3165 if (ret)
3166 IWL_INFO(priv, "Input is not in decimal form.\n");
3167 else {
3168 if (!iwl_is_associated(priv))
3169 priv->cfg->use_rts_for_ht = val ? true : false;
3170 else
3171 IWL_ERR(priv, "Sta associated with AP - "
3172 "Change protection mechanism is not allowed\n");
3173 ret = count;
3174 }
3175 return ret;
3176}
3177
3178static DEVICE_ATTR(rts_ht_protection, S_IWUSR | S_IRUGO,
3179 show_rts_ht_protection, store_rts_ht_protection);
3180
Zhu Yib481de92007-09-25 17:54:57 -07003181
Zhu Yib481de92007-09-25 17:54:57 -07003182/*****************************************************************************
3183 *
3184 * driver setup and teardown
3185 *
3186 *****************************************************************************/
3187
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003188static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003189{
Reinette Chatred21050c2009-02-13 11:51:18 -08003190 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003191
3192 init_waitqueue_head(&priv->wait_command_queue);
3193
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003194 INIT_WORK(&priv->restart, iwl_bg_restart);
3195 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003196 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003197 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003198 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3199 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003200
Tomas Winkler2a421b92008-06-12 09:47:10 +08003201 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003202
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003203 if (priv->cfg->ops->lib->setup_deferred_work)
3204 priv->cfg->ops->lib->setup_deferred_work(priv);
3205
3206 init_timer(&priv->statistics_periodic);
3207 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003208 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003209
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08003210 init_timer(&priv->ucode_trace);
3211 priv->ucode_trace.data = (unsigned long)priv;
3212 priv->ucode_trace.function = iwl_bg_ucode_trace;
3213
Mohamed Abbasef850d72009-05-22 11:01:50 -07003214 if (!priv->cfg->use_isr_legacy)
3215 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3216 iwl_irq_tasklet, (unsigned long)priv);
3217 else
3218 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3219 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003220}
3221
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003222static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003223{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003224 if (priv->cfg->ops->lib->cancel_deferred_work)
3225 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003226
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003227 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003228 cancel_delayed_work(&priv->scan_check);
3229 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003230 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003231 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08003232 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07003233}
3234
Reinette Chatre89f186a2009-10-30 14:36:11 -07003235static void iwl_init_hw_rates(struct iwl_priv *priv,
3236 struct ieee80211_rate *rates)
3237{
3238 int i;
3239
3240 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
3241 rates[i].bitrate = iwl_rates[i].ieee * 5;
3242 rates[i].hw_value = i; /* Rate scaling will work on indexes */
3243 rates[i].hw_value_short = i;
3244 rates[i].flags = 0;
3245 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
3246 /*
3247 * If CCK != 1M then set short preamble rate flag.
3248 */
3249 rates[i].flags |=
3250 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
3251 0 : IEEE80211_RATE_SHORT_PREAMBLE;
3252 }
3253 }
3254}
3255
3256static int iwl_init_drv(struct iwl_priv *priv)
3257{
3258 int ret;
3259
3260 priv->ibss_beacon = NULL;
3261
Reinette Chatre89f186a2009-10-30 14:36:11 -07003262 spin_lock_init(&priv->sta_lock);
3263 spin_lock_init(&priv->hcmd_lock);
3264
3265 INIT_LIST_HEAD(&priv->free_frames);
3266
3267 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08003268 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07003269
Reinette Chatre89f186a2009-10-30 14:36:11 -07003270 priv->ieee_channels = NULL;
3271 priv->ieee_rates = NULL;
3272 priv->band = IEEE80211_BAND_2GHZ;
3273
3274 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08003275 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08003276 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Reinette Chatre89f186a2009-10-30 14:36:11 -07003277
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08003278 /* initialize force reset */
3279 priv->force_reset[IWL_RF_RESET].reset_duration =
3280 IWL_DELAY_NEXT_FORCE_RF_RESET;
3281 priv->force_reset[IWL_FW_RESET].reset_duration =
3282 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07003283
3284 /* Choose which receivers/antennas to use */
3285 if (priv->cfg->ops->hcmd->set_rxon_chain)
3286 priv->cfg->ops->hcmd->set_rxon_chain(priv);
3287
3288 iwl_init_scan_params(priv);
3289
3290 iwl_reset_qos(priv);
3291
3292 priv->qos_data.qos_active = 0;
3293 priv->qos_data.qos_cap.val = 0;
3294
Reinette Chatre89f186a2009-10-30 14:36:11 -07003295 /* Set the tx_power_user_lmt to the lowest power level
3296 * this value will get overwritten by channel max power avg
3297 * from eeprom */
3298 priv->tx_power_user_lmt = IWL_TX_POWER_TARGET_POWER_MIN;
3299
3300 ret = iwl_init_channel_map(priv);
3301 if (ret) {
3302 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3303 goto err;
3304 }
3305
3306 ret = iwlcore_init_geos(priv);
3307 if (ret) {
3308 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3309 goto err_free_channel_map;
3310 }
3311 iwl_init_hw_rates(priv, priv->ieee_rates);
3312
3313 return 0;
3314
3315err_free_channel_map:
3316 iwl_free_channel_map(priv);
3317err:
3318 return ret;
3319}
3320
3321static void iwl_uninit_drv(struct iwl_priv *priv)
3322{
3323 iwl_calib_free_results(priv);
3324 iwlcore_free_geos(priv);
3325 iwl_free_channel_map(priv);
3326 kfree(priv->scan);
3327}
3328
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003329static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003330 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003331 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003332 &dev_attr_tx_power.attr,
Wey-Yi Guy01abfbb2009-09-17 10:43:45 -07003333 &dev_attr_rts_ht_protection.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003334#ifdef CONFIG_IWLWIFI_DEBUG
3335 &dev_attr_debug_level.attr,
3336#endif
Zhu Yib481de92007-09-25 17:54:57 -07003337 NULL
3338};
3339
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003340static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003341 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003342 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003343};
3344
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003345static struct ieee80211_ops iwl_hw_ops = {
3346 .tx = iwl_mac_tx,
3347 .start = iwl_mac_start,
3348 .stop = iwl_mac_stop,
3349 .add_interface = iwl_mac_add_interface,
3350 .remove_interface = iwl_mac_remove_interface,
3351 .config = iwl_mac_config,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003352 .configure_filter = iwl_configure_filter,
3353 .set_key = iwl_mac_set_key,
3354 .update_tkip_key = iwl_mac_update_tkip_key,
3355 .get_stats = iwl_mac_get_stats,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003356 .conf_tx = iwl_mac_conf_tx,
3357 .reset_tsf = iwl_mac_reset_tsf,
3358 .bss_info_changed = iwl_bss_info_changed,
3359 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003360 .hw_scan = iwl_mac_hw_scan,
3361 .sta_notify = iwl_mac_sta_notify,
Zhu Yib481de92007-09-25 17:54:57 -07003362};
3363
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003364static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003365{
3366 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003367 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003368 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003369 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003370 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003371 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003372
Assaf Krauss316c30d2008-03-14 10:38:46 -07003373 /************************
3374 * 1. Allocating HW data
3375 ************************/
3376
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003377 /* Disabling hardware scan means that mac80211 will perform scans
3378 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003379 if (cfg->mod_params->disable_hw_scan) {
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003380 if (iwl_debug_level & IWL_DL_INFO)
Ester Kummerbf403db2008-05-05 10:22:40 +08003381 dev_printk(KERN_DEBUG, &(pdev->dev),
3382 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003383 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003384 }
3385
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003386 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003387 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003388 err = -ENOMEM;
3389 goto out;
3390 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003391 priv = hw->priv;
3392 /* At this point both hw and priv are allocated. */
3393
Zhu Yib481de92007-09-25 17:54:57 -07003394 SET_IEEE80211_DEV(hw, &pdev->dev);
3395
Tomas Winklere1623442009-01-27 14:27:56 -08003396 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003397 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003398 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003399 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003400
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003401#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003402 atomic_set(&priv->restrict_refcnt, 0);
3403#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003404 if (iwl_alloc_traffic_mem(priv))
3405 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003406
Assaf Krauss316c30d2008-03-14 10:38:46 -07003407 /**************************
3408 * 2. Initializing PCI bus
3409 **************************/
3410 if (pci_enable_device(pdev)) {
3411 err = -ENODEV;
3412 goto out_ieee80211_free_hw;
3413 }
3414
3415 pci_set_master(pdev);
3416
Winkler, Tomas093d8742008-09-26 15:09:34 +08003417 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003418 if (!err)
Winkler, Tomas093d8742008-09-26 15:09:34 +08003419 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003420 if (err) {
Winkler, Tomas093d8742008-09-26 15:09:34 +08003421 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003422 if (!err)
Winkler, Tomas093d8742008-09-26 15:09:34 +08003423 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003424 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003425 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003426 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003427 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003428 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003429 }
3430
3431 err = pci_request_regions(pdev, DRV_NAME);
3432 if (err)
3433 goto out_pci_disable_device;
3434
3435 pci_set_drvdata(pdev, priv);
3436
Assaf Krauss316c30d2008-03-14 10:38:46 -07003437
3438 /***********************
3439 * 3. Read REV register
3440 ***********************/
3441 priv->hw_base = pci_iomap(pdev, 0, 0);
3442 if (!priv->hw_base) {
3443 err = -ENODEV;
3444 goto out_pci_release_regions;
3445 }
3446
Tomas Winklere1623442009-01-27 14:27:56 -08003447 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003448 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003449 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003450
Reinette Chatre731a29b2009-12-14 14:12:11 -08003451 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003452 * we should init now
3453 */
3454 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08003455 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08003456
3457 /*
3458 * stop and reset the on-board processor just in case it is in a
3459 * strange state ... like being left stranded by a primary kernel
3460 * and this is now the kdump kernel trying to start up
3461 */
3462 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
3463
Tomas Winklerb661c812008-04-23 17:14:54 -07003464 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003465 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003466 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003467
Tomas Winklere7b63582008-09-03 11:26:49 +08003468 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3469 * PCI Tx retries from interfering with C3 CPU state */
3470 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3471
Mohamed Abbas086ed112009-05-22 11:01:54 -07003472 iwl_prepare_card_hw(priv);
3473 if (!priv->hw_ready) {
3474 IWL_WARN(priv, "Failed, HW not ready\n");
3475 goto out_iounmap;
3476 }
3477
Assaf Krauss316c30d2008-03-14 10:38:46 -07003478 /*****************
3479 * 4. Read EEPROM
3480 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003481 /* Read the EEPROM */
3482 err = iwl_eeprom_init(priv);
3483 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003484 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003485 goto out_iounmap;
3486 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003487 err = iwl_eeprom_check_version(priv);
3488 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08003489 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07003490
Ron Rindjunsky02883012008-05-15 13:53:53 +08003491 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003492 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003493 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003494 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3495
3496 /************************
3497 * 5. Setup HW constants
3498 ************************/
Ron Rindjunskyda154e32008-06-30 17:23:20 +08003499 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003500 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003501 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003502 }
3503
3504 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003505 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003506 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003507
Tomas Winkler6ba87952008-05-15 13:54:17 +08003508 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003509 if (err)
Ron Rindjunsky399f49002008-04-23 17:14:56 -07003510 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003511 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003512
Assaf Krauss316c30d2008-03-14 10:38:46 -07003513 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07003514 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07003515 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003516 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003517 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003518 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003519
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003520 pci_enable_msi(priv->pci_dev);
3521
Mohamed Abbasef850d72009-05-22 11:01:50 -07003522 iwl_alloc_isr_ict(priv);
3523 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
3524 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003525 if (err) {
3526 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3527 goto out_disable_msi;
3528 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003529 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003530 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003531 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003532 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003533 }
3534
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003535 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003536 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003537
Johannes Berg158bea02010-01-22 14:22:53 -08003538 /*********************************************
3539 * 8. Enable interrupts and read RFKILL state
3540 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08003541
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003542 /* enable interrupts if needed: hw bug w/a */
3543 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3544 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3545 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3546 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3547 }
3548
3549 iwl_enable_interrupts(priv);
3550
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003551 /* If platform's RF_KILL switch is NOT set to KILL */
3552 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3553 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3554 else
3555 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003556
Johannes Berga60e77e2009-06-04 18:26:06 +02003557 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
3558 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003559
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003560 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -07003561 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08003562
Johannes Bergb08dfd02010-01-29 11:54:56 -08003563 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08003564 if (err)
3565 goto out_remove_sysfs;
3566
Zhu Yib481de92007-09-25 17:54:57 -07003567 return 0;
3568
Assaf Krauss316c30d2008-03-14 10:38:46 -07003569 out_remove_sysfs:
Reinette Chatrec8f16132009-02-27 16:21:22 -08003570 destroy_workqueue(priv->workqueue);
3571 priv->workqueue = NULL;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003572 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003573 out_free_irq:
3574 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07003575 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003576 out_disable_msi:
3577 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003578 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003579 out_free_eeprom:
3580 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003581 out_iounmap:
3582 pci_iounmap(pdev, priv->hw_base);
3583 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07003584 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08003585 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003586 out_pci_disable_device:
3587 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003588 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003589 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07003590 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003591 out:
3592 return err;
3593}
3594
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003595static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003596{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003597 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003598 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003599
3600 if (!priv)
3601 return;
3602
Tomas Winklere1623442009-01-27 14:27:56 -08003603 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003604
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003605 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003606 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003607
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003608 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3609 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003610 * we need to set STATUS_EXIT_PENDING bit.
3611 */
3612 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003613 if (priv->mac80211_registered) {
3614 ieee80211_unregister_hw(priv->hw);
3615 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003616 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003617 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003618 }
3619
Ben Cahillc166b252009-10-23 13:42:35 -07003620 /*
3621 * Make sure device is reset to low power before unloading driver.
3622 * This may be redundant with iwl_down(), but there are paths to
3623 * run iwl_down() without calling apm_ops.stop(), and there are
3624 * paths to avoid running iwl_down() at all before leaving driver.
3625 * This (inexpensive) call *makes sure* device is reset.
3626 */
3627 priv->cfg->ops->lib->apm_ops.stop(priv);
3628
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -07003629 iwl_tt_exit(priv);
3630
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003631 /* make sure we flush any pending irq or
3632 * tasklet for the driver
3633 */
3634 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003635 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003636 spin_unlock_irqrestore(&priv->lock, flags);
3637
3638 iwl_synchronize_irq(priv);
3639
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003640 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003641
3642 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003643 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003644 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003645
Tomas Winkler073d3f52008-04-21 15:41:52 -07003646 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003647
Zhu Yib481de92007-09-25 17:54:57 -07003648
Mohamed Abbas948c1712007-10-25 17:15:45 +08003649 /*netif_stop_queue(dev); */
3650 flush_workqueue(priv->workqueue);
3651
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003652 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003653 * priv->workqueue... so we can't take down the workqueue
3654 * until now... */
3655 destroy_workqueue(priv->workqueue);
3656 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003657 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003658
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003659 free_irq(priv->pci_dev->irq, priv);
3660 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003661 pci_iounmap(pdev, priv->hw_base);
3662 pci_release_regions(pdev);
3663 pci_disable_device(pdev);
3664 pci_set_drvdata(pdev, NULL);
3665
Tomas Winkler6ba87952008-05-15 13:54:17 +08003666 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003667
Mohamed Abbasef850d72009-05-22 11:01:50 -07003668 iwl_free_isr_ict(priv);
3669
Zhu Yib481de92007-09-25 17:54:57 -07003670 if (priv->ibss_beacon)
3671 dev_kfree_skb(priv->ibss_beacon);
3672
3673 ieee80211_free_hw(priv->hw);
3674}
3675
Zhu Yib481de92007-09-25 17:54:57 -07003676
3677/*****************************************************************************
3678 *
3679 * driver and module entry point
3680 *
3681 *****************************************************************************/
3682
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003683/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00003684static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003685#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003686 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3687 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003688#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003689#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08003690/* 5100 Series WiFi */
3691 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
3692 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
3693 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
3694 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
3695 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
3696 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
3697 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
3698 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
3699 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
3700 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
3701 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
3702 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
3703 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
3704 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
3705 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
3706 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
3707 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
3708 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
3709 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
3710 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
3711 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
3712 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
3713 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
3714 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
3715
3716/* 5300 Series WiFi */
3717 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
3718 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
3719 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
3720 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
3721 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
3722 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
3723 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
3724 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
3725 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
3726 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
3727 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
3728 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
3729
3730/* 5350 Series WiFi/WiMax */
3731 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
3732 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
3733 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
3734
3735/* 5150 Series Wifi/WiMax */
3736 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
3737 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
3738 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
3739 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
3740 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
3741 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
3742
3743 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
3744 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
3745 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
3746 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003747
3748/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003749 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
3750 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
3751 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
3752 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
3753 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
3754 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
3755 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
3756 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
3757 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
3758 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
3759
3760/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003761 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
3762 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
3763 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
3764 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003765 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
3766 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
3767
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08003768/* 1000 Series WiFi */
Wey-Yi Guy4bd09142009-09-17 10:43:52 -07003769 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
3770 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
3771 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
3772 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
3773 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
3774 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
3775 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
3776 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
3777 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
3778 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
3779 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
3780 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003781#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003782
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003783 {0}
3784};
3785MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3786
3787static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003788 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003789 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003790 .probe = iwl_pci_probe,
3791 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003792#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003793 .suspend = iwl_pci_suspend,
3794 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003795#endif
3796};
3797
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003798static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003799{
3800
3801 int ret;
3802 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3803 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003804
Tomas Winklere227cea2008-07-18 13:53:05 +08003805 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003806 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003807 printk(KERN_ERR DRV_NAME
3808 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003809 return ret;
3810 }
3811
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003812 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003813 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003814 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003815 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003816 }
Zhu Yib481de92007-09-25 17:54:57 -07003817
3818 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003819
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003820error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003821 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003822 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003823}
3824
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003825static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003826{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003827 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003828 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003829}
3830
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003831module_exit(iwl_exit);
3832module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003833
3834#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07003835module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003836MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07003837module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003838MODULE_PARM_DESC(debug, "debug output mask");
3839#endif
3840