blob: 954b8ae2c880cb2a1eb9e7764e48a9de2b46b958 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 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"
Zhu Yib481de92007-09-25 17:54:57 -070057
Christoph Hellwig416e1432007-10-25 17:15:49 +080058
Zhu Yib481de92007-09-25 17:54:57 -070059/******************************************************************************
60 *
61 * module boiler plate
62 *
63 ******************************************************************************/
64
Zhu Yib481de92007-09-25 17:54:57 -070065/*
66 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070067 */
Tomas Winklerd783b062008-07-18 13:53:02 +080068#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070069
Tomas Winkler0a6857e2008-03-12 16:58:49 -070070#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070071#define VD "d"
72#else
73#define VD
74#endif
75
Reinette Chatre80bc5392009-02-13 11:51:19 -080076#ifdef CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070077#define VS "s"
78#else
79#define VS
80#endif
81
Tomas Winklerdf48c322008-03-06 10:40:19 -080082#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030089MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070090
Zhu Yib481de92007-09-25 17:54:57 -070091/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080092 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -070093 * the functionality provided here
94 */
95
96/**************************************************************/
97
Zhu Yib481de92007-09-25 17:54:57 -070098/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -070099 * iwl_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700100 *
Ian Schram01ebd062007-10-25 17:15:22 +0800101 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700102 * the active_rxon structure is updated with the new data. This
103 * function correctly transitions out of the RXON_ASSOC_MSK state if
104 * a HW tune is required based on the RXON structure changes.
105 */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700106int iwl_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700107{
108 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800109 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800110 int ret;
111 bool new_assoc =
112 !!(priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700113
Tomas Winklerfee12472008-04-03 16:05:21 -0700114 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800115 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700116
117 /* always get timestamp with Rx frame */
118 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
119
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800120 ret = iwl_check_rxon_cmd(priv);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800121 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800122 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700123 return -EINVAL;
124 }
125
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800126 /*
127 * receive commit_rxon request
128 * abort any previous channel switch if still in process
129 */
130 if (priv->switch_rxon.switch_in_progress &&
131 (priv->switch_rxon.channel != priv->staging_rxon.channel)) {
132 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
133 le16_to_cpu(priv->switch_rxon.channel));
134 priv->switch_rxon.switch_in_progress = false;
135 }
136
Zhu Yib481de92007-09-25 17:54:57 -0700137 /* If we don't need to send a full RXON, we can use
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700138 * iwl_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700139 * and other flags for the current radio configuration. */
Mohamed Abbas54559702008-09-03 11:18:44 +0800140 if (!iwl_full_rxon_required(priv)) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800141 ret = iwl_send_rxon_assoc(priv);
142 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800143 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800144 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700145 }
146
147 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Wey-Yi Guya6435652009-11-06 14:52:46 -0800148 iwl_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700149 return 0;
150 }
151
152 /* station table will be cleared */
153 priv->assoc_station_added = 0;
154
Zhu Yib481de92007-09-25 17:54:57 -0700155 /* If we are currently associated and the new config requires
156 * an RXON_ASSOC and the new config wants the associated mask enabled,
157 * we must clear the associated from the active configuration
158 * before we apply the new config */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800159 if (iwl_is_associated(priv) && new_assoc) {
Tomas Winklere1623442009-01-27 14:27:56 -0800160 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700161 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
162
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800163 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800164 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700165 &priv->active_rxon);
166
167 /* If the mask clearing failed then we set
168 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800169 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700170 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800171 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800172 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700173 }
Zhu Yib481de92007-09-25 17:54:57 -0700174 }
175
Tomas Winklere1623442009-01-27 14:27:56 -0800176 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700177 "* with%s RXON_FILTER_ASSOC_MSK\n"
178 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700179 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800180 (new_assoc ? "" : "out"),
Zhu Yib481de92007-09-25 17:54:57 -0700181 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700182 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700183
Tomas Winkler90e8e422009-06-19 13:52:42 -0700184 iwl_set_rxon_hwcrypto(priv, !priv->cfg->mod_params->sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800185
186 /* Apply the new configuration
187 * RXON unassoc clears the station table in uCode, send it before
188 * we add the bcast station. If assoc bit is set, we will send RXON
189 * after having added the bcast and bssid station.
190 */
191 if (!new_assoc) {
192 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800193 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800194 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800195 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800196 return ret;
197 }
198 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700199 }
200
Tomas Winklerc587de02009-06-03 11:44:07 -0700201 iwl_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800202
Johannes Berg19cc1082009-05-08 13:44:36 -0700203 priv->start_calib = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700204
Zhu Yib481de92007-09-25 17:54:57 -0700205 /* Add the broadcast address so we can send broadcast frames */
Reinette Chatre9a9ca652009-10-30 14:36:12 -0700206 iwl_add_bcast_station(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700207
208 /* If we have set the ASSOC_MSK and we are in BSS mode then
209 * add the IWL_AP_ID to the station rate table */
Tomas Winkler91851592008-06-30 17:23:14 +0800210 if (new_assoc) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200211 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler91851592008-06-30 17:23:14 +0800212 ret = iwl_rxon_add_station(priv,
213 priv->active_rxon.bssid_addr, 1);
214 if (ret == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800215 IWL_ERR(priv,
216 "Error adding AP address for TX.\n");
Tomas Winkler91851592008-06-30 17:23:14 +0800217 return -EIO;
218 }
219 priv->assoc_station_added = 1;
220 if (priv->default_wep_key &&
221 iwl_send_static_wepkey_cmd(priv, 0))
Winkler, Tomas15b16872008-12-19 10:37:33 +0800222 IWL_ERR(priv,
223 "Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700224 }
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800225
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700226 /*
227 * allow CTS-to-self if possible for new association.
228 * this is relevant only for 5000 series and up,
229 * but will not damage 4965
230 */
231 priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
232
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800233 /* Apply the new configuration
234 * RXON assoc doesn't clear the station table in uCode,
235 */
236 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
237 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
238 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800239 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800240 return ret;
241 }
242 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700243 }
Wey-Yi Guya6435652009-11-06 14:52:46 -0800244 iwl_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700245
Zhu Yi36da7d72008-07-11 11:53:40 +0800246 iwl_init_sensitivity(priv);
247
248 /* If we issue a new RXON command which required a tune then we must
249 * send a new TXPOWER command or we won't be able to Tx any frames */
250 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
251 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800252 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800253 return ret;
254 }
255
Zhu Yib481de92007-09-25 17:54:57 -0700256 return 0;
257}
258
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700259void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700260{
261
Abhijeet Kolekar45823532009-04-08 11:26:44 -0700262 if (priv->cfg->ops->hcmd->set_rxon_chain)
263 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700264 iwlcore_commit_rxon(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700265}
266
Tomas Winklerfcab4232008-05-15 13:54:01 +0800267static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700268{
269 struct list_head *element;
270
Tomas Winklere1623442009-01-27 14:27:56 -0800271 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700272 priv->frames_count);
273
274 while (!list_empty(&priv->free_frames)) {
275 element = priv->free_frames.next;
276 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800277 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700278 priv->frames_count--;
279 }
280
281 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800282 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700283 priv->frames_count);
284 priv->frames_count = 0;
285 }
286}
287
Tomas Winklerfcab4232008-05-15 13:54:01 +0800288static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700289{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800290 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700291 struct list_head *element;
292 if (list_empty(&priv->free_frames)) {
293 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
294 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800295 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700296 return NULL;
297 }
298
299 priv->frames_count++;
300 return frame;
301 }
302
303 element = priv->free_frames.next;
304 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800305 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700306}
307
Tomas Winklerfcab4232008-05-15 13:54:01 +0800308static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700309{
310 memset(frame, 0, sizeof(*frame));
311 list_add(&frame->list, &priv->free_frames);
312}
313
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800314static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800315 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200316 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700317{
Tomas Winkler3109ece2008-03-28 16:33:35 -0700318 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200319 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
320 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700321 return 0;
322
323 if (priv->ibss_beacon->len > left)
324 return 0;
325
326 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
327
328 return priv->ibss_beacon->len;
329}
330
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800331/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
332static void iwl_set_beacon_tim(struct iwl_priv *priv,
333 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
334 u8 *beacon, u32 frame_size)
335{
336 u16 tim_idx;
337 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
338
339 /*
340 * The index is relative to frame start but we start looking at the
341 * variable-length part of the beacon.
342 */
343 tim_idx = mgmt->u.beacon.variable - beacon;
344
345 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
346 while ((tim_idx < (frame_size - 2)) &&
347 (beacon[tim_idx] != WLAN_EID_TIM))
348 tim_idx += beacon[tim_idx+1] + 2;
349
350 /* If TIM field was found, set variables */
351 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
352 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
353 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
354 } else
355 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
356}
357
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700358static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800359 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800360{
361 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800362 u32 frame_size;
363 u32 rate_flags;
364 u32 rate;
365 /*
366 * We have to set up the TX command, the TX Beacon command, and the
367 * beacon contents.
368 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800369
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800370 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800371 tx_beacon_cmd = &frame->u.beacon;
372 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
373
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800374 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800375 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800376 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800377 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
378 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800379
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800380 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800381 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800382 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
383 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800384 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800385 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
386
387 /* Set up TX beacon command fields */
388 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
389 frame_size);
390
391 /* Set up packet rate and flags */
392 rate = iwl_rate_get_lowest_plcp(priv);
393 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant);
394 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
395 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
396 rate_flags |= RATE_MCS_CCK_MSK;
397 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
398 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800399
400 return sizeof(*tx_beacon_cmd) + frame_size;
401}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700402static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700403{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800404 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700405 unsigned int frame_size;
406 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700407
Tomas Winklerfcab4232008-05-15 13:54:01 +0800408 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700409 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800410 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700411 "command.\n");
412 return -ENOMEM;
413 }
414
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800415 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
416 if (!frame_size) {
417 IWL_ERR(priv, "Error configuring the beacon command\n");
418 iwl_free_frame(priv, frame);
419 return -EINVAL;
420 }
Zhu Yib481de92007-09-25 17:54:57 -0700421
Tomas Winkler857485c2008-03-21 13:53:44 -0700422 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700423 &frame->u.cmd[0]);
424
Tomas Winklerfcab4232008-05-15 13:54:01 +0800425 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700426
427 return rc;
428}
429
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800430static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
431{
432 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
433
434 dma_addr_t addr = get_unaligned_le32(&tb->lo);
435 if (sizeof(dma_addr_t) > sizeof(u32))
436 addr |=
437 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
438
439 return addr;
440}
441
442static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
443{
444 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
445
446 return le16_to_cpu(tb->hi_n_len) >> 4;
447}
448
449static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
450 dma_addr_t addr, u16 len)
451{
452 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
453 u16 hi_n_len = len << 4;
454
455 put_unaligned_le32(addr, &tb->lo);
456 if (sizeof(dma_addr_t) > sizeof(u32))
457 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
458
459 tb->hi_n_len = cpu_to_le16(hi_n_len);
460
461 tfd->num_tbs = idx + 1;
462}
463
464static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
465{
466 return tfd->num_tbs & 0x1f;
467}
468
469/**
470 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
471 * @priv - driver private data
472 * @txq - tx queue
473 *
474 * Does NOT advance any TFD circular buffer read/write indexes
475 * Does NOT free the TFD itself (which is within circular buffer)
476 */
477void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
478{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800479 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800480 struct iwl_tfd *tfd;
481 struct pci_dev *dev = priv->pci_dev;
482 int index = txq->q.read_ptr;
483 int i;
484 int num_tbs;
485
486 tfd = &tfd_tmp[index];
487
488 /* Sanity check on number of chunks */
489 num_tbs = iwl_tfd_get_num_tbs(tfd);
490
491 if (num_tbs >= IWL_NUM_OF_TBS) {
492 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
493 /* @todo issue fatal error, it is quite serious situation */
494 return;
495 }
496
497 /* Unmap tx_cmd */
498 if (num_tbs)
499 pci_unmap_single(dev,
Johannes Bergc2acea82009-07-24 11:13:05 -0700500 pci_unmap_addr(&txq->meta[index], mapping),
501 pci_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800502 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800503
504 /* Unmap chunks, if any. */
505 for (i = 1; i < num_tbs; i++) {
506 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
507 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
508
509 if (txq->txb) {
510 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
511 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
512 }
513 }
514}
515
516int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
517 struct iwl_tx_queue *txq,
518 dma_addr_t addr, u16 len,
519 u8 reset, u8 pad)
520{
521 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800522 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800523 u32 num_tbs;
524
525 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800526 tfd_tmp = (struct iwl_tfd *)txq->tfds;
527 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800528
529 if (reset)
530 memset(tfd, 0, sizeof(*tfd));
531
532 num_tbs = iwl_tfd_get_num_tbs(tfd);
533
534 /* Each TFD can point to a maximum 20 Tx buffers */
535 if (num_tbs >= IWL_NUM_OF_TBS) {
536 IWL_ERR(priv, "Error can not send more than %d chunks\n",
537 IWL_NUM_OF_TBS);
538 return -EINVAL;
539 }
540
541 BUG_ON(addr & ~DMA_BIT_MASK(36));
542 if (unlikely(addr & ~IWL_TX_DMA_MASK))
543 IWL_ERR(priv, "Unaligned address = %llx\n",
544 (unsigned long long)addr);
545
546 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
547
548 return 0;
549}
550
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800551/*
552 * Tell nic where to find circular buffer of Tx Frame Descriptors for
553 * given Tx queue, and enable the DMA channel used for that queue.
554 *
555 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
556 * channels supported in hardware.
557 */
558int iwl_hw_tx_queue_init(struct iwl_priv *priv,
559 struct iwl_tx_queue *txq)
560{
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800561 int txq_id = txq->q.id;
562
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800563 /* Circular buffer (TFD queue in DRAM) physical base address */
564 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
565 txq->q.dma_addr >> 8);
566
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800567 return 0;
568}
569
Zhu Yib481de92007-09-25 17:54:57 -0700570/******************************************************************************
571 *
572 * Generic RX handler implementations
573 *
574 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800575static void iwl_rx_reply_alive(struct iwl_priv *priv,
576 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700577{
Zhu Yi2f301222009-10-09 17:19:45 +0800578 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800579 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700580 struct delayed_work *pwork;
581
582 palive = &pkt->u.alive_frame;
583
Tomas Winklere1623442009-01-27 14:27:56 -0800584 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700585 "0x%01X 0x%01X\n",
586 palive->is_valid, palive->ver_type,
587 palive->ver_subtype);
588
589 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800590 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700591 memcpy(&priv->card_alive_init,
592 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800593 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700594 pwork = &priv->init_alive_start;
595 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800596 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700597 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800598 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700599 pwork = &priv->alive_start;
600 }
601
602 /* We delay the ALIVE response by 5ms to
603 * give the HW RF Kill time to activate... */
604 if (palive->is_valid == UCODE_VALID_OK)
605 queue_delayed_work(priv->workqueue, pwork,
606 msecs_to_jiffies(5));
607 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800608 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700609}
610
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700611static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700612{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700613 struct iwl_priv *priv =
614 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700615 struct sk_buff *beacon;
616
617 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200618 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700619
620 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800621 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700622 return;
623 }
624
625 mutex_lock(&priv->mutex);
626 /* new beacon skb is allocated every time; dispose previous.*/
627 if (priv->ibss_beacon)
628 dev_kfree_skb(priv->ibss_beacon);
629
630 priv->ibss_beacon = beacon;
631 mutex_unlock(&priv->mutex);
632
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700633 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700634}
635
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800636/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700637 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800638 *
639 * This callback is provided in order to send a statistics request.
640 *
641 * This timer function is continually reset to execute within
642 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
643 * was received. We need to ensure we receive the statistics in order
644 * to update the temperature used for calibrating the TXPOWER.
645 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700646static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800647{
648 struct iwl_priv *priv = (struct iwl_priv *)data;
649
650 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
651 return;
652
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700653 /* dont send host command if rf-kill is on */
654 if (!iwl_is_ready_rf(priv))
655 return;
656
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800657 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800658}
659
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700660static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800661 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700662{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700663#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800664 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800665 struct iwl4965_beacon_notif *beacon =
666 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800667 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700668
Tomas Winklere1623442009-01-27 14:27:56 -0800669 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700670 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800671 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700672 beacon->beacon_notify_hdr.failure_frame,
673 le32_to_cpu(beacon->ibss_mgr_status),
674 le32_to_cpu(beacon->high_tsf),
675 le32_to_cpu(beacon->low_tsf), rate);
676#endif
677
Johannes Berg05c914f2008-09-11 00:01:58 +0200678 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700679 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
680 queue_work(priv->workqueue, &priv->beacon_update);
681}
682
Zhu Yib481de92007-09-25 17:54:57 -0700683/* Handle notification from uCode that card's power state is changing
684 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700685static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800686 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700687{
Zhu Yi2f301222009-10-09 17:19:45 +0800688 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700689 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
690 unsigned long status = priv->status;
691
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800692 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700693 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800694 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
695 (flags & CT_CARD_DISABLED) ?
696 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700697
698 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800699 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700700
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700701 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700702 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
703
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700704 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
705 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700706
707 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700708 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700709 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700710 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700711 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700712 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800713 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700714 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700715 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800716 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700717 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700718
719 if (flags & HW_CARD_DISABLED)
720 set_bit(STATUS_RF_KILL_HW, &priv->status);
721 else
722 clear_bit(STATUS_RF_KILL_HW, &priv->status);
723
724
Zhu Yib481de92007-09-25 17:54:57 -0700725 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800726 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700727
728 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200729 test_bit(STATUS_RF_KILL_HW, &priv->status)))
730 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
731 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700732 else
733 wake_up_interruptible(&priv->wait_command_queue);
734}
735
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700736int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800737{
Tomas Winklere2e3c572008-07-18 13:53:04 +0800738 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800739 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800740 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
741 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
742 ~APMG_PS_CTRL_MSK_PWR_SRC);
743 } else {
744 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
745 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
746 ~APMG_PS_CTRL_MSK_PWR_SRC);
747 }
748
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700749 return 0;
Tomas Winklere2e3c572008-07-18 13:53:04 +0800750}
751
Zhu Yib481de92007-09-25 17:54:57 -0700752/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700753 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700754 *
755 * Setup the RX handlers for each of the reply types sent from the uCode
756 * to the host.
757 *
758 * This function chains into the hardware specific files for them to setup
759 * any hardware specific handlers as well.
760 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800761static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700762{
Tomas Winkler885ba202008-05-29 16:34:55 +0800763 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700764 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
765 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700766 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700767 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700768 iwl_rx_pm_debug_statistics_notif;
769 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700770
Ben Cahill9fbab512007-11-29 11:09:47 +0800771 /*
772 * The same handler is used for both the REPLY to a discrete
773 * statistics request from the host as well as for the periodic
774 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700775 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800776 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800777 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800778
Tomas Winkler21c339b2008-11-07 09:58:41 -0800779 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800780 iwl_setup_rx_scan_handlers(priv);
781
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800782 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700783 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700784
Tomas Winklerc1354752008-05-29 16:35:04 +0800785 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
786 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800787 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800788 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
789 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800790 /* block ack */
791 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800792 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700793 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700794}
795
Zhu Yib481de92007-09-25 17:54:57 -0700796/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800797 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700798 *
799 * Uses the priv->rx_handlers callback function array to invoke
800 * the appropriate handlers, including command responses,
801 * frame-received notifications, and other notifications.
802 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800803void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700804{
Tomas Winklera55360e2008-05-05 10:22:28 +0800805 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800806 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800807 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700808 u32 r, i;
809 int reclaim;
810 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800811 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800812 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700813 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -0700814
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800815 /* uCode's read index (stored in shared DRAM) indicates the last Rx
816 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800817 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700818 i = rxq->read;
819
820 /* Rx interrupt, but nothing sent from uCode */
821 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800822 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700823
Mohamed Abbas4752c932009-05-22 11:01:51 -0700824 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -0700825 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700826 if (total_empty < 0)
827 total_empty += RX_QUEUE_SIZE;
828
829 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800830 fill_rx = 1;
831
Zhu Yib481de92007-09-25 17:54:57 -0700832 while (i != r) {
833 rxb = rxq->queue[i];
834
Ben Cahill9fbab512007-11-29 11:09:47 +0800835 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700836 * then a bug has been introduced in the queue refilling
837 * routines -- catch it here */
838 BUG_ON(rxb == NULL);
839
840 rxq->queue[i] = NULL;
841
Zhu Yi2f301222009-10-09 17:19:45 +0800842 pci_unmap_page(priv->pci_dev, rxb->page_dma,
843 PAGE_SIZE << priv->hw_params.rx_page_order,
844 PCI_DMA_FROMDEVICE);
845 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700846
Johannes Bergbe1a71a2009-10-02 13:44:02 -0700847 trace_iwlwifi_dev_rx(priv, pkt,
848 le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK);
849
Zhu Yib481de92007-09-25 17:54:57 -0700850 /* Reclaim a command buffer only if this packet is a response
851 * to a (driver-originated) command.
852 * If the packet (e.g. Rx frame) originated from uCode,
853 * there is no command buffer to reclaim.
854 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
855 * but apparently a few don't get set; catch them here. */
856 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
857 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700858 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700859 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800860 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700861 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
862 (pkt->hdr.cmd != REPLY_TX);
863
864 /* Based on type of command response or notification,
865 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700866 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -0700867 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -0800868 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +0800869 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700870 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -0700871 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700872 } else {
873 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -0800874 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700875 "r %d i %d No handler needed for %s, 0x%02x\n",
876 r, i, get_cmd_string(pkt->hdr.cmd),
877 pkt->hdr.cmd);
878 }
879
Zhu Yi29b1b262009-10-23 13:42:25 -0700880 /*
881 * XXX: After here, we should always check rxb->page
882 * against NULL before touching it or its virtual
883 * memory (pkt). Because some rx_handler might have
884 * already taken or freed the pages.
885 */
886
Zhu Yib481de92007-09-25 17:54:57 -0700887 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +0800888 /* Invoke any callbacks, transfer the buffer to caller,
889 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -0700890 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -0700891 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +0800892 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700893 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800894 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -0700895 }
896
Zhu Yi73005152009-10-23 13:42:32 -0700897 /* Reuse the page if possible. For notification packets and
898 * SKBs that fail to Rx correctly, add them back into the
899 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -0700900 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -0700901 if (rxb->page != NULL) {
902 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
903 0, PAGE_SIZE << priv->hw_params.rx_page_order,
904 PCI_DMA_FROMDEVICE);
905 list_add_tail(&rxb->list, &rxq->rx_free);
906 rxq->free_count++;
907 } else
908 list_add_tail(&rxb->list, &rxq->rx_used);
909
Zhu Yib481de92007-09-25 17:54:57 -0700910 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -0700911
Zhu Yib481de92007-09-25 17:54:57 -0700912 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800913 /* If there are a lot of unused frames,
914 * restock the Rx queue so ucode wont assert. */
915 if (fill_rx) {
916 count++;
917 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -0700918 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700919 iwl_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800920 count = 0;
921 }
922 }
Zhu Yib481de92007-09-25 17:54:57 -0700923 }
924
925 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -0700926 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700927 if (fill_rx)
928 iwl_rx_replenish_now(priv);
929 else
930 iwl_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +0800931}
Tomas Winklera55360e2008-05-05 10:22:28 +0800932
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700933/* call this function to flush any scheduled tasklet */
934static inline void iwl_synchronize_irq(struct iwl_priv *priv)
935{
Tomas Winklera96a27f2008-10-23 23:48:56 -0700936 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700937 synchronize_irq(priv->pci_dev->irq);
938 tasklet_kill(&priv->irq_tasklet);
939}
940
Mohamed Abbasef850d72009-05-22 11:01:50 -0700941static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700942{
943 u32 inta, handled = 0;
944 u32 inta_fh;
945 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -0700946 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700947#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700948 u32 inta_mask;
949#endif
950
951 spin_lock_irqsave(&priv->lock, flags);
952
953 /* Ack/clear/reset pending uCode interrupts.
954 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
955 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700956 inta = iwl_read32(priv, CSR_INT);
957 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -0700958
959 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
960 * Any new interrupts that happen after this, either while we're
961 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700962 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
963 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -0700964
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700965#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -0700966 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +0800967 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700968 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -0800969 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -0700970 inta, inta_mask, inta_fh);
971 }
972#endif
973
Zhu Yi2f301222009-10-09 17:19:45 +0800974 spin_unlock_irqrestore(&priv->lock, flags);
975
Zhu Yib481de92007-09-25 17:54:57 -0700976 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
977 * atomic, make sure that inta covers all the interrupts that
978 * we've discovered, even if FH interrupt came in just after
979 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -0800980 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -0700981 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -0800982 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -0700983 inta |= CSR_INT_BIT_FH_TX;
984
985 /* Now service all interrupt bits discovered above. */
986 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -0700987 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700988
989 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700990 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700991
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700992 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700993 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700994
995 handled |= CSR_INT_BIT_HW_ERR;
996
Zhu Yib481de92007-09-25 17:54:57 -0700997 return;
998 }
999
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001000#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001001 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001002 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001003 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001004 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001005 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001006 priv->isr_stats.sch++;
1007 }
Zhu Yib481de92007-09-25 17:54:57 -07001008
1009 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001010 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001011 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001012 priv->isr_stats.alive++;
1013 }
Zhu Yib481de92007-09-25 17:54:57 -07001014 }
1015#endif
1016 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001017 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001018
Ben Cahill9fbab512007-11-29 11:09:47 +08001019 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001020 if (inta & CSR_INT_BIT_RF_KILL) {
1021 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001022 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001023 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1024 hw_rf_kill = 1;
1025
Reinette Chatre4c423a22009-07-17 09:30:26 -07001026 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001027 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001028
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001029 priv->isr_stats.rfkill++;
1030
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001031 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001032 * the driver allows loading the ucode even if the radio
1033 * is killed. Hence update the killswitch state here. The
1034 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001035 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001036 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1037 if (hw_rf_kill)
1038 set_bit(STATUS_RF_KILL_HW, &priv->status);
1039 else
1040 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001041 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001042 }
Zhu Yib481de92007-09-25 17:54:57 -07001043
1044 handled |= CSR_INT_BIT_RF_KILL;
1045 }
1046
Ben Cahill9fbab512007-11-29 11:09:47 +08001047 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001048 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001049 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001050 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001051 handled |= CSR_INT_BIT_CT_KILL;
1052 }
1053
1054 /* Error detected by uCode */
1055 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001056 IWL_ERR(priv, "Microcode SW error detected. "
1057 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001058 priv->isr_stats.sw++;
1059 priv->isr_stats.sw_err = inta;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001060 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001061 handled |= CSR_INT_BIT_SW_ERR;
1062 }
1063
Ben Cahillc2e61da2009-10-30 14:36:09 -07001064 /*
1065 * uCode wakes up after power-down sleep.
1066 * Tell device about any new tx or host commands enqueued,
1067 * and about any Rx buffers made available while asleep.
1068 */
Zhu Yib481de92007-09-25 17:54:57 -07001069 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001070 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001071 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001072 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1073 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001074 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001075 handled |= CSR_INT_BIT_WAKEUP;
1076 }
1077
1078 /* All uCode command responses, including Tx command responses,
1079 * Rx "responses" (frame-received notification), and other
1080 * notifications from uCode come through here*/
1081 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001082 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001083 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001084 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1085 }
1086
Ben Cahillc72cd192009-10-30 14:36:08 -07001087 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001088 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001089 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001090 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001091 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001092 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001093 priv->ucode_write_complete = 1;
1094 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001095 }
1096
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001097 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001098 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001099 priv->isr_stats.unhandled++;
1100 }
Zhu Yib481de92007-09-25 17:54:57 -07001101
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001102 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001103 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001104 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001105 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001106 }
1107
1108 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001109 /* only Re-enable if diabled by irq */
1110 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001111 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001112
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001113#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001114 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001115 inta = iwl_read32(priv, CSR_INT);
1116 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1117 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001118 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001119 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1120 }
1121#endif
Zhu Yib481de92007-09-25 17:54:57 -07001122}
1123
Mohamed Abbasef850d72009-05-22 11:01:50 -07001124/* tasklet for iwlagn interrupt */
1125static void iwl_irq_tasklet(struct iwl_priv *priv)
1126{
1127 u32 inta = 0;
1128 u32 handled = 0;
1129 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001130 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001131#ifdef CONFIG_IWLWIFI_DEBUG
1132 u32 inta_mask;
1133#endif
1134
1135 spin_lock_irqsave(&priv->lock, flags);
1136
1137 /* Ack/clear/reset pending uCode interrupts.
1138 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1139 */
1140 iwl_write32(priv, CSR_INT, priv->inta);
1141
1142 inta = priv->inta;
1143
1144#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001145 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001146 /* just for debug */
1147 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1148 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1149 inta, inta_mask);
1150 }
1151#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001152
1153 spin_unlock_irqrestore(&priv->lock, flags);
1154
Mohamed Abbasef850d72009-05-22 11:01:50 -07001155 /* saved interrupt in inta variable now we can reset priv->inta */
1156 priv->inta = 0;
1157
1158 /* Now service all interrupt bits discovered above. */
1159 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001160 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001161
1162 /* Tell the device to stop sending interrupts */
1163 iwl_disable_interrupts(priv);
1164
1165 priv->isr_stats.hw++;
1166 iwl_irq_handle_error(priv);
1167
1168 handled |= CSR_INT_BIT_HW_ERR;
1169
Mohamed Abbasef850d72009-05-22 11:01:50 -07001170 return;
1171 }
1172
1173#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001174 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001175 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1176 if (inta & CSR_INT_BIT_SCD) {
1177 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1178 "the frame/frames.\n");
1179 priv->isr_stats.sch++;
1180 }
1181
1182 /* Alive notification via Rx interrupt will do the real work */
1183 if (inta & CSR_INT_BIT_ALIVE) {
1184 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1185 priv->isr_stats.alive++;
1186 }
1187 }
1188#endif
1189 /* Safely ignore these bits for debug checks below */
1190 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1191
1192 /* HW RF KILL switch toggled */
1193 if (inta & CSR_INT_BIT_RF_KILL) {
1194 int hw_rf_kill = 0;
1195 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1196 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1197 hw_rf_kill = 1;
1198
Reinette Chatre4c423a22009-07-17 09:30:26 -07001199 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001200 hw_rf_kill ? "disable radio" : "enable radio");
1201
1202 priv->isr_stats.rfkill++;
1203
1204 /* driver only loads ucode once setting the interface up.
1205 * the driver allows loading the ucode even if the radio
1206 * is killed. Hence update the killswitch state here. The
1207 * rfkill handler will care about restarting if needed.
1208 */
1209 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1210 if (hw_rf_kill)
1211 set_bit(STATUS_RF_KILL_HW, &priv->status);
1212 else
1213 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001214 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001215 }
1216
1217 handled |= CSR_INT_BIT_RF_KILL;
1218 }
1219
1220 /* Chip got too hot and stopped itself */
1221 if (inta & CSR_INT_BIT_CT_KILL) {
1222 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1223 priv->isr_stats.ctkill++;
1224 handled |= CSR_INT_BIT_CT_KILL;
1225 }
1226
1227 /* Error detected by uCode */
1228 if (inta & CSR_INT_BIT_SW_ERR) {
1229 IWL_ERR(priv, "Microcode SW error detected. "
1230 " Restarting 0x%X.\n", inta);
1231 priv->isr_stats.sw++;
1232 priv->isr_stats.sw_err = inta;
1233 iwl_irq_handle_error(priv);
1234 handled |= CSR_INT_BIT_SW_ERR;
1235 }
1236
1237 /* uCode wakes up after power-down sleep */
1238 if (inta & CSR_INT_BIT_WAKEUP) {
1239 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1240 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001241 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1242 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001243
1244 priv->isr_stats.wakeup++;
1245
1246 handled |= CSR_INT_BIT_WAKEUP;
1247 }
1248
1249 /* All uCode command responses, including Tx command responses,
1250 * Rx "responses" (frame-received notification), and other
1251 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001252 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1253 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001254 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001255 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1256 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1257 iwl_write32(priv, CSR_FH_INT_STATUS,
1258 CSR49_FH_INT_RX_MASK);
1259 }
1260 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1261 handled |= CSR_INT_BIT_RX_PERIODIC;
1262 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1263 }
1264 /* Sending RX interrupt require many steps to be done in the
1265 * the device:
1266 * 1- write interrupt to current index in ICT table.
1267 * 2- dma RX frame.
1268 * 3- update RX shared data to indicate last write index.
1269 * 4- send interrupt.
1270 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001271 * but the shared data changes does not reflect this;
1272 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001273 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001274
1275 /* Disable periodic interrupt; we use it as just a one-shot. */
1276 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001277 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001278 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001279
1280 /*
1281 * Enable periodic interrupt in 8 msec only if we received
1282 * real RX interrupt (instead of just periodic int), to catch
1283 * any dangling Rx interrupt. If it was just the periodic
1284 * interrupt, there was no dangling Rx activity, and no need
1285 * to extend the periodic interrupt; one-shot is enough.
1286 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001287 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001288 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001289 CSR_INT_PERIODIC_ENA);
1290
Mohamed Abbasef850d72009-05-22 11:01:50 -07001291 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001292 }
1293
Ben Cahillc72cd192009-10-30 14:36:08 -07001294 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001295 if (inta & CSR_INT_BIT_FH_TX) {
1296 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001297 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001298 priv->isr_stats.tx++;
1299 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001300 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001301 priv->ucode_write_complete = 1;
1302 wake_up_interruptible(&priv->wait_command_queue);
1303 }
1304
1305 if (inta & ~handled) {
1306 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1307 priv->isr_stats.unhandled++;
1308 }
1309
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001310 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001311 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001312 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001313 }
1314
Mohamed Abbasef850d72009-05-22 11:01:50 -07001315 /* Re-enable all interrupts */
1316 /* only Re-enable if diabled by irq */
1317 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1318 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001319}
1320
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001321
Zhu Yib481de92007-09-25 17:54:57 -07001322/******************************************************************************
1323 *
1324 * uCode download functions
1325 *
1326 ******************************************************************************/
1327
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001328static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001329{
Tomas Winkler98c92212008-01-14 17:46:20 -08001330 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1331 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1332 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1333 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1334 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1335 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001336}
1337
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001338static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001339{
1340 /* Remove all resets to allow NIC to operate */
1341 iwl_write32(priv, CSR_RESET, 0);
1342}
1343
1344
Zhu Yib481de92007-09-25 17:54:57 -07001345/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001346 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001347 *
1348 * Copy into buffers for card to fetch via bus-mastering
1349 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001350static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001351{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001352 struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001353 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001354 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001355 const char *name_pre = priv->cfg->fw_name_pre;
1356 const unsigned int api_max = priv->cfg->ucode_api_max;
1357 const unsigned int api_min = priv->cfg->ucode_api_min;
1358 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001359 u8 *src;
1360 size_t len;
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001361 u32 api_ver, build;
1362 u32 inst_size, data_size, init_size, init_data_size, boot_size;
Jay Sternbergabdc2d62009-07-31 14:28:09 -07001363 u16 eeprom_ver;
Zhu Yib481de92007-09-25 17:54:57 -07001364
1365 /* Ask kernel firmware_class module to get the boot firmware off disk.
1366 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001367 for (index = api_max; index >= api_min; index--) {
1368 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1369 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1370 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001371 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001372 buf, ret);
1373 if (ret == -ENOENT)
1374 continue;
1375 else
1376 goto error;
1377 } else {
1378 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001379 IWL_ERR(priv, "Loaded firmware %s, "
1380 "which is deprecated. "
1381 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001382 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001383
Tomas Winklere1623442009-01-27 14:27:56 -08001384 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001385 buf, ucode_raw->size);
1386 break;
1387 }
Zhu Yib481de92007-09-25 17:54:57 -07001388 }
1389
Reinette Chatrea0987a82008-12-02 12:14:06 -08001390 if (ret < 0)
1391 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001392
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001393 /* Make sure that we got at least the v1 header! */
1394 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001395 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001396 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001397 goto err_release;
1398 }
1399
1400 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001401 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07001402
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001403 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001404 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001405 build = priv->cfg->ops->ucode->get_build(ucode, api_ver);
1406 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
1407 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
1408 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
1409 init_data_size =
1410 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
1411 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
1412 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001413
Reinette Chatrea0987a82008-12-02 12:14:06 -08001414 /* api_ver should match the api version forming part of the
1415 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01001416 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001417
1418 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001419 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001420 "Driver supports v%u, firmware is v%u.\n",
1421 api_max, api_ver);
1422 priv->ucode_ver = 0;
1423 ret = -EINVAL;
1424 goto err_release;
1425 }
1426 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001427 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001428 "got v%u. New firmware can be obtained "
1429 "from http://www.intellinuxwireless.org.\n",
1430 api_max, api_ver);
1431
Tomas Winkler978785a2008-12-19 10:37:31 +08001432 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1433 IWL_UCODE_MAJOR(priv->ucode_ver),
1434 IWL_UCODE_MINOR(priv->ucode_ver),
1435 IWL_UCODE_API(priv->ucode_ver),
1436 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001437
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07001438 snprintf(priv->hw->wiphy->fw_version,
1439 sizeof(priv->hw->wiphy->fw_version),
1440 "%u.%u.%u.%u",
1441 IWL_UCODE_MAJOR(priv->ucode_ver),
1442 IWL_UCODE_MINOR(priv->ucode_ver),
1443 IWL_UCODE_API(priv->ucode_ver),
1444 IWL_UCODE_SERIAL(priv->ucode_ver));
1445
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001446 if (build)
1447 IWL_DEBUG_INFO(priv, "Build %u\n", build);
1448
Jay Sternbergabdc2d62009-07-31 14:28:09 -07001449 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
1450 IWL_DEBUG_INFO(priv, "NVM Type: %s, version: 0x%x\n",
1451 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
1452 ? "OTP" : "EEPROM", eeprom_ver);
1453
Tomas Winklere1623442009-01-27 14:27:56 -08001454 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001455 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001456 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001457 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001458 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001459 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001460 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001461 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001462 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001463 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001464 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001465 boot_size);
1466
1467 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001468 if (ucode_raw->size !=
1469 priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07001470 inst_size + data_size + init_size +
1471 init_data_size + boot_size) {
1472
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001473 IWL_DEBUG_INFO(priv,
1474 "uCode file size %d does not match expected size\n",
1475 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001476 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001477 goto err_release;
1478 }
1479
1480 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001481 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001482 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001483 inst_size);
1484 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001485 goto err_release;
1486 }
1487
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001488 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001489 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001490 data_size);
1491 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001492 goto err_release;
1493 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001494 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001495 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1496 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001497 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001498 goto err_release;
1499 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001500 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001501 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001502 init_data_size);
1503 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001504 goto err_release;
1505 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001506 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001507 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1508 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001509 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001510 goto err_release;
1511 }
1512
1513 /* Allocate ucode buffers for card's bus-master loading ... */
1514
1515 /* Runtime instructions and 2 copies of data:
1516 * 1) unmodified from disk
1517 * 2) backup cache for save/restore during power-downs */
1518 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001519 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001520
1521 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001522 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001523
1524 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001525 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001526
Zhu, Yi1f304e42009-01-23 13:45:22 -08001527 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1528 !priv->ucode_data_backup.v_addr)
1529 goto err_pci_alloc;
1530
Zhu Yib481de92007-09-25 17:54:57 -07001531 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001532 if (init_size && init_data_size) {
1533 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001534 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001535
Tomas Winkler90e759d2007-11-29 11:09:41 +08001536 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001537 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001538
1539 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1540 goto err_pci_alloc;
1541 }
Zhu Yib481de92007-09-25 17:54:57 -07001542
1543 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001544 if (boot_size) {
1545 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001546 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001547
Tomas Winkler90e759d2007-11-29 11:09:41 +08001548 if (!priv->ucode_boot.v_addr)
1549 goto err_pci_alloc;
1550 }
Zhu Yib481de92007-09-25 17:54:57 -07001551
1552 /* Copy images into buffers for card's bus-master reads ... */
1553
1554 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001555 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001556 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001557 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001558 src += len;
1559
Tomas Winklere1623442009-01-27 14:27:56 -08001560 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001561 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1562
1563 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001564 * NOTE: Copy into backup buffer will be done in iwl_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001565 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001566 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001567 memcpy(priv->ucode_data.v_addr, src, len);
1568 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001569 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07001570
1571 /* Initialization instructions (3rd block) */
1572 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001573 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001574 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001575 len);
Zhu Yib481de92007-09-25 17:54:57 -07001576 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001577 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07001578 }
1579
1580 /* Initialization data (4th block) */
1581 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001582 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001583 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001584 len);
Zhu Yib481de92007-09-25 17:54:57 -07001585 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001586 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07001587 }
1588
1589 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001590 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08001591 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001592 memcpy(priv->ucode_boot.v_addr, src, len);
1593
1594 /* We have our copies now, allow OS release its copies */
1595 release_firmware(ucode_raw);
1596 return 0;
1597
1598 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001599 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001600 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001601 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001602
1603 err_release:
1604 release_firmware(ucode_raw);
1605
1606 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001607 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001608}
1609
Reinette Chatreb7a79402009-09-25 14:24:23 -07001610static const char *desc_lookup_text[] = {
1611 "OK",
1612 "FAIL",
1613 "BAD_PARAM",
1614 "BAD_CHECKSUM",
1615 "NMI_INTERRUPT_WDG",
1616 "SYSASSERT",
1617 "FATAL_ERROR",
1618 "BAD_COMMAND",
1619 "HW_ERROR_TUNE_LOCK",
1620 "HW_ERROR_TEMPERATURE",
1621 "ILLEGAL_CHAN_FREQ",
1622 "VCC_NOT_STABLE",
1623 "FH_ERROR",
1624 "NMI_INTERRUPT_HOST",
1625 "NMI_INTERRUPT_ACTION_PT",
1626 "NMI_INTERRUPT_UNKNOWN",
1627 "UCODE_VERSION_MISMATCH",
1628 "HW_ERROR_ABS_LOCK",
1629 "HW_ERROR_CAL_LOCK_FAIL",
1630 "NMI_INTERRUPT_INST_ACTION_PT",
1631 "NMI_INTERRUPT_DATA_ACTION_PT",
1632 "NMI_TRM_HW_ER",
1633 "NMI_INTERRUPT_TRM",
1634 "NMI_INTERRUPT_BREAK_POINT"
1635 "DEBUG_0",
1636 "DEBUG_1",
1637 "DEBUG_2",
1638 "DEBUG_3",
1639 "UNKNOWN"
1640};
1641
1642static const char *desc_lookup(int i)
1643{
1644 int max = ARRAY_SIZE(desc_lookup_text) - 1;
1645
1646 if (i < 0 || i > max)
1647 i = max;
1648
1649 return desc_lookup_text[i];
1650}
1651
1652#define ERROR_START_OFFSET (1 * sizeof(u32))
1653#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1654
1655void iwl_dump_nic_error_log(struct iwl_priv *priv)
1656{
1657 u32 data2, line;
1658 u32 desc, time, count, base, data1;
1659 u32 blink1, blink2, ilink1, ilink2;
1660
1661 if (priv->ucode_type == UCODE_INIT)
1662 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
1663 else
1664 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1665
1666 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08001667 IWL_ERR(priv,
1668 "Not valid error log pointer 0x%08X for %s uCode\n",
1669 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07001670 return;
1671 }
1672
1673 count = iwl_read_targ_mem(priv, base);
1674
1675 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
1676 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1677 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1678 priv->status, count);
1679 }
1680
1681 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
1682 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
1683 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
1684 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
1685 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
1686 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
1687 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
1688 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
1689 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
1690
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001691 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
1692 blink1, blink2, ilink1, ilink2);
1693
Reinette Chatreb7a79402009-09-25 14:24:23 -07001694 IWL_ERR(priv, "Desc Time "
1695 "data1 data2 line\n");
1696 IWL_ERR(priv, "%-28s (#%02d) %010u 0x%08X 0x%08X %u\n",
1697 desc_lookup(desc), desc, time, data1, data2, line);
1698 IWL_ERR(priv, "blink1 blink2 ilink1 ilink2\n");
1699 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
1700 ilink1, ilink2);
1701
1702}
1703
1704#define EVENT_START_OFFSET (4 * sizeof(u32))
1705
1706/**
1707 * iwl_print_event_log - Dump error event log to syslog
1708 *
1709 */
1710static void iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
1711 u32 num_events, u32 mode)
1712{
1713 u32 i;
1714 u32 base; /* SRAM byte address of event log header */
1715 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1716 u32 ptr; /* SRAM byte address of log data */
1717 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08001718 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001719
1720 if (num_events == 0)
1721 return;
1722 if (priv->ucode_type == UCODE_INIT)
1723 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1724 else
1725 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1726
1727 if (mode == 0)
1728 event_size = 2 * sizeof(u32);
1729 else
1730 event_size = 3 * sizeof(u32);
1731
1732 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1733
Ben Cahille5854472009-11-06 14:52:58 -08001734 /* Make sure device is powered up for SRAM reads */
1735 spin_lock_irqsave(&priv->reg_lock, reg_flags);
1736 iwl_grab_nic_access(priv);
1737
1738 /* Set starting address; reads will auto-increment */
1739 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1740 rmb();
1741
Reinette Chatreb7a79402009-09-25 14:24:23 -07001742 /* "time" is actually "data" for mode 0 (no timestamp).
1743 * place event id # at far right for easier visual parsing. */
1744 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08001745 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1746 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001747 if (mode == 0) {
1748 /* data, ev */
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001749 trace_iwlwifi_dev_ucode_event(priv, 0, time, ev);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001750 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", time, ev);
1751 } else {
Ben Cahille5854472009-11-06 14:52:58 -08001752 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001753 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
1754 time, data, ev);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001755 trace_iwlwifi_dev_ucode_event(priv, time, data, ev);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001756 }
1757 }
Ben Cahille5854472009-11-06 14:52:58 -08001758
1759 /* Allow device to power down */
1760 iwl_release_nic_access(priv);
1761 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001762}
1763
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001764/**
1765 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
1766 */
1767static void iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
1768 u32 num_wraps, u32 next_entry,
1769 u32 size, u32 mode)
1770{
1771 /*
1772 * display the newest DEFAULT_LOG_ENTRIES entries
1773 * i.e the entries just before the next ont that uCode would fill.
1774 */
1775 if (num_wraps) {
1776 if (next_entry < size) {
1777 iwl_print_event_log(priv,
1778 capacity - (size - next_entry),
1779 size - next_entry, mode);
1780 iwl_print_event_log(priv, 0,
1781 next_entry, mode);
1782 } else
1783 iwl_print_event_log(priv, next_entry - size,
1784 size, mode);
1785 } else {
1786 if (next_entry < size)
1787 iwl_print_event_log(priv, 0, next_entry, mode);
1788 else
1789 iwl_print_event_log(priv, next_entry - size,
1790 size, mode);
1791 }
1792}
1793
Ben Cahill84c40692009-11-06 14:52:57 -08001794/* For sanity check only. Actual size is determined by uCode, typ. 512 */
1795#define MAX_EVENT_LOG_SIZE (512)
1796
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001797#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
1798
1799void iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log)
Reinette Chatreb7a79402009-09-25 14:24:23 -07001800{
1801 u32 base; /* SRAM byte address of event log header */
1802 u32 capacity; /* event log capacity in # entries */
1803 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1804 u32 num_wraps; /* # times uCode wrapped to top of log */
1805 u32 next_entry; /* index of next entry to be written by uCode */
1806 u32 size; /* # entries that we'll print */
1807
1808 if (priv->ucode_type == UCODE_INIT)
1809 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1810 else
1811 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1812
1813 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08001814 IWL_ERR(priv,
1815 "Invalid event log pointer 0x%08X for %s uCode\n",
1816 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07001817 return;
1818 }
1819
1820 /* event log header */
1821 capacity = iwl_read_targ_mem(priv, base);
1822 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1823 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1824 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
1825
Ben Cahill84c40692009-11-06 14:52:57 -08001826 if (capacity > MAX_EVENT_LOG_SIZE) {
1827 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
1828 capacity, MAX_EVENT_LOG_SIZE);
1829 capacity = MAX_EVENT_LOG_SIZE;
1830 }
1831
1832 if (next_entry > MAX_EVENT_LOG_SIZE) {
1833 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
1834 next_entry, MAX_EVENT_LOG_SIZE);
1835 next_entry = MAX_EVENT_LOG_SIZE;
1836 }
1837
Reinette Chatreb7a79402009-09-25 14:24:23 -07001838 size = num_wraps ? capacity : next_entry;
1839
1840 /* bail out if nothing in log */
1841 if (size == 0) {
1842 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
1843 return;
1844 }
1845
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001846#ifdef CONFIG_IWLWIFI_DEBUG
1847 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS))
1848 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
1849 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
1850#else
1851 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
1852 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07001853#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001854 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
1855 size);
1856
1857#ifdef CONFIG_IWLWIFI_DEBUG
1858 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
1859 /*
1860 * if uCode has wrapped back to top of log,
1861 * start at the oldest entry,
1862 * i.e the next one that uCode would fill.
1863 */
1864 if (num_wraps)
1865 iwl_print_event_log(priv, next_entry,
1866 capacity - next_entry, mode);
1867 /* (then/else) start at top of log */
1868 iwl_print_event_log(priv, 0, next_entry, mode);
1869 } else
1870 iwl_print_last_event_logs(priv, capacity, num_wraps,
1871 next_entry, size, mode);
1872#else
1873 iwl_print_last_event_logs(priv, capacity, num_wraps,
1874 next_entry, size, mode);
1875#endif
1876}
Reinette Chatreb7a79402009-09-25 14:24:23 -07001877
Zhu Yib481de92007-09-25 17:54:57 -07001878/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001879 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001880 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001881 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001882 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001883static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001884{
Tomas Winkler57aab752008-04-14 21:16:03 -07001885 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001886
Tomas Winklere1623442009-01-27 14:27:56 -08001887 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001888
1889 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1890 /* We had an error bringing up the hardware, so take it
1891 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001892 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001893 goto restart;
1894 }
1895
1896 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1897 * This is a paranoid check, because we would not have gotten the
1898 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001899 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001900 /* Runtime instruction load was bad;
1901 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001902 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001903 goto restart;
1904 }
1905
Tomas Winklerc587de02009-06-03 11:44:07 -07001906 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001907 ret = priv->cfg->ops->lib->alive_notify(priv);
1908 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001909 IWL_WARN(priv,
1910 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001911 goto restart;
1912 }
1913
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001914 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001915 set_bit(STATUS_ALIVE, &priv->status);
1916
Tomas Winklerfee12472008-04-03 16:05:21 -07001917 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001918 return;
1919
Johannes Berg36d68252008-05-15 12:55:26 +02001920 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001921
1922 priv->active_rate = priv->rates_mask;
1923 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1924
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07001925 /* Configure Tx antenna selection based on H/W config */
1926 if (priv->cfg->ops->hcmd->set_tx_ant)
1927 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
1928
Tomas Winkler3109ece2008-03-28 16:33:35 -07001929 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001930 struct iwl_rxon_cmd *active_rxon =
1931 (struct iwl_rxon_cmd *)&priv->active_rxon;
Mohamed Abbas019fb972009-03-17 21:59:18 -07001932 /* apply any changes in staging */
1933 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001934 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1935 } else {
1936 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001937 iwl_connection_init_rx_config(priv, priv->iw_mode);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07001938
1939 if (priv->cfg->ops->hcmd->set_rxon_chain)
1940 priv->cfg->ops->hcmd->set_rxon_chain(priv);
1941
Zhu Yib481de92007-09-25 17:54:57 -07001942 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1943 }
1944
Ben Cahill9fbab512007-11-29 11:09:47 +08001945 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001946 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001947
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001948 iwl_reset_run_time_calib(priv);
1949
Zhu Yib481de92007-09-25 17:54:57 -07001950 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001951 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001952
1953 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001954 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001955
Johannes Berge932a602009-10-02 13:44:03 -07001956 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001957
Tomas Winklere1623442009-01-27 14:27:56 -08001958 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001959 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001960 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001961
Johannes Berge312c242009-08-07 15:41:51 -07001962 iwl_power_update_mode(priv, true);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001963
Mohamed Abbasada17512008-11-07 09:58:34 -08001964 /* reassociate for ADHOC mode */
1965 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1966 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1967 priv->vif);
1968 if (beacon)
1969 iwl_mac_beacon_update(priv->hw, beacon);
1970 }
1971
1972
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001973 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001974 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001975
Zhu Yib481de92007-09-25 17:54:57 -07001976 return;
1977
1978 restart:
1979 queue_work(priv->workqueue, &priv->restart);
1980}
1981
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001982static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001983
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001984static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001985{
1986 unsigned long flags;
1987 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001988
Tomas Winklere1623442009-01-27 14:27:56 -08001989 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001990
Zhu Yib481de92007-09-25 17:54:57 -07001991 if (!exit_pending)
1992 set_bit(STATUS_EXIT_PENDING, &priv->status);
1993
Tomas Winklerc587de02009-06-03 11:44:07 -07001994 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001995
1996 /* Unblock any waiting calls */
1997 wake_up_interruptible_all(&priv->wait_command_queue);
1998
Zhu Yib481de92007-09-25 17:54:57 -07001999 /* Wipe out the EXIT_PENDING status bit if we are not actually
2000 * exiting the module */
2001 if (!exit_pending)
2002 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2003
2004 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002005 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002006
2007 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002008 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002009 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002010 spin_unlock_irqrestore(&priv->lock, flags);
2011 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002012
2013 if (priv->mac80211_registered)
2014 ieee80211_stop_queues(priv->hw);
2015
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002016 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002017 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002018 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002019 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2020 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002021 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2022 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002023 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2024 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002025 goto exit;
2026 }
2027
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002028 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002029 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002030 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2031 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002032 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2033 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002034 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002035 STATUS_FW_ERROR |
2036 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2037 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002038
Mohamed Abbasef850d72009-05-22 11:01:50 -07002039 /* device going down, Stop using ICT table */
2040 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002041
Tomas Winklerda1bc452008-05-29 16:35:00 +08002042 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08002043 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002044
Ben Cahill309e7312009-11-06 14:53:03 -08002045 /* Power-down device's busmaster DMA clocks */
2046 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002047 udelay(5);
2048
Ben Cahill309e7312009-11-06 14:53:03 -08002049 /* Make sure (redundant) we've released our request to stay awake */
2050 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2051
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002052 /* Stop the device, and put it in low power state */
2053 priv->cfg->ops->lib->apm_ops.stop(priv);
2054
Zhu Yib481de92007-09-25 17:54:57 -07002055 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002056 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002057
2058 if (priv->ibss_beacon)
2059 dev_kfree_skb(priv->ibss_beacon);
2060 priv->ibss_beacon = NULL;
2061
2062 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002063 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002064}
2065
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002066static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002067{
2068 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002069 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002070 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002071
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002072 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002073}
2074
Mohamed Abbas086ed112009-05-22 11:01:54 -07002075#define HW_READY_TIMEOUT (50)
2076
2077static int iwl_set_hw_ready(struct iwl_priv *priv)
2078{
2079 int ret = 0;
2080
2081 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2082 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2083
2084 /* See if we got it */
2085 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2086 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2087 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2088 HW_READY_TIMEOUT);
2089 if (ret != -ETIMEDOUT)
2090 priv->hw_ready = true;
2091 else
2092 priv->hw_ready = false;
2093
2094 IWL_DEBUG_INFO(priv, "hardware %s\n",
2095 (priv->hw_ready == 1) ? "ready" : "not ready");
2096 return ret;
2097}
2098
2099static int iwl_prepare_card_hw(struct iwl_priv *priv)
2100{
2101 int ret = 0;
2102
2103 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter \n");
2104
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002105 ret = iwl_set_hw_ready(priv);
2106 if (priv->hw_ready)
2107 return ret;
2108
2109 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002110 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2111 CSR_HW_IF_CONFIG_REG_PREPARE);
2112
2113 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2114 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
2115 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
2116
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002117 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002118 if (ret != -ETIMEDOUT)
2119 iwl_set_hw_ready(priv);
2120
2121 return ret;
2122}
2123
Zhu Yib481de92007-09-25 17:54:57 -07002124#define MAX_HW_RESTARTS 5
2125
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002126static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002127{
Tomas Winkler57aab752008-04-14 21:16:03 -07002128 int i;
2129 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002130
2131 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002132 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002133 return -EIO;
2134 }
2135
Reinette Chatree903fbd2008-01-30 22:05:15 -08002136 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002137 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002138 return -EIO;
2139 }
2140
Mohamed Abbas086ed112009-05-22 11:01:54 -07002141 iwl_prepare_card_hw(priv);
2142
2143 if (!priv->hw_ready) {
2144 IWL_WARN(priv, "Exit HW not ready\n");
2145 return -EIO;
2146 }
2147
Zhu Yie655b9f2008-01-24 02:19:38 -08002148 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08002149 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08002150 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002151 else
Zhu Yie655b9f2008-01-24 02:19:38 -08002152 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002153
Tomas Winklerc1842d62008-08-04 16:00:43 +08002154 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02002155 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
2156
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002157 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02002158 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08002159 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002160 }
2161
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002162 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002163
Ron Rindjunsky1053d352008-05-05 10:22:43 +08002164 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002165 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002166 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07002167 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002168 }
2169
2170 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002171 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2172 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002173 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2174
2175 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002176 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002177 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002178
2179 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002180 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2181 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002182
2183 /* Copy original ucode data image from disk into backup cache.
2184 * This will be used to initialize the on-board processor's
2185 * data SRAM for a clean start when the runtime program first loads. */
2186 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08002187 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002188
Zhu Yib481de92007-09-25 17:54:57 -07002189 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2190
Tomas Winklerc587de02009-06-03 11:44:07 -07002191 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002192
2193 /* load bootstrap state machine,
2194 * load bootstrap program into processor's memory,
2195 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07002196 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002197
Tomas Winkler57aab752008-04-14 21:16:03 -07002198 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002199 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
2200 ret);
Zhu Yib481de92007-09-25 17:54:57 -07002201 continue;
2202 }
2203
2204 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002205 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002206
Tomas Winklere1623442009-01-27 14:27:56 -08002207 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002208
2209 return 0;
2210 }
2211
2212 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002213 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002214 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002215
2216 /* tried to restart and config the device for as long as our
2217 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002218 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002219 return -EIO;
2220}
2221
2222
2223/*****************************************************************************
2224 *
2225 * Workqueue callbacks
2226 *
2227 *****************************************************************************/
2228
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002229static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002230{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002231 struct iwl_priv *priv =
2232 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002233
2234 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2235 return;
2236
2237 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08002238 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002239 mutex_unlock(&priv->mutex);
2240}
2241
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002242static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002243{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002244 struct iwl_priv *priv =
2245 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002246
2247 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2248 return;
2249
Mohamed Abbas258c44a2009-06-03 11:44:10 -07002250 /* enable dram interrupt */
2251 iwl_reset_ict(priv);
2252
Zhu Yib481de92007-09-25 17:54:57 -07002253 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002254 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002255 mutex_unlock(&priv->mutex);
2256}
2257
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08002258static void iwl_bg_run_time_calib_work(struct work_struct *work)
2259{
2260 struct iwl_priv *priv = container_of(work, struct iwl_priv,
2261 run_time_calib_work);
2262
2263 mutex_lock(&priv->mutex);
2264
2265 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
2266 test_bit(STATUS_SCANNING, &priv->status)) {
2267 mutex_unlock(&priv->mutex);
2268 return;
2269 }
2270
2271 if (priv->start_calib) {
2272 iwl_chain_noise_calibration(priv, &priv->statistics);
2273
2274 iwl_sensitivity_calibration(priv, &priv->statistics);
2275 }
2276
2277 mutex_unlock(&priv->mutex);
2278 return;
2279}
2280
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002281static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002282{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002283 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002284
2285 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2286 return;
2287
2288 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002289 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002290 mutex_unlock(&priv->mutex);
2291}
2292
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002293static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002294{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002295 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002296
2297 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2298 return;
2299
Johannes Berg19cc1082009-05-08 13:44:36 -07002300 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
2301 mutex_lock(&priv->mutex);
2302 priv->vif = NULL;
2303 priv->is_open = 0;
2304 mutex_unlock(&priv->mutex);
2305 iwl_down(priv);
2306 ieee80211_restart_hw(priv->hw);
2307 } else {
2308 iwl_down(priv);
2309 queue_work(priv->workqueue, &priv->up);
2310 }
Zhu Yib481de92007-09-25 17:54:57 -07002311}
2312
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002313static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002314{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002315 struct iwl_priv *priv =
2316 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002317
2318 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2319 return;
2320
2321 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08002322 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002323 mutex_unlock(&priv->mutex);
2324}
2325
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002326#define IWL_DELAY_NEXT_SCAN (HZ*2)
2327
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002328void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002329{
Zhu Yib481de92007-09-25 17:54:57 -07002330 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07002331 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002332 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002333
Johannes Berg05c914f2008-09-11 00:01:58 +02002334 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002335 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002336 return;
2337 }
2338
Tomas Winklere1623442009-01-27 14:27:56 -08002339 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002340 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002341
2342
2343 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2344 return;
2345
Zhu Yib481de92007-09-25 17:54:57 -07002346
Reinette Chatre508e32e2008-04-14 21:16:13 -07002347 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08002348 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002349
Tomas Winkler2a421b92008-06-12 09:47:10 +08002350 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08002351
Zhu Yib481de92007-09-25 17:54:57 -07002352 conf = ieee80211_get_hw_conf(priv->hw);
2353
2354 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002355 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002356
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002357 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002358 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002359 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002360 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002361 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002362 "Attempting to continue.\n");
2363
2364 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2365
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08002366 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03002367
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002368 if (priv->cfg->ops->hcmd->set_rxon_chain)
2369 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2370
Zhu Yib481de92007-09-25 17:54:57 -07002371 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2372
Tomas Winklere1623442009-01-27 14:27:56 -08002373 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002374 priv->assoc_id, priv->beacon_int);
2375
2376 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2377 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2378 else
2379 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2380
2381 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2382 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2383 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2384 else
2385 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2386
Johannes Berg05c914f2008-09-11 00:01:58 +02002387 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002388 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2389
2390 }
2391
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002392 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002393
2394 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002395 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002396 break;
2397
Johannes Berg05c914f2008-09-11 00:01:58 +02002398 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002399
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002400 /* assume default assoc id */
2401 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002402
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002403 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002404 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002405
2406 break;
2407
2408 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002409 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002410 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002411 break;
2412 }
2413
Johannes Berg05c914f2008-09-11 00:01:58 +02002414 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002415 priv->assoc_station_added = 1;
2416
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002417 spin_lock_irqsave(&priv->lock, flags);
2418 iwl_activate_qos(priv, 0);
2419 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002420
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002421 /* the chain noise calibration will enabled PM upon completion
2422 * If chain noise has already been run, then we need to enable
2423 * power management here */
2424 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07002425 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002426
2427 /* Enable Rx differential gain and sensitivity calibrations */
2428 iwl_chain_noise_reset(priv);
2429 priv->start_calib = 1;
2430
Reinette Chatre508e32e2008-04-14 21:16:13 -07002431}
2432
Zhu Yib481de92007-09-25 17:54:57 -07002433/*****************************************************************************
2434 *
2435 * mac80211 entry point functions
2436 *
2437 *****************************************************************************/
2438
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002439#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08002440
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002441/*
2442 * Not a mac80211 entry point function, but it fits in with all the
2443 * other mac80211 functions grouped here.
2444 */
2445static int iwl_setup_mac(struct iwl_priv *priv)
2446{
2447 int ret;
2448 struct ieee80211_hw *hw = priv->hw;
2449 hw->rate_control_algorithm = "iwl-agn-rs";
2450
2451 /* Tell mac80211 our characteristics */
2452 hw->flags = IEEE80211_HW_SIGNAL_DBM |
2453 IEEE80211_HW_NOISE_DBM |
2454 IEEE80211_HW_AMPDU_AGGREGATION |
2455 IEEE80211_HW_SPECTRUM_MGMT;
2456
2457 if (!priv->cfg->broken_powersave)
2458 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
2459 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
2460
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002461 hw->sta_data_size = sizeof(struct iwl_station_priv);
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002462 hw->wiphy->interface_modes =
2463 BIT(NL80211_IFTYPE_STATION) |
2464 BIT(NL80211_IFTYPE_ADHOC);
2465
Johannes Berg5be83de2009-11-19 00:56:28 +01002466 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY |
2467 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002468
2469 /*
2470 * For now, disable PS by default because it affects
2471 * RX performance significantly.
2472 */
Johannes Berg5be83de2009-11-19 00:56:28 +01002473 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07002474
2475 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
2476 /* we create the 802.11 header and a zero-length SSID element */
2477 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
2478
2479 /* Default value; 4 EDCA QOS priorities */
2480 hw->queues = 4;
2481
2482 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
2483
2484 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
2485 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
2486 &priv->bands[IEEE80211_BAND_2GHZ];
2487 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
2488 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
2489 &priv->bands[IEEE80211_BAND_5GHZ];
2490
2491 ret = ieee80211_register_hw(priv->hw);
2492 if (ret) {
2493 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
2494 return ret;
2495 }
2496 priv->mac80211_registered = 1;
2497
2498 return 0;
2499}
2500
2501
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002502static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002503{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002504 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002505 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002506
Tomas Winklere1623442009-01-27 14:27:56 -08002507 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002508
2509 /* we should be verifying the device is ready to be opened */
2510 mutex_lock(&priv->mutex);
2511
Zhu Yi5a66926a2008-01-14 17:46:18 -08002512 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2513 * ucode filename and max sizes are card-specific. */
2514
2515 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002516 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002517 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002518 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002519 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002520 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002521 }
2522 }
2523
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002524 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002525
Zhu Yib481de92007-09-25 17:54:57 -07002526 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002527
Zhu Yie655b9f2008-01-24 02:19:38 -08002528 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002529 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002530
Tomas Winklerc1842d62008-08-04 16:00:43 +08002531 if (iwl_is_rfkill(priv))
2532 goto out;
2533
Tomas Winklere1623442009-01-27 14:27:56 -08002534 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002535
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002536 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08002537 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002538 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2539 test_bit(STATUS_READY, &priv->status),
2540 UCODE_READY_TIMEOUT);
2541 if (!ret) {
2542 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002543 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002544 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002545 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002546 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002547 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002548
Johannes Berge932a602009-10-02 13:44:03 -07002549 iwl_led_start(priv);
2550
Tomas Winklerc1842d62008-08-04 16:00:43 +08002551out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002552 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002553 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002554 return 0;
2555}
2556
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002557static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002558{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002559 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002560
Tomas Winklere1623442009-01-27 14:27:56 -08002561 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002562
Johannes Berg19cc1082009-05-08 13:44:36 -07002563 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08002564 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08002565
Zhu Yib481de92007-09-25 17:54:57 -07002566 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002567
Wey-Yi Guy5bddf542009-08-21 13:34:25 -07002568 if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002569 /* stop mac, cancel any scan request and clear
2570 * RXON_FILTER_ASSOC_MSK BIT
2571 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002572 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002573 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002574 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002575 }
2576
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002577 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002578
2579 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002580
2581 /* enable interrupts again in order to receive rfkill changes */
2582 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2583 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002584
Tomas Winklere1623442009-01-27 14:27:56 -08002585 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002586}
2587
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002588static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002589{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002590 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002591
Tomas Winklere1623442009-01-27 14:27:56 -08002592 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002593
Tomas Winklere1623442009-01-27 14:27:56 -08002594 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002595 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002596
Johannes Berge039fa42008-05-15 12:55:29 +02002597 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002598 dev_kfree_skb_any(skb);
2599
Tomas Winklere1623442009-01-27 14:27:56 -08002600 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002601 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002602}
2603
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07002604void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002605{
Tomas Winkler857485c2008-03-21 13:53:44 -07002606 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002607 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002608
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002609 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002610 return;
2611
2612 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002613 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002614
2615 /* RXON - unassoc (to set timing command) */
2616 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002617 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002618
2619 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002620 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002621 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002622 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002623 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002624 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002625 "Attempting to continue.\n");
2626
Daniel C Halperinf513dff2009-11-13 11:56:34 -08002627 /* AP has all antennas */
2628 priv->chain_noise_data.active_chains =
2629 priv->hw_params.valid_rx_ant;
2630 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002631 if (priv->cfg->ops->hcmd->set_rxon_chain)
2632 priv->cfg->ops->hcmd->set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002633
2634 /* FIXME: what should be the assoc_id for AP? */
2635 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2636 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2637 priv->staging_rxon.flags |=
2638 RXON_FLG_SHORT_PREAMBLE_MSK;
2639 else
2640 priv->staging_rxon.flags &=
2641 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2642
2643 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2644 if (priv->assoc_capability &
2645 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2646 priv->staging_rxon.flags |=
2647 RXON_FLG_SHORT_SLOT_MSK;
2648 else
2649 priv->staging_rxon.flags &=
2650 ~RXON_FLG_SHORT_SLOT_MSK;
2651
Johannes Berg05c914f2008-09-11 00:01:58 +02002652 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002653 priv->staging_rxon.flags &=
2654 ~RXON_FLG_SHORT_SLOT_MSK;
2655 }
2656 /* restore RXON assoc */
2657 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002658 iwlcore_commit_rxon(priv);
Daniel C Halperinf513dff2009-11-13 11:56:34 -08002659 iwl_reset_qos(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002660 spin_lock_irqsave(&priv->lock, flags);
2661 iwl_activate_qos(priv, 1);
2662 spin_unlock_irqrestore(&priv->lock, flags);
Reinette Chatre9a9ca652009-10-30 14:36:12 -07002663 iwl_add_bcast_station(priv);
Zhu Yie1493de2007-09-27 11:27:32 +08002664 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002665 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002666
2667 /* FIXME - we need to add code here to detect a totally new
2668 * configuration, reset the AP, unassoc, rxon timing, assoc,
2669 * clear sta table, add BCAST sta... */
2670}
2671
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002672static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002673 struct ieee80211_key_conf *keyconf, const u8 *addr,
2674 u32 iv32, u16 *phase1key)
2675{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002676
Tomas Winkler9f586712008-11-12 13:14:05 -08002677 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002678 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002679
Tomas Winkler9f586712008-11-12 13:14:05 -08002680 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002681
Tomas Winklere1623442009-01-27 14:27:56 -08002682 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002683}
2684
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002685static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002686 struct ieee80211_vif *vif,
2687 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002688 struct ieee80211_key_conf *key)
2689{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002690 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002691 const u8 *addr;
2692 int ret;
2693 u8 sta_id;
2694 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002695
Tomas Winklere1623442009-01-27 14:27:56 -08002696 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002697
Tomas Winkler90e8e422009-06-19 13:52:42 -07002698 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002699 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002700 return -EOPNOTSUPP;
2701 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002702 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winklerc587de02009-06-03 11:44:07 -07002703 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002704 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002705 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002706 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002707 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002708
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002709 }
Zhu Yib481de92007-09-25 17:54:57 -07002710
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002711 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002712 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002713 mutex_unlock(&priv->mutex);
2714
2715 /* If we are getting WEP group key and we didn't receive any key mapping
2716 * so far, we are in legacy wep mode (group key only), otherwise we are
2717 * in 1X mode.
2718 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002719 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002720 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002721 if (cmd == SET_KEY)
2722 is_default_wep_key = !priv->key_mapping_key;
2723 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002724 is_default_wep_key =
2725 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002726 }
mabbas052c4b92007-10-25 17:15:43 +08002727
Zhu Yib481de92007-09-25 17:54:57 -07002728 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002729 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002730 if (is_default_wep_key)
2731 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002732 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002733 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002734
Tomas Winklere1623442009-01-27 14:27:56 -08002735 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002736 break;
2737 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002738 if (is_default_wep_key)
2739 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002740 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002741 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002742
Tomas Winklere1623442009-01-27 14:27:56 -08002743 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002744 break;
2745 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002746 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002747 }
2748
Tomas Winklere1623442009-01-27 14:27:56 -08002749 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002750
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002751 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002752}
2753
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002754static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01002755 struct ieee80211_vif *vif,
Tomas Winklerd783b062008-07-18 13:53:02 +08002756 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002757 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002758{
2759 struct iwl_priv *priv = hw->priv;
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002760 int ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002761
Tomas Winklere1623442009-01-27 14:27:56 -08002762 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002763 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002764
2765 if (!(priv->cfg->sku & IWL_SKU_N))
2766 return -EACCES;
2767
2768 switch (action) {
2769 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002770 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002771 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002772 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002773 IWL_DEBUG_HT(priv, "stop Rx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002774 ret = iwl_sta_rx_agg_stop(priv, sta->addr, tid);
2775 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2776 return 0;
2777 else
2778 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002779 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002780 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002781 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002782 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002783 IWL_DEBUG_HT(priv, "stop Tx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002784 ret = iwl_tx_agg_stop(priv, sta->addr, tid);
2785 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2786 return 0;
2787 else
2788 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002789 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002790 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002791 return -EINVAL;
2792 break;
2793 }
2794 return 0;
2795}
Tomas Winkler9f586712008-11-12 13:14:05 -08002796
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002797static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002798 struct ieee80211_low_level_stats *stats)
2799{
Ester Kummerbf403db2008-05-05 10:22:40 +08002800 struct iwl_priv *priv = hw->priv;
2801
2802 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002803 IWL_DEBUG_MAC80211(priv, "enter\n");
2804 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002805
2806 return 0;
2807}
2808
Johannes Berg6ab10ff2009-11-13 11:56:37 -08002809static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
2810 struct ieee80211_vif *vif,
2811 enum sta_notify_cmd cmd,
2812 struct ieee80211_sta *sta)
2813{
2814 struct iwl_priv *priv = hw->priv;
2815 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
2816 int sta_id;
2817
2818 /*
2819 * TODO: We really should use this callback to
2820 * actually maintain the station table in
2821 * the device.
2822 */
2823
2824 switch (cmd) {
2825 case STA_NOTIFY_ADD:
2826 atomic_set(&sta_priv->pending_frames, 0);
2827 if (vif->type == NL80211_IFTYPE_AP)
2828 sta_priv->client = true;
2829 break;
2830 case STA_NOTIFY_SLEEP:
2831 WARN_ON(!sta_priv->client);
2832 sta_priv->asleep = true;
2833 if (atomic_read(&sta_priv->pending_frames) > 0)
2834 ieee80211_sta_block_awake(hw, sta, true);
2835 break;
2836 case STA_NOTIFY_AWAKE:
2837 WARN_ON(!sta_priv->client);
2838 sta_priv->asleep = false;
2839 sta_id = iwl_find_station(priv, sta->addr);
2840 if (sta_id != IWL_INVALID_STATION)
2841 iwl_sta_modify_ps_wake(priv, sta_id);
2842 break;
2843 default:
2844 break;
2845 }
2846}
2847
Zhu Yib481de92007-09-25 17:54:57 -07002848/*****************************************************************************
2849 *
2850 * sysfs attributes
2851 *
2852 *****************************************************************************/
2853
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002854#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002855
2856/*
2857 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08002858 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07002859 * used for controlling the debug level.
2860 *
2861 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07002862 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07002863 * The debug_level being managed using sysfs below is a per device debug
2864 * level that is used instead of the global debug level if it (the per
2865 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07002866 */
Ester Kummer8cf769c2008-05-06 11:05:11 +08002867static ssize_t show_debug_level(struct device *d,
2868 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07002869{
Reinette Chatre3d816c72009-08-07 15:41:37 -07002870 struct iwl_priv *priv = dev_get_drvdata(d);
2871 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07002872}
Ester Kummer8cf769c2008-05-06 11:05:11 +08002873static ssize_t store_debug_level(struct device *d,
2874 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07002875 const char *buf, size_t count)
2876{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002877 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08002878 unsigned long val;
2879 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002880
Tomas Winkler9257746f2008-09-03 11:26:32 +08002881 ret = strict_strtoul(buf, 0, &val);
2882 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002883 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07002884 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07002885 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07002886 if (iwl_alloc_traffic_mem(priv))
2887 IWL_ERR(priv,
2888 "Not enough memory to generate traffic log\n");
2889 }
Zhu Yib481de92007-09-25 17:54:57 -07002890 return strnlen(buf, count);
2891}
2892
Ester Kummer8cf769c2008-05-06 11:05:11 +08002893static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
2894 show_debug_level, store_debug_level);
2895
Zhu Yib481de92007-09-25 17:54:57 -07002896
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002897#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07002898
Zhu Yib481de92007-09-25 17:54:57 -07002899
2900static ssize_t show_temperature(struct device *d,
2901 struct device_attribute *attr, char *buf)
2902{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002903 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07002904
Tomas Winklerfee12472008-04-03 16:05:21 -07002905 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002906 return -EAGAIN;
2907
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08002908 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07002909}
2910
2911static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
2912
Zhu Yib481de92007-09-25 17:54:57 -07002913static ssize_t show_tx_power(struct device *d,
2914 struct device_attribute *attr, char *buf)
2915{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002916 struct iwl_priv *priv = dev_get_drvdata(d);
Jay Sternberg91f39e82008-12-17 16:52:34 +08002917
2918 if (!iwl_is_ready_rf(priv))
2919 return sprintf(buf, "off\n");
2920 else
2921 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07002922}
2923
2924static ssize_t store_tx_power(struct device *d,
2925 struct device_attribute *attr,
2926 const char *buf, size_t count)
2927{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002928 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08002929 unsigned long val;
2930 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002931
Tomas Winkler9257746f2008-09-03 11:26:32 +08002932 ret = strict_strtoul(buf, 10, &val);
2933 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002934 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Wey-Yi Guy5eadd942009-08-21 13:34:17 -07002935 else {
2936 ret = iwl_set_tx_power(priv, val, false);
2937 if (ret)
2938 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
2939 ret);
2940 else
2941 ret = count;
2942 }
2943 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002944}
2945
2946static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
2947
2948static ssize_t show_flags(struct device *d,
2949 struct device_attribute *attr, char *buf)
2950{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002951 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07002952
2953 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
2954}
2955
2956static ssize_t store_flags(struct device *d,
2957 struct device_attribute *attr,
2958 const char *buf, size_t count)
2959{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002960 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08002961 unsigned long val;
2962 u32 flags;
2963 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002964 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002965 return ret;
2966 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07002967
2968 mutex_lock(&priv->mutex);
2969 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
2970 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002971 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002972 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002973 else {
Tomas Winklere1623442009-01-27 14:27:56 -08002974 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07002975 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002976 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002977 }
2978 }
2979 mutex_unlock(&priv->mutex);
2980
2981 return count;
2982}
2983
2984static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
2985
2986static ssize_t show_filter_flags(struct device *d,
2987 struct device_attribute *attr, char *buf)
2988{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002989 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07002990
2991 return sprintf(buf, "0x%04X\n",
2992 le32_to_cpu(priv->active_rxon.filter_flags));
2993}
2994
2995static ssize_t store_filter_flags(struct device *d,
2996 struct device_attribute *attr,
2997 const char *buf, size_t count)
2998{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07002999 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08003000 unsigned long val;
3001 u32 filter_flags;
3002 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003003 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003004 return ret;
3005 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003006
3007 mutex_lock(&priv->mutex);
3008 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3009 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003010 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003011 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003012 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003013 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003014 "0x%04X\n", filter_flags);
3015 priv->staging_rxon.filter_flags =
3016 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003017 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003018 }
3019 }
3020 mutex_unlock(&priv->mutex);
3021
3022 return count;
3023}
3024
3025static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3026 store_filter_flags);
3027
Zhu Yib481de92007-09-25 17:54:57 -07003028
3029static ssize_t show_statistics(struct device *d,
3030 struct device_attribute *attr, char *buf)
3031{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003032 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003033 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003034 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003035 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003036 int rc = 0;
3037
Tomas Winklerfee12472008-04-03 16:05:21 -07003038 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003039 return -EAGAIN;
3040
3041 mutex_lock(&priv->mutex);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08003042 rc = iwl_send_statistics_request(priv, CMD_SYNC, false);
Zhu Yib481de92007-09-25 17:54:57 -07003043 mutex_unlock(&priv->mutex);
3044
3045 if (rc) {
3046 len = sprintf(buf,
3047 "Error sending statistics request: 0x%08X\n", rc);
3048 return len;
3049 }
3050
3051 while (size && (PAGE_SIZE - len)) {
3052 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3053 PAGE_SIZE - len, 1);
3054 len = strlen(buf);
3055 if (PAGE_SIZE - len)
3056 buf[len++] = '\n';
3057
3058 ofs += 16;
3059 size -= min(size, 16U);
3060 }
3061
3062 return len;
3063}
3064
3065static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3066
Wey-Yi Guy01abfbb2009-09-17 10:43:45 -07003067static ssize_t show_rts_ht_protection(struct device *d,
3068 struct device_attribute *attr, char *buf)
3069{
3070 struct iwl_priv *priv = dev_get_drvdata(d);
3071
3072 return sprintf(buf, "%s\n",
3073 priv->cfg->use_rts_for_ht ? "RTS/CTS" : "CTS-to-self");
3074}
3075
3076static ssize_t store_rts_ht_protection(struct device *d,
3077 struct device_attribute *attr,
3078 const char *buf, size_t count)
3079{
3080 struct iwl_priv *priv = dev_get_drvdata(d);
3081 unsigned long val;
3082 int ret;
3083
3084 ret = strict_strtoul(buf, 10, &val);
3085 if (ret)
3086 IWL_INFO(priv, "Input is not in decimal form.\n");
3087 else {
3088 if (!iwl_is_associated(priv))
3089 priv->cfg->use_rts_for_ht = val ? true : false;
3090 else
3091 IWL_ERR(priv, "Sta associated with AP - "
3092 "Change protection mechanism is not allowed\n");
3093 ret = count;
3094 }
3095 return ret;
3096}
3097
3098static DEVICE_ATTR(rts_ht_protection, S_IWUSR | S_IRUGO,
3099 show_rts_ht_protection, store_rts_ht_protection);
3100
Zhu Yib481de92007-09-25 17:54:57 -07003101
Zhu Yib481de92007-09-25 17:54:57 -07003102/*****************************************************************************
3103 *
3104 * driver setup and teardown
3105 *
3106 *****************************************************************************/
3107
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003108static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003109{
Reinette Chatred21050c2009-02-13 11:51:18 -08003110 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003111
3112 init_waitqueue_head(&priv->wait_command_queue);
3113
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003114 INIT_WORK(&priv->up, iwl_bg_up);
3115 INIT_WORK(&priv->restart, iwl_bg_restart);
3116 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003117 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003118 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003119 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3120 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003121
Tomas Winkler2a421b92008-06-12 09:47:10 +08003122 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003123
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003124 if (priv->cfg->ops->lib->setup_deferred_work)
3125 priv->cfg->ops->lib->setup_deferred_work(priv);
3126
3127 init_timer(&priv->statistics_periodic);
3128 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003129 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003130
Mohamed Abbasef850d72009-05-22 11:01:50 -07003131 if (!priv->cfg->use_isr_legacy)
3132 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3133 iwl_irq_tasklet, (unsigned long)priv);
3134 else
3135 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3136 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003137}
3138
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003139static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003140{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003141 if (priv->cfg->ops->lib->cancel_deferred_work)
3142 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003143
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003144 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003145 cancel_delayed_work(&priv->scan_check);
3146 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003147 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003148 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003149}
3150
Reinette Chatre89f186a2009-10-30 14:36:11 -07003151static void iwl_init_hw_rates(struct iwl_priv *priv,
3152 struct ieee80211_rate *rates)
3153{
3154 int i;
3155
3156 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
3157 rates[i].bitrate = iwl_rates[i].ieee * 5;
3158 rates[i].hw_value = i; /* Rate scaling will work on indexes */
3159 rates[i].hw_value_short = i;
3160 rates[i].flags = 0;
3161 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
3162 /*
3163 * If CCK != 1M then set short preamble rate flag.
3164 */
3165 rates[i].flags |=
3166 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
3167 0 : IEEE80211_RATE_SHORT_PREAMBLE;
3168 }
3169 }
3170}
3171
3172static int iwl_init_drv(struct iwl_priv *priv)
3173{
3174 int ret;
3175
3176 priv->ibss_beacon = NULL;
3177
3178 spin_lock_init(&priv->lock);
3179 spin_lock_init(&priv->sta_lock);
3180 spin_lock_init(&priv->hcmd_lock);
3181
3182 INIT_LIST_HEAD(&priv->free_frames);
3183
3184 mutex_init(&priv->mutex);
3185
3186 /* Clear the driver's (not device's) station table */
3187 iwl_clear_stations_table(priv);
3188
3189 priv->ieee_channels = NULL;
3190 priv->ieee_rates = NULL;
3191 priv->band = IEEE80211_BAND_2GHZ;
3192
3193 priv->iw_mode = NL80211_IFTYPE_STATION;
3194
3195 /* Choose which receivers/antennas to use */
3196 if (priv->cfg->ops->hcmd->set_rxon_chain)
3197 priv->cfg->ops->hcmd->set_rxon_chain(priv);
3198
3199 iwl_init_scan_params(priv);
3200
3201 iwl_reset_qos(priv);
3202
3203 priv->qos_data.qos_active = 0;
3204 priv->qos_data.qos_cap.val = 0;
3205
3206 priv->rates_mask = IWL_RATES_MASK;
3207 /* Set the tx_power_user_lmt to the lowest power level
3208 * this value will get overwritten by channel max power avg
3209 * from eeprom */
3210 priv->tx_power_user_lmt = IWL_TX_POWER_TARGET_POWER_MIN;
3211
3212 ret = iwl_init_channel_map(priv);
3213 if (ret) {
3214 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3215 goto err;
3216 }
3217
3218 ret = iwlcore_init_geos(priv);
3219 if (ret) {
3220 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3221 goto err_free_channel_map;
3222 }
3223 iwl_init_hw_rates(priv, priv->ieee_rates);
3224
3225 return 0;
3226
3227err_free_channel_map:
3228 iwl_free_channel_map(priv);
3229err:
3230 return ret;
3231}
3232
3233static void iwl_uninit_drv(struct iwl_priv *priv)
3234{
3235 iwl_calib_free_results(priv);
3236 iwlcore_free_geos(priv);
3237 iwl_free_channel_map(priv);
3238 kfree(priv->scan);
3239}
3240
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003241static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003242 &dev_attr_flags.attr,
3243 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003244 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003245 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003246 &dev_attr_tx_power.attr,
Wey-Yi Guy01abfbb2009-09-17 10:43:45 -07003247 &dev_attr_rts_ht_protection.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003248#ifdef CONFIG_IWLWIFI_DEBUG
3249 &dev_attr_debug_level.attr,
3250#endif
Zhu Yib481de92007-09-25 17:54:57 -07003251 NULL
3252};
3253
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003254static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003255 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003256 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003257};
3258
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003259static struct ieee80211_ops iwl_hw_ops = {
3260 .tx = iwl_mac_tx,
3261 .start = iwl_mac_start,
3262 .stop = iwl_mac_stop,
3263 .add_interface = iwl_mac_add_interface,
3264 .remove_interface = iwl_mac_remove_interface,
3265 .config = iwl_mac_config,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003266 .configure_filter = iwl_configure_filter,
3267 .set_key = iwl_mac_set_key,
3268 .update_tkip_key = iwl_mac_update_tkip_key,
3269 .get_stats = iwl_mac_get_stats,
3270 .get_tx_stats = iwl_mac_get_tx_stats,
3271 .conf_tx = iwl_mac_conf_tx,
3272 .reset_tsf = iwl_mac_reset_tsf,
3273 .bss_info_changed = iwl_bss_info_changed,
3274 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003275 .hw_scan = iwl_mac_hw_scan,
3276 .sta_notify = iwl_mac_sta_notify,
Zhu Yib481de92007-09-25 17:54:57 -07003277};
3278
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003279static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003280{
3281 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003282 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003283 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003284 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003285 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003286 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003287
Assaf Krauss316c30d2008-03-14 10:38:46 -07003288 /************************
3289 * 1. Allocating HW data
3290 ************************/
3291
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003292 /* Disabling hardware scan means that mac80211 will perform scans
3293 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003294 if (cfg->mod_params->disable_hw_scan) {
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003295 if (iwl_debug_level & IWL_DL_INFO)
Ester Kummerbf403db2008-05-05 10:22:40 +08003296 dev_printk(KERN_DEBUG, &(pdev->dev),
3297 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003298 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003299 }
3300
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003301 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003302 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003303 err = -ENOMEM;
3304 goto out;
3305 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003306 priv = hw->priv;
3307 /* At this point both hw and priv are allocated. */
3308
Zhu Yib481de92007-09-25 17:54:57 -07003309 SET_IEEE80211_DEV(hw, &pdev->dev);
3310
Tomas Winklere1623442009-01-27 14:27:56 -08003311 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003312 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003313 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003314 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003315
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003316#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003317 atomic_set(&priv->restrict_refcnt, 0);
3318#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003319 if (iwl_alloc_traffic_mem(priv))
3320 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003321
Assaf Krauss316c30d2008-03-14 10:38:46 -07003322 /**************************
3323 * 2. Initializing PCI bus
3324 **************************/
3325 if (pci_enable_device(pdev)) {
3326 err = -ENODEV;
3327 goto out_ieee80211_free_hw;
3328 }
3329
3330 pci_set_master(pdev);
3331
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003332 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003333 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003334 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003335 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003336 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003337 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003338 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003339 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003340 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003341 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003342 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003343 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003344 }
3345
3346 err = pci_request_regions(pdev, DRV_NAME);
3347 if (err)
3348 goto out_pci_disable_device;
3349
3350 pci_set_drvdata(pdev, priv);
3351
Assaf Krauss316c30d2008-03-14 10:38:46 -07003352
3353 /***********************
3354 * 3. Read REV register
3355 ***********************/
3356 priv->hw_base = pci_iomap(pdev, 0, 0);
3357 if (!priv->hw_base) {
3358 err = -ENODEV;
3359 goto out_pci_release_regions;
3360 }
3361
Tomas Winklere1623442009-01-27 14:27:56 -08003362 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003363 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003364 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003365
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003366 /* this spin lock will be used in apm_ops.init and EEPROM access
3367 * we should init now
3368 */
3369 spin_lock_init(&priv->reg_lock);
Tomas Winklerb661c812008-04-23 17:14:54 -07003370 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003371 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003372 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003373
Tomas Winklere7b63582008-09-03 11:26:49 +08003374 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3375 * PCI Tx retries from interfering with C3 CPU state */
3376 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3377
Mohamed Abbas086ed112009-05-22 11:01:54 -07003378 iwl_prepare_card_hw(priv);
3379 if (!priv->hw_ready) {
3380 IWL_WARN(priv, "Failed, HW not ready\n");
3381 goto out_iounmap;
3382 }
3383
Assaf Krauss316c30d2008-03-14 10:38:46 -07003384 /*****************
3385 * 4. Read EEPROM
3386 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003387 /* Read the EEPROM */
3388 err = iwl_eeprom_init(priv);
3389 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003390 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003391 goto out_iounmap;
3392 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003393 err = iwl_eeprom_check_version(priv);
3394 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08003395 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07003396
Ron Rindjunsky02883012008-05-15 13:53:53 +08003397 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003398 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003399 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003400 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3401
3402 /************************
3403 * 5. Setup HW constants
3404 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003405 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003406 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003407 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003408 }
3409
3410 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003411 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003412 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003413
Tomas Winkler6ba87952008-05-15 13:54:17 +08003414 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003415 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003416 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003417 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003418
Assaf Krauss316c30d2008-03-14 10:38:46 -07003419 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07003420 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07003421 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003422 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003423 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003424 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003425
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003426 pci_enable_msi(priv->pci_dev);
3427
Mohamed Abbasef850d72009-05-22 11:01:50 -07003428 iwl_alloc_isr_ict(priv);
3429 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
3430 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003431 if (err) {
3432 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3433 goto out_disable_msi;
3434 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003435 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003436 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003437 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003438 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003439 }
3440
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003441 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003442 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003443
Tomas Winkler6ba87952008-05-15 13:54:17 +08003444 /**********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07003445 * 8. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003446 **********************************/
3447
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003448 /* enable interrupts if needed: hw bug w/a */
3449 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3450 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3451 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3452 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3453 }
3454
3455 iwl_enable_interrupts(priv);
3456
Tomas Winkler6ba87952008-05-15 13:54:17 +08003457 err = iwl_setup_mac(priv);
3458 if (err)
3459 goto out_remove_sysfs;
3460
3461 err = iwl_dbgfs_register(priv, DRV_NAME);
3462 if (err)
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07003463 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003464
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003465 /* If platform's RF_KILL switch is NOT set to KILL */
3466 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3467 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3468 else
3469 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003470
Johannes Berga60e77e2009-06-04 18:26:06 +02003471 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
3472 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003473
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003474 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07003475 iwl_tt_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003476 return 0;
3477
Assaf Krauss316c30d2008-03-14 10:38:46 -07003478 out_remove_sysfs:
Reinette Chatrec8f16132009-02-27 16:21:22 -08003479 destroy_workqueue(priv->workqueue);
3480 priv->workqueue = NULL;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003481 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003482 out_free_irq:
3483 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07003484 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003485 out_disable_msi:
3486 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003487 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003488 out_free_eeprom:
3489 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003490 out_iounmap:
3491 pci_iounmap(pdev, priv->hw_base);
3492 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07003493 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08003494 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003495 out_pci_disable_device:
3496 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003497 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003498 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07003499 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003500 out:
3501 return err;
3502}
3503
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003504static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003505{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003506 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003507 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003508
3509 if (!priv)
3510 return;
3511
Tomas Winklere1623442009-01-27 14:27:56 -08003512 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003513
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003514 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003515 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003516
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003517 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3518 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003519 * we need to set STATUS_EXIT_PENDING bit.
3520 */
3521 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003522 if (priv->mac80211_registered) {
3523 ieee80211_unregister_hw(priv->hw);
3524 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003525 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003526 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003527 }
3528
Ben Cahillc166b252009-10-23 13:42:35 -07003529 /*
3530 * Make sure device is reset to low power before unloading driver.
3531 * This may be redundant with iwl_down(), but there are paths to
3532 * run iwl_down() without calling apm_ops.stop(), and there are
3533 * paths to avoid running iwl_down() at all before leaving driver.
3534 * This (inexpensive) call *makes sure* device is reset.
3535 */
3536 priv->cfg->ops->lib->apm_ops.stop(priv);
3537
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07003538 iwl_tt_exit(priv);
3539
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003540 /* make sure we flush any pending irq or
3541 * tasklet for the driver
3542 */
3543 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003544 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003545 spin_unlock_irqrestore(&priv->lock, flags);
3546
3547 iwl_synchronize_irq(priv);
3548
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003549 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003550
3551 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003552 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003553 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003554
Tomas Winklerc587de02009-06-03 11:44:07 -07003555 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003556 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003557
Zhu Yib481de92007-09-25 17:54:57 -07003558
Mohamed Abbas948c1712007-10-25 17:15:45 +08003559 /*netif_stop_queue(dev); */
3560 flush_workqueue(priv->workqueue);
3561
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003562 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003563 * priv->workqueue... so we can't take down the workqueue
3564 * until now... */
3565 destroy_workqueue(priv->workqueue);
3566 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003567 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003568
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003569 free_irq(priv->pci_dev->irq, priv);
3570 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003571 pci_iounmap(pdev, priv->hw_base);
3572 pci_release_regions(pdev);
3573 pci_disable_device(pdev);
3574 pci_set_drvdata(pdev, NULL);
3575
Tomas Winkler6ba87952008-05-15 13:54:17 +08003576 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003577
Mohamed Abbasef850d72009-05-22 11:01:50 -07003578 iwl_free_isr_ict(priv);
3579
Zhu Yib481de92007-09-25 17:54:57 -07003580 if (priv->ibss_beacon)
3581 dev_kfree_skb(priv->ibss_beacon);
3582
3583 ieee80211_free_hw(priv->hw);
3584}
3585
Zhu Yib481de92007-09-25 17:54:57 -07003586
3587/*****************************************************************************
3588 *
3589 * driver and module entry point
3590 *
3591 *****************************************************************************/
3592
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003593/* Hardware specific file defines the PCI IDs table for that hardware module */
3594static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003595#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003596 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3597 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003598#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003599#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08003600/* 5100 Series WiFi */
3601 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
3602 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
3603 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
3604 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
3605 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
3606 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
3607 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
3608 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
3609 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
3610 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
3611 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
3612 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
3613 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
3614 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
3615 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
3616 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
3617 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
3618 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
3619 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
3620 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
3621 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
3622 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
3623 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
3624 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
3625
3626/* 5300 Series WiFi */
3627 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
3628 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
3629 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
3630 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
3631 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
3632 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
3633 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
3634 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
3635 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
3636 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
3637 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
3638 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
3639
3640/* 5350 Series WiFi/WiMax */
3641 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
3642 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
3643 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
3644
3645/* 5150 Series Wifi/WiMax */
3646 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
3647 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
3648 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
3649 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
3650 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
3651 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
3652
3653 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
3654 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
3655 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
3656 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003657
3658/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003659 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
3660 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
3661 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
3662 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
3663 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
3664 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
3665 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
3666 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
3667 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
3668 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
3669
3670/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003671 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
3672 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
3673 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
3674 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07003675 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
3676 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
3677
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08003678/* 1000 Series WiFi */
Wey-Yi Guy4bd0914f2009-09-17 10:43:52 -07003679 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
3680 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
3681 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
3682 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
3683 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
3684 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
3685 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
3686 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
3687 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
3688 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
3689 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
3690 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003691#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003692
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003693 {0}
3694};
3695MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3696
3697static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003698 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003699 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003700 .probe = iwl_pci_probe,
3701 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003702#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003703 .suspend = iwl_pci_suspend,
3704 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003705#endif
3706};
3707
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003708static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003709{
3710
3711 int ret;
3712 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3713 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003714
Tomas Winklere227cea2008-07-18 13:53:05 +08003715 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003716 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003717 printk(KERN_ERR DRV_NAME
3718 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003719 return ret;
3720 }
3721
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003722 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003723 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003724 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003725 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003726 }
Zhu Yib481de92007-09-25 17:54:57 -07003727
3728 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003729
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003730error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003731 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003732 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003733}
3734
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003735static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003736{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003737 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003738 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003739}
3740
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003741module_exit(iwl_exit);
3742module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003743
3744#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07003745module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003746MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07003747module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003748MODULE_PARM_DESC(debug, "debug output mask");
3749#endif
3750