blob: 50ef649b1c97b6486b5573abea4a4266fe1e714f [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>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
Zhu Yib481de92007-09-25 17:54:57 -070043#include <net/mac80211.h>
44
45#include <asm/div64.h>
46
Samuel Ortiza3139c52008-12-19 10:37:09 +080047#define DRV_NAME "iwlagn"
48
Assaf Krauss6bc913b2008-03-11 16:17:18 -070049#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070050#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070051#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070052#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070053#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070054#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070055#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070056
Christoph Hellwig416e1432007-10-25 17:15:49 +080057
Zhu Yib481de92007-09-25 17:54:57 -070058/******************************************************************************
59 *
60 * module boiler plate
61 *
62 ******************************************************************************/
63
Zhu Yib481de92007-09-25 17:54:57 -070064/*
65 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070066 */
Tomas Winklerd783b062008-07-18 13:53:02 +080067#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070068
Tomas Winkler0a6857e2008-03-12 16:58:49 -070069#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Reinette Chatre80bc5392009-02-13 11:51:19 -080075#ifdef CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070076#define VS "s"
77#else
78#define VS
79#endif
80
Tomas Winklerdf48c322008-03-06 10:40:19 -080081#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070082
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080086MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070087MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030088MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070089
Zhu Yib481de92007-09-25 17:54:57 -070090/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080091 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -070092 * the functionality provided here
93 */
94
95/**************************************************************/
96
Zhu Yib481de92007-09-25 17:54:57 -070097/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -070098 * iwl_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -070099 *
Ian Schram01ebd062007-10-25 17:15:22 +0800100 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700101 * the active_rxon structure is updated with the new data. This
102 * function correctly transitions out of the RXON_ASSOC_MSK state if
103 * a HW tune is required based on the RXON structure changes.
104 */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700105int iwl_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700106{
107 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800108 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800109 int ret;
110 bool new_assoc =
111 !!(priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700112
Tomas Winklerfee12472008-04-03 16:05:21 -0700113 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800114 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700115
116 /* always get timestamp with Rx frame */
117 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800118 /* allow CTS-to-self if possible. this is relevant only for
119 * 5000, but will not damage 4965 */
120 priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
Zhu Yib481de92007-09-25 17:54:57 -0700121
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800122 ret = iwl_check_rxon_cmd(priv);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800123 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800124 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700125 return -EINVAL;
126 }
127
128 /* If we don't need to send a full RXON, we can use
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700129 * iwl_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700130 * and other flags for the current radio configuration. */
Mohamed Abbas54559702008-09-03 11:18:44 +0800131 if (!iwl_full_rxon_required(priv)) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800132 ret = iwl_send_rxon_assoc(priv);
133 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800134 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800135 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700136 }
137
138 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700139 return 0;
140 }
141
142 /* station table will be cleared */
143 priv->assoc_station_added = 0;
144
Zhu Yib481de92007-09-25 17:54:57 -0700145 /* If we are currently associated and the new config requires
146 * an RXON_ASSOC and the new config wants the associated mask enabled,
147 * we must clear the associated from the active configuration
148 * before we apply the new config */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800149 if (iwl_is_associated(priv) && new_assoc) {
Tomas Winklere1623442009-01-27 14:27:56 -0800150 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700151 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
152
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800153 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800154 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700155 &priv->active_rxon);
156
157 /* If the mask clearing failed then we set
158 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800159 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700160 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800161 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800162 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700163 }
Zhu Yib481de92007-09-25 17:54:57 -0700164 }
165
Tomas Winklere1623442009-01-27 14:27:56 -0800166 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700167 "* with%s RXON_FILTER_ASSOC_MSK\n"
168 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700169 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800170 (new_assoc ? "" : "out"),
Zhu Yib481de92007-09-25 17:54:57 -0700171 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700172 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700173
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700174 iwl_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800175
176 /* Apply the new configuration
177 * RXON unassoc clears the station table in uCode, send it before
178 * we add the bcast station. If assoc bit is set, we will send RXON
179 * after having added the bcast and bssid station.
180 */
181 if (!new_assoc) {
182 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800183 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800184 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800185 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800186 return ret;
187 }
188 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700189 }
190
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800191 iwl_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800192
Zhu Yib481de92007-09-25 17:54:57 -0700193 if (!priv->error_recovering)
194 priv->start_calib = 0;
195
Zhu Yib481de92007-09-25 17:54:57 -0700196 /* Add the broadcast address so we can send broadcast frames */
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800197 if (iwl_rxon_add_station(priv, iwl_bcast_addr, 0) ==
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800198 IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800199 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700200 return -EIO;
201 }
202
203 /* If we have set the ASSOC_MSK and we are in BSS mode then
204 * add the IWL_AP_ID to the station rate table */
Tomas Winkler91851592008-06-30 17:23:14 +0800205 if (new_assoc) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200206 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler91851592008-06-30 17:23:14 +0800207 ret = iwl_rxon_add_station(priv,
208 priv->active_rxon.bssid_addr, 1);
209 if (ret == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800210 IWL_ERR(priv,
211 "Error adding AP address for TX.\n");
Tomas Winkler91851592008-06-30 17:23:14 +0800212 return -EIO;
213 }
214 priv->assoc_station_added = 1;
215 if (priv->default_wep_key &&
216 iwl_send_static_wepkey_cmd(priv, 0))
Winkler, Tomas15b16872008-12-19 10:37:33 +0800217 IWL_ERR(priv,
218 "Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700219 }
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800220
221 /* Apply the new configuration
222 * RXON assoc doesn't clear the station table in uCode,
223 */
224 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
225 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
226 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800227 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800228 return ret;
229 }
230 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700231 }
232
Zhu Yi36da7d72008-07-11 11:53:40 +0800233 iwl_init_sensitivity(priv);
234
235 /* If we issue a new RXON command which required a tune then we must
236 * send a new TXPOWER command or we won't be able to Tx any frames */
237 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
238 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800239 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800240 return ret;
241 }
242
Zhu Yib481de92007-09-25 17:54:57 -0700243 return 0;
244}
245
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700246void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700247{
248
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700249 iwl_set_rxon_chain(priv);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700250 iwlcore_commit_rxon(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700251}
252
Tomas Winklerfcab4232008-05-15 13:54:01 +0800253static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700254{
255 struct list_head *element;
256
Tomas Winklere1623442009-01-27 14:27:56 -0800257 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700258 priv->frames_count);
259
260 while (!list_empty(&priv->free_frames)) {
261 element = priv->free_frames.next;
262 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800263 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700264 priv->frames_count--;
265 }
266
267 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800268 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700269 priv->frames_count);
270 priv->frames_count = 0;
271 }
272}
273
Tomas Winklerfcab4232008-05-15 13:54:01 +0800274static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700275{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800276 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700277 struct list_head *element;
278 if (list_empty(&priv->free_frames)) {
279 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
280 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800281 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700282 return NULL;
283 }
284
285 priv->frames_count++;
286 return frame;
287 }
288
289 element = priv->free_frames.next;
290 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800291 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700292}
293
Tomas Winklerfcab4232008-05-15 13:54:01 +0800294static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700295{
296 memset(frame, 0, sizeof(*frame));
297 list_add(&frame->list, &priv->free_frames);
298}
299
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800300static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv,
301 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200302 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700303{
Tomas Winkler3109ece2008-03-28 16:33:35 -0700304 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200305 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
306 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700307 return 0;
308
309 if (priv->ibss_beacon->len > left)
310 return 0;
311
312 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
313
314 return priv->ibss_beacon->len;
315}
316
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700317static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800318 struct iwl_frame *frame, u8 rate)
319{
320 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
321 unsigned int frame_size;
322
323 tx_beacon_cmd = &frame->u.beacon;
324 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
325
326 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
327 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
328
329 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800330 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
331
332 BUG_ON(frame_size > MAX_MPDU_SIZE);
333 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
334
335 if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
336 tx_beacon_cmd->tx.rate_n_flags =
337 iwl_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
338 else
339 tx_beacon_cmd->tx.rate_n_flags =
340 iwl_hw_set_rate_n_flags(rate, 0);
341
342 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
343 TX_CMD_FLG_TSF_MSK |
344 TX_CMD_FLG_STA_RATE_MSK;
345
346 return sizeof(*tx_beacon_cmd) + frame_size;
347}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700348static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700349{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800350 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700351 unsigned int frame_size;
352 int rc;
353 u8 rate;
354
Tomas Winklerfcab4232008-05-15 13:54:01 +0800355 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700356
357 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800358 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700359 "command.\n");
360 return -ENOMEM;
361 }
362
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700363 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700364
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700365 frame_size = iwl_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700366
Tomas Winkler857485c2008-03-21 13:53:44 -0700367 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700368 &frame->u.cmd[0]);
369
Tomas Winklerfcab4232008-05-15 13:54:01 +0800370 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700371
372 return rc;
373}
374
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800375static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
376{
377 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
378
379 dma_addr_t addr = get_unaligned_le32(&tb->lo);
380 if (sizeof(dma_addr_t) > sizeof(u32))
381 addr |=
382 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
383
384 return addr;
385}
386
387static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
388{
389 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
390
391 return le16_to_cpu(tb->hi_n_len) >> 4;
392}
393
394static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
395 dma_addr_t addr, u16 len)
396{
397 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
398 u16 hi_n_len = len << 4;
399
400 put_unaligned_le32(addr, &tb->lo);
401 if (sizeof(dma_addr_t) > sizeof(u32))
402 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
403
404 tb->hi_n_len = cpu_to_le16(hi_n_len);
405
406 tfd->num_tbs = idx + 1;
407}
408
409static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
410{
411 return tfd->num_tbs & 0x1f;
412}
413
414/**
415 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
416 * @priv - driver private data
417 * @txq - tx queue
418 *
419 * Does NOT advance any TFD circular buffer read/write indexes
420 * Does NOT free the TFD itself (which is within circular buffer)
421 */
422void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
423{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800424 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800425 struct iwl_tfd *tfd;
426 struct pci_dev *dev = priv->pci_dev;
427 int index = txq->q.read_ptr;
428 int i;
429 int num_tbs;
430
431 tfd = &tfd_tmp[index];
432
433 /* Sanity check on number of chunks */
434 num_tbs = iwl_tfd_get_num_tbs(tfd);
435
436 if (num_tbs >= IWL_NUM_OF_TBS) {
437 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
438 /* @todo issue fatal error, it is quite serious situation */
439 return;
440 }
441
442 /* Unmap tx_cmd */
443 if (num_tbs)
444 pci_unmap_single(dev,
445 pci_unmap_addr(&txq->cmd[index]->meta, mapping),
446 pci_unmap_len(&txq->cmd[index]->meta, len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800447 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800448
449 /* Unmap chunks, if any. */
450 for (i = 1; i < num_tbs; i++) {
451 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
452 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
453
454 if (txq->txb) {
455 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
456 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
457 }
458 }
459}
460
461int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
462 struct iwl_tx_queue *txq,
463 dma_addr_t addr, u16 len,
464 u8 reset, u8 pad)
465{
466 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800467 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800468 u32 num_tbs;
469
470 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800471 tfd_tmp = (struct iwl_tfd *)txq->tfds;
472 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800473
474 if (reset)
475 memset(tfd, 0, sizeof(*tfd));
476
477 num_tbs = iwl_tfd_get_num_tbs(tfd);
478
479 /* Each TFD can point to a maximum 20 Tx buffers */
480 if (num_tbs >= IWL_NUM_OF_TBS) {
481 IWL_ERR(priv, "Error can not send more than %d chunks\n",
482 IWL_NUM_OF_TBS);
483 return -EINVAL;
484 }
485
486 BUG_ON(addr & ~DMA_BIT_MASK(36));
487 if (unlikely(addr & ~IWL_TX_DMA_MASK))
488 IWL_ERR(priv, "Unaligned address = %llx\n",
489 (unsigned long long)addr);
490
491 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
492
493 return 0;
494}
495
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800496/*
497 * Tell nic where to find circular buffer of Tx Frame Descriptors for
498 * given Tx queue, and enable the DMA channel used for that queue.
499 *
500 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
501 * channels supported in hardware.
502 */
503int iwl_hw_tx_queue_init(struct iwl_priv *priv,
504 struct iwl_tx_queue *txq)
505{
506 int ret;
507 unsigned long flags;
508 int txq_id = txq->q.id;
509
510 spin_lock_irqsave(&priv->lock, flags);
511 ret = iwl_grab_nic_access(priv);
512 if (ret) {
513 spin_unlock_irqrestore(&priv->lock, flags);
514 return ret;
515 }
516
517 /* Circular buffer (TFD queue in DRAM) physical base address */
518 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
519 txq->q.dma_addr >> 8);
520
521 iwl_release_nic_access(priv);
522 spin_unlock_irqrestore(&priv->lock, flags);
523
524 return 0;
525}
526
527
Zhu Yib481de92007-09-25 17:54:57 -0700528/******************************************************************************
529 *
Zhu Yib481de92007-09-25 17:54:57 -0700530 * Misc. internal state and helper functions
531 *
532 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -0700533
Zhu Yib481de92007-09-25 17:54:57 -0700534#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700535
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800536static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700537{
538 u16 new_val = 0;
539 u16 beacon_factor = 0;
540
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800541 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
542 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700543 new_val = beacon_val / beacon_factor;
544
John W. Linville41d2f292009-02-20 19:03:31 -0500545 if (!new_val)
546 new_val = MAX_UCODE_BEACON_INTERVAL;
547
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800548 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700549}
550
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800551static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700552{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800553 u64 tsf;
554 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700555 unsigned long flags;
556 struct ieee80211_conf *conf = NULL;
557 u16 beacon_int = 0;
558
559 conf = ieee80211_get_hw_conf(priv->hw);
560
561 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800562 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300563 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700564
Johannes Berg05c914f2008-09-11 00:01:58 +0200565 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800566 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700567 priv->rxon_timing.atim_window = 0;
568 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800569 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
570
Zhu Yib481de92007-09-25 17:54:57 -0700571 /* TODO: we need to get atim_window from upper stack
572 * for now we set to 0 */
573 priv->rxon_timing.atim_window = 0;
574 }
575
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800576 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700577
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800578 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
579 interval_tm = beacon_int * 1024;
580 rem = do_div(tsf, interval_tm);
581 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
582
583 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklere1623442009-01-27 14:27:56 -0800584 IWL_DEBUG_ASSOC(priv, "beacon interval %d beacon timer %d beacon tim %d\n",
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800585 le16_to_cpu(priv->rxon_timing.beacon_interval),
586 le32_to_cpu(priv->rxon_timing.beacon_init_val),
587 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700588}
589
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700590static int iwl_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700591{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700592 iwl_connection_init_rx_config(priv, mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800593 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700594 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
595
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800596 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700597
Mohamed Abbasfde35712007-11-29 11:10:15 +0800598 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700599 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800600 return -EAGAIN;
601
602 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800603 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800604 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800605 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800606 return -EAGAIN;
607 }
608
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700609 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700610
611 return 0;
612}
613
Zhu Yib481de92007-09-25 17:54:57 -0700614/******************************************************************************
615 *
616 * Generic RX handler implementations
617 *
618 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800619static void iwl_rx_reply_alive(struct iwl_priv *priv,
620 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700621{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800622 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800623 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700624 struct delayed_work *pwork;
625
626 palive = &pkt->u.alive_frame;
627
Tomas Winklere1623442009-01-27 14:27:56 -0800628 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700629 "0x%01X 0x%01X\n",
630 palive->is_valid, palive->ver_type,
631 palive->ver_subtype);
632
633 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800634 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700635 memcpy(&priv->card_alive_init,
636 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800637 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700638 pwork = &priv->init_alive_start;
639 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800640 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700641 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800642 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700643 pwork = &priv->alive_start;
644 }
645
646 /* We delay the ALIVE response by 5ms to
647 * give the HW RF Kill time to activate... */
648 if (palive->is_valid == UCODE_VALID_OK)
649 queue_delayed_work(priv->workqueue, pwork,
650 msecs_to_jiffies(5));
651 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800652 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700653}
654
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700655static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700656{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700657 struct iwl_priv *priv =
658 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700659 struct sk_buff *beacon;
660
661 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200662 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700663
664 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800665 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700666 return;
667 }
668
669 mutex_lock(&priv->mutex);
670 /* new beacon skb is allocated every time; dispose previous.*/
671 if (priv->ibss_beacon)
672 dev_kfree_skb(priv->ibss_beacon);
673
674 priv->ibss_beacon = beacon;
675 mutex_unlock(&priv->mutex);
676
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700677 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700678}
679
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800680/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700681 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800682 *
683 * This callback is provided in order to send a statistics request.
684 *
685 * This timer function is continually reset to execute within
686 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
687 * was received. We need to ensure we receive the statistics in order
688 * to update the temperature used for calibrating the TXPOWER.
689 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700690static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800691{
692 struct iwl_priv *priv = (struct iwl_priv *)data;
693
694 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
695 return;
696
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700697 /* dont send host command if rf-kill is on */
698 if (!iwl_is_ready_rf(priv))
699 return;
700
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800701 iwl_send_statistics_request(priv, CMD_ASYNC);
702}
703
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700704static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800705 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700706{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700707#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800708 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800709 struct iwl4965_beacon_notif *beacon =
710 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800711 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700712
Tomas Winklere1623442009-01-27 14:27:56 -0800713 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700714 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800715 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700716 beacon->beacon_notify_hdr.failure_frame,
717 le32_to_cpu(beacon->ibss_mgr_status),
718 le32_to_cpu(beacon->high_tsf),
719 le32_to_cpu(beacon->low_tsf), rate);
720#endif
721
Johannes Berg05c914f2008-09-11 00:01:58 +0200722 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700723 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
724 queue_work(priv->workqueue, &priv->beacon_update);
725}
726
Zhu Yib481de92007-09-25 17:54:57 -0700727/* Handle notification from uCode that card's power state is changing
728 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700729static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800730 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700731{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800732 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700733 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
734 unsigned long status = priv->status;
735
Tomas Winklere1623442009-01-27 14:27:56 -0800736 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700737 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
738 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
739
740 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
741 RF_CARD_DISABLED)) {
742
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700743 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700744 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
745
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700746 if (!iwl_grab_nic_access(priv)) {
747 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700748 priv, HBUS_TARG_MBX_C,
749 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
750
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700751 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700752 }
753
754 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700755 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700756 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700757 if (!iwl_grab_nic_access(priv)) {
758 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700759 priv, HBUS_TARG_MBX_C,
760 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
761
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700762 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700763 }
764 }
765
766 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700767 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700768 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700769 iwl_read32(priv, CSR_UCODE_DRV_GP1);
770 if (!iwl_grab_nic_access(priv))
771 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700772 }
773 }
774
775 if (flags & HW_CARD_DISABLED)
776 set_bit(STATUS_RF_KILL_HW, &priv->status);
777 else
778 clear_bit(STATUS_RF_KILL_HW, &priv->status);
779
780
781 if (flags & SW_CARD_DISABLED)
782 set_bit(STATUS_RF_KILL_SW, &priv->status);
783 else
784 clear_bit(STATUS_RF_KILL_SW, &priv->status);
785
786 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800787 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700788
789 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
790 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
791 (test_bit(STATUS_RF_KILL_SW, &status) !=
792 test_bit(STATUS_RF_KILL_SW, &priv->status)))
793 queue_work(priv->workqueue, &priv->rf_kill);
794 else
795 wake_up_interruptible(&priv->wait_command_queue);
796}
797
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700798int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800799{
800 int ret;
801 unsigned long flags;
802
803 spin_lock_irqsave(&priv->lock, flags);
804 ret = iwl_grab_nic_access(priv);
805 if (ret)
806 goto err;
807
808 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800809 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800810 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
811 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
812 ~APMG_PS_CTRL_MSK_PWR_SRC);
813 } else {
814 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
815 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
816 ~APMG_PS_CTRL_MSK_PWR_SRC);
817 }
818
819 iwl_release_nic_access(priv);
820err:
821 spin_unlock_irqrestore(&priv->lock, flags);
822 return ret;
823}
824
Zhu Yib481de92007-09-25 17:54:57 -0700825/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700826 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700827 *
828 * Setup the RX handlers for each of the reply types sent from the uCode
829 * to the host.
830 *
831 * This function chains into the hardware specific files for them to setup
832 * any hardware specific handlers as well.
833 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800834static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700835{
Tomas Winkler885ba202008-05-29 16:34:55 +0800836 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700837 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
838 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700839 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700840 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700841 iwl_rx_pm_debug_statistics_notif;
842 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700843
Ben Cahill9fbab512007-11-29 11:09:47 +0800844 /*
845 * The same handler is used for both the REPLY to a discrete
846 * statistics request from the host as well as for the periodic
847 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700848 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800849 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
850 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800851
Tomas Winkler21c339b2008-11-07 09:58:41 -0800852 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800853 iwl_setup_rx_scan_handlers(priv);
854
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800855 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700856 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700857
Tomas Winklerc1354752008-05-29 16:35:04 +0800858 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
859 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800860 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800861 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
862 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800863 /* block ack */
864 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800865 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700866 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700867}
868
Zhu Yib481de92007-09-25 17:54:57 -0700869/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800870 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700871 *
872 * Uses the priv->rx_handlers callback function array to invoke
873 * the appropriate handlers, including command responses,
874 * frame-received notifications, and other notifications.
875 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800876void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700877{
Tomas Winklera55360e2008-05-05 10:22:28 +0800878 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800879 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800880 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700881 u32 r, i;
882 int reclaim;
883 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800884 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800885 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -0700886
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800887 /* uCode's read index (stored in shared DRAM) indicates the last Rx
888 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800889 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700890 i = rxq->read;
891
892 /* Rx interrupt, but nothing sent from uCode */
893 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800894 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700895
Tomas Winklera55360e2008-05-05 10:22:28 +0800896 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800897 fill_rx = 1;
898
Zhu Yib481de92007-09-25 17:54:57 -0700899 while (i != r) {
900 rxb = rxq->queue[i];
901
Ben Cahill9fbab512007-11-29 11:09:47 +0800902 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700903 * then a bug has been introduced in the queue refilling
904 * routines -- catch it here */
905 BUG_ON(rxb == NULL);
906
907 rxq->queue[i] = NULL;
908
Johannes Berge91af0a2008-11-19 01:22:51 +0100909 dma_sync_single_range_for_cpu(
910 &priv->pci_dev->dev, rxb->real_dma_addr,
911 rxb->aligned_dma_addr - rxb->real_dma_addr,
912 priv->hw_params.rx_buf_size,
913 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +0800914 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700915
916 /* Reclaim a command buffer only if this packet is a response
917 * to a (driver-originated) command.
918 * If the packet (e.g. Rx frame) originated from uCode,
919 * there is no command buffer to reclaim.
920 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
921 * but apparently a few don't get set; catch them here. */
922 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
923 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700924 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700925 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800926 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700927 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
928 (pkt->hdr.cmd != REPLY_TX);
929
930 /* Based on type of command response or notification,
931 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700932 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -0700933 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -0800934 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +0800935 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700936 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
937 } else {
938 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -0800939 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700940 "r %d i %d No handler needed for %s, 0x%02x\n",
941 r, i, get_cmd_string(pkt->hdr.cmd),
942 pkt->hdr.cmd);
943 }
944
945 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +0800946 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -0700947 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -0700948 * as we reclaim the driver command queue */
949 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +0800950 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700951 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800952 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -0700953 }
954
955 /* For now we just don't re-use anything. We can tweak this
956 * later to try and re-use notification packets and SKBs that
957 * fail to Rx correctly */
958 if (rxb->skb != NULL) {
959 priv->alloc_rxb_skb--;
960 dev_kfree_skb_any(rxb->skb);
961 rxb->skb = NULL;
962 }
963
Johannes Berg40185172008-11-18 01:47:21 +0100964 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
965 priv->hw_params.rx_buf_size + 256,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +0200966 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -0700967 spin_lock_irqsave(&rxq->lock, flags);
968 list_add_tail(&rxb->list, &priv->rxq.rx_used);
969 spin_unlock_irqrestore(&rxq->lock, flags);
970 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800971 /* If there are a lot of unused frames,
972 * restock the Rx queue so ucode wont assert. */
973 if (fill_rx) {
974 count++;
975 if (count >= 8) {
976 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +0800977 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800978 count = 0;
979 }
980 }
Zhu Yib481de92007-09-25 17:54:57 -0700981 }
982
983 /* Backtrack one entry */
984 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +0800985 iwl_rx_queue_restock(priv);
986}
Tomas Winklera55360e2008-05-05 10:22:28 +0800987
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700988/* call this function to flush any scheduled tasklet */
989static inline void iwl_synchronize_irq(struct iwl_priv *priv)
990{
Tomas Winklera96a27f2008-10-23 23:48:56 -0700991 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700992 synchronize_irq(priv->pci_dev->irq);
993 tasklet_kill(&priv->irq_tasklet);
994}
995
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700996static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700997{
998 unsigned long flags;
999
1000 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1001 sizeof(priv->staging_rxon));
1002 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001003 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001004
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001005 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001006
1007 spin_lock_irqsave(&priv->lock, flags);
1008 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1009 priv->error_recovering = 0;
1010 spin_unlock_irqrestore(&priv->lock, flags);
1011}
1012
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001013static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001014{
1015 u32 inta, handled = 0;
1016 u32 inta_fh;
1017 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001018#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001019 u32 inta_mask;
1020#endif
1021
1022 spin_lock_irqsave(&priv->lock, flags);
1023
1024 /* Ack/clear/reset pending uCode interrupts.
1025 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1026 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001027 inta = iwl_read32(priv, CSR_INT);
1028 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001029
1030 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1031 * Any new interrupts that happen after this, either while we're
1032 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001033 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1034 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001035
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001036#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001037 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001038 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001039 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001040 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001041 inta, inta_mask, inta_fh);
1042 }
1043#endif
1044
1045 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1046 * atomic, make sure that inta covers all the interrupts that
1047 * we've discovered, even if FH interrupt came in just after
1048 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001049 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001050 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001051 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001052 inta |= CSR_INT_BIT_FH_TX;
1053
1054 /* Now service all interrupt bits discovered above. */
1055 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001056 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001057
1058 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001059 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001060
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001061 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001062
1063 handled |= CSR_INT_BIT_HW_ERR;
1064
1065 spin_unlock_irqrestore(&priv->lock, flags);
1066
1067 return;
1068 }
1069
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001070#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001071 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001072 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001073 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001074 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001075 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001076
1077 /* Alive notification via Rx interrupt will do the real work */
1078 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001079 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001080 }
1081#endif
1082 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001083 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001084
Ben Cahill9fbab512007-11-29 11:09:47 +08001085 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001086 if (inta & CSR_INT_BIT_RF_KILL) {
1087 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001088 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001089 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1090 hw_rf_kill = 1;
1091
Tomas Winklere1623442009-01-27 14:27:56 -08001092 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001093 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001094
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001095 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001096 * the driver allows loading the ucode even if the radio
1097 * is killed. Hence update the killswitch state here. The
1098 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001099 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001100 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1101 if (hw_rf_kill)
1102 set_bit(STATUS_RF_KILL_HW, &priv->status);
1103 else
1104 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1105 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001106 }
Zhu Yib481de92007-09-25 17:54:57 -07001107
1108 handled |= CSR_INT_BIT_RF_KILL;
1109 }
1110
Ben Cahill9fbab512007-11-29 11:09:47 +08001111 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001112 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001113 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001114 handled |= CSR_INT_BIT_CT_KILL;
1115 }
1116
1117 /* Error detected by uCode */
1118 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001119 IWL_ERR(priv, "Microcode SW error detected. "
1120 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001121 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001122 handled |= CSR_INT_BIT_SW_ERR;
1123 }
1124
1125 /* uCode wakes up after power-down sleep */
1126 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001127 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001128 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001129 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1130 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1131 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1132 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1133 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1134 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001135
1136 handled |= CSR_INT_BIT_WAKEUP;
1137 }
1138
1139 /* All uCode command responses, including Tx command responses,
1140 * Rx "responses" (frame-received notification), and other
1141 * notifications from uCode come through here*/
1142 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001143 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001144 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1145 }
1146
1147 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001148 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001149 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001150 /* FH finished to write, send event */
1151 priv->ucode_write_complete = 1;
1152 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001153 }
1154
1155 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001156 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001157
1158 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001159 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001160 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001161 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001162 }
1163
1164 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001165 /* only Re-enable if diabled by irq */
1166 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001167 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001168
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001169#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001170 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001171 inta = iwl_read32(priv, CSR_INT);
1172 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1173 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001174 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001175 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1176 }
1177#endif
1178 spin_unlock_irqrestore(&priv->lock, flags);
1179}
1180
Zhu Yib481de92007-09-25 17:54:57 -07001181/******************************************************************************
1182 *
1183 * uCode download functions
1184 *
1185 ******************************************************************************/
1186
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001187static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001188{
Tomas Winkler98c92212008-01-14 17:46:20 -08001189 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1190 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1191 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1192 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1193 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1194 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001195}
1196
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001197static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001198{
1199 /* Remove all resets to allow NIC to operate */
1200 iwl_write32(priv, CSR_RESET, 0);
1201}
1202
1203
Zhu Yib481de92007-09-25 17:54:57 -07001204/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001205 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001206 *
1207 * Copy into buffers for card to fetch via bus-mastering
1208 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001209static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001210{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001211 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001212 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001213 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001214 const char *name_pre = priv->cfg->fw_name_pre;
1215 const unsigned int api_max = priv->cfg->ucode_api_max;
1216 const unsigned int api_min = priv->cfg->ucode_api_min;
1217 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001218 u8 *src;
1219 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001220 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001221
1222 /* Ask kernel firmware_class module to get the boot firmware off disk.
1223 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001224 for (index = api_max; index >= api_min; index--) {
1225 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1226 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1227 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001228 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001229 buf, ret);
1230 if (ret == -ENOENT)
1231 continue;
1232 else
1233 goto error;
1234 } else {
1235 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001236 IWL_ERR(priv, "Loaded firmware %s, "
1237 "which is deprecated. "
1238 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001239 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001240
Tomas Winklere1623442009-01-27 14:27:56 -08001241 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001242 buf, ucode_raw->size);
1243 break;
1244 }
Zhu Yib481de92007-09-25 17:54:57 -07001245 }
1246
Reinette Chatrea0987a82008-12-02 12:14:06 -08001247 if (ret < 0)
1248 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001249
1250 /* Make sure that we got at least our header! */
1251 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001252 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001253 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001254 goto err_release;
1255 }
1256
1257 /* Data from ucode file: header followed by uCode images */
1258 ucode = (void *)ucode_raw->data;
1259
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001260 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001261 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001262 inst_size = le32_to_cpu(ucode->inst_size);
1263 data_size = le32_to_cpu(ucode->data_size);
1264 init_size = le32_to_cpu(ucode->init_size);
1265 init_data_size = le32_to_cpu(ucode->init_data_size);
1266 boot_size = le32_to_cpu(ucode->boot_size);
1267
Reinette Chatrea0987a82008-12-02 12:14:06 -08001268 /* api_ver should match the api version forming part of the
1269 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01001270 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001271
1272 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001273 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001274 "Driver supports v%u, firmware is v%u.\n",
1275 api_max, api_ver);
1276 priv->ucode_ver = 0;
1277 ret = -EINVAL;
1278 goto err_release;
1279 }
1280 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001281 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001282 "got v%u. New firmware can be obtained "
1283 "from http://www.intellinuxwireless.org.\n",
1284 api_max, api_ver);
1285
Tomas Winkler978785a2008-12-19 10:37:31 +08001286 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1287 IWL_UCODE_MAJOR(priv->ucode_ver),
1288 IWL_UCODE_MINOR(priv->ucode_ver),
1289 IWL_UCODE_API(priv->ucode_ver),
1290 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001291
Tomas Winklere1623442009-01-27 14:27:56 -08001292 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001293 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001294 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001295 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001296 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001297 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001298 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001299 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001300 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001301 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001302 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001303 boot_size);
1304
1305 /* Verify size of file vs. image size info in file's header */
1306 if (ucode_raw->size < sizeof(*ucode) +
1307 inst_size + data_size + init_size +
1308 init_data_size + boot_size) {
1309
Tomas Winklere1623442009-01-27 14:27:56 -08001310 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
Zhu Yib481de92007-09-25 17:54:57 -07001311 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001312 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001313 goto err_release;
1314 }
1315
1316 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001317 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001318 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001319 inst_size);
1320 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001321 goto err_release;
1322 }
1323
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001324 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001325 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001326 data_size);
1327 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001328 goto err_release;
1329 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001330 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001331 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1332 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001333 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001334 goto err_release;
1335 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001336 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001337 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001338 init_data_size);
1339 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001340 goto err_release;
1341 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001342 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001343 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1344 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001345 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001346 goto err_release;
1347 }
1348
1349 /* Allocate ucode buffers for card's bus-master loading ... */
1350
1351 /* Runtime instructions and 2 copies of data:
1352 * 1) unmodified from disk
1353 * 2) backup cache for save/restore during power-downs */
1354 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001355 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001356
1357 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001358 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001359
1360 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001361 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001362
Zhu, Yi1f304e42009-01-23 13:45:22 -08001363 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1364 !priv->ucode_data_backup.v_addr)
1365 goto err_pci_alloc;
1366
Zhu Yib481de92007-09-25 17:54:57 -07001367 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001368 if (init_size && init_data_size) {
1369 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001370 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001371
Tomas Winkler90e759d2007-11-29 11:09:41 +08001372 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001373 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001374
1375 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1376 goto err_pci_alloc;
1377 }
Zhu Yib481de92007-09-25 17:54:57 -07001378
1379 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001380 if (boot_size) {
1381 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001382 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001383
Tomas Winkler90e759d2007-11-29 11:09:41 +08001384 if (!priv->ucode_boot.v_addr)
1385 goto err_pci_alloc;
1386 }
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 /* Copy images into buffers for card's bus-master reads ... */
1389
1390 /* Runtime instructions (first block of data in file) */
1391 src = &ucode->data[0];
1392 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001393 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001394 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08001395 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001396 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1397
1398 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001399 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001400 src = &ucode->data[inst_size];
1401 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001402 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001403 memcpy(priv->ucode_data.v_addr, src, len);
1404 memcpy(priv->ucode_data_backup.v_addr, src, len);
1405
1406 /* Initialization instructions (3rd block) */
1407 if (init_size) {
1408 src = &ucode->data[inst_size + data_size];
1409 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001410 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001411 len);
Zhu Yib481de92007-09-25 17:54:57 -07001412 memcpy(priv->ucode_init.v_addr, src, len);
1413 }
1414
1415 /* Initialization data (4th block) */
1416 if (init_data_size) {
1417 src = &ucode->data[inst_size + data_size + init_size];
1418 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001419 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001420 len);
Zhu Yib481de92007-09-25 17:54:57 -07001421 memcpy(priv->ucode_init_data.v_addr, src, len);
1422 }
1423
1424 /* Bootstrap instructions (5th block) */
1425 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1426 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001427 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001428 memcpy(priv->ucode_boot.v_addr, src, len);
1429
1430 /* We have our copies now, allow OS release its copies */
1431 release_firmware(ucode_raw);
1432 return 0;
1433
1434 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001435 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001436 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001437 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001438
1439 err_release:
1440 release_firmware(ucode_raw);
1441
1442 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001443 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001444}
1445
Zhu Yib481de92007-09-25 17:54:57 -07001446/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001447 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001448 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001449 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001450 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001451static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001452{
Tomas Winkler57aab752008-04-14 21:16:03 -07001453 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001454
Tomas Winklere1623442009-01-27 14:27:56 -08001455 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001456
1457 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1458 /* We had an error bringing up the hardware, so take it
1459 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001460 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001461 goto restart;
1462 }
1463
1464 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1465 * This is a paranoid check, because we would not have gotten the
1466 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001467 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001468 /* Runtime instruction load was bad;
1469 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001470 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001471 goto restart;
1472 }
1473
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001474 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001475 ret = priv->cfg->ops->lib->alive_notify(priv);
1476 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001477 IWL_WARN(priv,
1478 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001479 goto restart;
1480 }
1481
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001482 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001483 set_bit(STATUS_ALIVE, &priv->status);
1484
Tomas Winklerfee12472008-04-03 16:05:21 -07001485 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001486 return;
1487
Johannes Berg36d68252008-05-15 12:55:26 +02001488 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001489
1490 priv->active_rate = priv->rates_mask;
1491 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1492
Tomas Winkler3109ece2008-03-28 16:33:35 -07001493 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001494 struct iwl_rxon_cmd *active_rxon =
1495 (struct iwl_rxon_cmd *)&priv->active_rxon;
Mohamed Abbas019fb972009-03-17 21:59:18 -07001496 /* apply any changes in staging */
1497 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001498 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1499 } else {
1500 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001501 iwl_connection_init_rx_config(priv, priv->iw_mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001502 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001503 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1504 }
1505
Ben Cahill9fbab512007-11-29 11:09:47 +08001506 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001507 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001508
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001509 iwl_reset_run_time_calib(priv);
1510
Zhu Yib481de92007-09-25 17:54:57 -07001511 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001512 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001513
1514 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001515 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001516
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001517 iwl_leds_register(priv);
1518
Tomas Winklere1623442009-01-27 14:27:56 -08001519 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001520 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001521 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001522
1523 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001524 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001525
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08001526 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001527
Mohamed Abbasada17512008-11-07 09:58:34 -08001528 /* reassociate for ADHOC mode */
1529 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1530 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1531 priv->vif);
1532 if (beacon)
1533 iwl_mac_beacon_update(priv->hw, beacon);
1534 }
1535
1536
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001537 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001538 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001539
Zhu Yib481de92007-09-25 17:54:57 -07001540 return;
1541
1542 restart:
1543 queue_work(priv->workqueue, &priv->restart);
1544}
1545
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001546static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001547
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001548static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001549{
1550 unsigned long flags;
1551 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001552
Tomas Winklere1623442009-01-27 14:27:56 -08001553 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001554
Zhu Yib481de92007-09-25 17:54:57 -07001555 if (!exit_pending)
1556 set_bit(STATUS_EXIT_PENDING, &priv->status);
1557
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001558 iwl_leds_unregister(priv);
1559
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001560 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001561
1562 /* Unblock any waiting calls */
1563 wake_up_interruptible_all(&priv->wait_command_queue);
1564
Zhu Yib481de92007-09-25 17:54:57 -07001565 /* Wipe out the EXIT_PENDING status bit if we are not actually
1566 * exiting the module */
1567 if (!exit_pending)
1568 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1569
1570 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001571 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07001572
1573 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001574 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001575 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001576 spin_unlock_irqrestore(&priv->lock, flags);
1577 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001578
1579 if (priv->mac80211_registered)
1580 ieee80211_stop_queues(priv->hw);
1581
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001582 /* If we have not previously called iwl_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07001583 * clear all bits but the RF Kill bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07001584 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001585 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1586 STATUS_RF_KILL_HW |
1587 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1588 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001589 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1590 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001591 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1592 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001593 goto exit;
1594 }
1595
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07001596 /* ...otherwise clear out all the status bits but the RF Kill
1597 * bits and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07001598 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1599 STATUS_RF_KILL_HW |
1600 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1601 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001602 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1603 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001604 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001605 STATUS_FW_ERROR |
1606 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1607 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001608
1609 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001610 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08001611 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07001612 spin_unlock_irqrestore(&priv->lock, flags);
1613
Tomas Winklerda1bc452008-05-29 16:35:00 +08001614 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08001615 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001616
1617 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001618 if (!iwl_grab_nic_access(priv)) {
1619 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07001620 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001621 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001622 }
1623 spin_unlock_irqrestore(&priv->lock, flags);
1624
1625 udelay(5);
1626
Tomas Winkler7f066102008-05-29 16:34:57 +08001627 /* FIXME: apm_ops.suspend(priv) */
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07001628 if (exit_pending)
Gregory Greenmand5353112008-09-03 11:18:49 +08001629 priv->cfg->ops->lib->apm_ops.stop(priv);
1630 else
1631 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001632 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08001633 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001634
1635 if (priv->ibss_beacon)
1636 dev_kfree_skb(priv->ibss_beacon);
1637 priv->ibss_beacon = NULL;
1638
1639 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08001640 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001641}
1642
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001643static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001644{
1645 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001646 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001647 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08001648
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001649 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001650}
1651
1652#define MAX_HW_RESTARTS 5
1653
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001654static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001655{
Tomas Winkler57aab752008-04-14 21:16:03 -07001656 int i;
1657 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001658
1659 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001660 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001661 return -EIO;
1662 }
1663
Reinette Chatree903fbd2008-01-30 22:05:15 -08001664 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001665 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08001666 return -EIO;
1667 }
1668
Zhu Yie655b9f2008-01-24 02:19:38 -08001669 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08001670 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08001671 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001672 else
Zhu Yie655b9f2008-01-24 02:19:38 -08001673 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001674
Tomas Winklerc1842d62008-08-04 16:00:43 +08001675 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001676 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001677 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001678 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08001679 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001680 }
1681
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001682 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001683
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001684 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001685 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001686 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07001687 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001688 }
1689
1690 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001691 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1692 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001693 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1694
1695 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001696 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001697 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001698
1699 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001700 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1701 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001702
1703 /* Copy original ucode data image from disk into backup cache.
1704 * This will be used to initialize the on-board processor's
1705 * data SRAM for a clean start when the runtime program first loads. */
1706 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08001707 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07001708
Zhu Yib481de92007-09-25 17:54:57 -07001709 for (i = 0; i < MAX_HW_RESTARTS; i++) {
1710
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001711 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001712
1713 /* load bootstrap state machine,
1714 * load bootstrap program into processor's memory,
1715 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07001716 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001717
Tomas Winkler57aab752008-04-14 21:16:03 -07001718 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001719 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1720 ret);
Zhu Yib481de92007-09-25 17:54:57 -07001721 continue;
1722 }
1723
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08001724 /* Clear out the uCode error bit if it is set */
1725 clear_bit(STATUS_FW_ERROR, &priv->status);
1726
Zhu Yib481de92007-09-25 17:54:57 -07001727 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001728 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001729
Tomas Winklere1623442009-01-27 14:27:56 -08001730 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001731
1732 return 0;
1733 }
1734
1735 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001736 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08001737 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001738
1739 /* tried to restart and config the device for as long as our
1740 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001741 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07001742 return -EIO;
1743}
1744
1745
1746/*****************************************************************************
1747 *
1748 * Workqueue callbacks
1749 *
1750 *****************************************************************************/
1751
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001752static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001753{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001754 struct iwl_priv *priv =
1755 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001756
1757 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1758 return;
1759
1760 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08001761 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001762 mutex_unlock(&priv->mutex);
1763}
1764
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001765static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001766{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001767 struct iwl_priv *priv =
1768 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001769
1770 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1771 return;
1772
1773 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001774 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001775 mutex_unlock(&priv->mutex);
1776}
1777
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08001778static void iwl_bg_run_time_calib_work(struct work_struct *work)
1779{
1780 struct iwl_priv *priv = container_of(work, struct iwl_priv,
1781 run_time_calib_work);
1782
1783 mutex_lock(&priv->mutex);
1784
1785 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1786 test_bit(STATUS_SCANNING, &priv->status)) {
1787 mutex_unlock(&priv->mutex);
1788 return;
1789 }
1790
1791 if (priv->start_calib) {
1792 iwl_chain_noise_calibration(priv, &priv->statistics);
1793
1794 iwl_sensitivity_calibration(priv, &priv->statistics);
1795 }
1796
1797 mutex_unlock(&priv->mutex);
1798 return;
1799}
1800
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001801static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001802{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001803 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07001804
1805 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1806 return;
1807
1808 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001809 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001810 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02001811 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001812}
1813
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001814static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001815{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001816 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07001817
1818 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1819 return;
1820
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001821 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001822 queue_work(priv->workqueue, &priv->up);
1823}
1824
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001825static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001826{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001827 struct iwl_priv *priv =
1828 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07001829
1830 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1831 return;
1832
1833 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08001834 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001835 mutex_unlock(&priv->mutex);
1836}
1837
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001838#define IWL_DELAY_NEXT_SCAN (HZ*2)
1839
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07001840void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001841{
Zhu Yib481de92007-09-25 17:54:57 -07001842 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07001843 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001844 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07001845
Johannes Berg05c914f2008-09-11 00:01:58 +02001846 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001847 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07001848 return;
1849 }
1850
Tomas Winklere1623442009-01-27 14:27:56 -08001851 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07001852 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001853
1854
1855 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1856 return;
1857
Zhu Yib481de92007-09-25 17:54:57 -07001858
Reinette Chatre508e32e2008-04-14 21:16:13 -07001859 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08001860 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07001861
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08001862 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001863 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08001864
Zhu Yib481de92007-09-25 17:54:57 -07001865 conf = ieee80211_get_hw_conf(priv->hw);
1866
1867 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001868 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001869
Tomas Winkler3195c1f2008-10-08 09:37:30 +08001870 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07001871 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07001872 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07001873 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001874 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07001875 "Attempting to continue.\n");
1876
1877 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
1878
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08001879 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001880
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07001881 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001882 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
1883
Tomas Winklere1623442009-01-27 14:27:56 -08001884 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001885 priv->assoc_id, priv->beacon_int);
1886
1887 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
1888 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1889 else
1890 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1891
1892 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
1893 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1894 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1895 else
1896 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1897
Johannes Berg05c914f2008-09-11 00:01:58 +02001898 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001899 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1900
1901 }
1902
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001903 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001904
1905 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001906 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07001907 break;
1908
Johannes Berg05c914f2008-09-11 00:01:58 +02001909 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07001910
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001911 /* assume default assoc id */
1912 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001913
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001914 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001915 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001916
1917 break;
1918
1919 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001920 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001921 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001922 break;
1923 }
1924
Johannes Berg05c914f2008-09-11 00:01:58 +02001925 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001926 priv->assoc_station_added = 1;
1927
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001928 spin_lock_irqsave(&priv->lock, flags);
1929 iwl_activate_qos(priv, 0);
1930 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08001931
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08001932 /* the chain noise calibration will enabled PM upon completion
1933 * If chain noise has already been run, then we need to enable
1934 * power management here */
1935 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
1936 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08001937
1938 /* Enable Rx differential gain and sensitivity calibrations */
1939 iwl_chain_noise_reset(priv);
1940 priv->start_calib = 1;
1941
Reinette Chatre508e32e2008-04-14 21:16:13 -07001942}
1943
Zhu Yib481de92007-09-25 17:54:57 -07001944/*****************************************************************************
1945 *
1946 * mac80211 entry point functions
1947 *
1948 *****************************************************************************/
1949
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08001950#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08001951
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001952static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07001953{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001954 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08001955 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001956
Tomas Winklere1623442009-01-27 14:27:56 -08001957 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07001958
1959 /* we should be verifying the device is ready to be opened */
1960 mutex_lock(&priv->mutex);
1961
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001962 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08001963 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
1964 * ucode filename and max sizes are card-specific. */
1965
1966 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001967 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001968 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001969 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001970 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001971 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08001972 }
1973 }
1974
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001975 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001976
Zhu Yib481de92007-09-25 17:54:57 -07001977 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001978
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02001979 iwl_rfkill_set_hw_state(priv);
1980
Zhu Yie655b9f2008-01-24 02:19:38 -08001981 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001982 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08001983
Tomas Winklerc1842d62008-08-04 16:00:43 +08001984 if (iwl_is_rfkill(priv))
1985 goto out;
1986
Tomas Winklere1623442009-01-27 14:27:56 -08001987 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08001988
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08001989 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08001990 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08001991 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
1992 test_bit(STATUS_READY, &priv->status),
1993 UCODE_READY_TIMEOUT);
1994 if (!ret) {
1995 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001996 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08001997 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001998 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08001999 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002000 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002001
Tomas Winklerc1842d62008-08-04 16:00:43 +08002002out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002003 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002004 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002005 return 0;
2006}
2007
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002008static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002009{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002010 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002011
Tomas Winklere1623442009-01-27 14:27:56 -08002012 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002013
Zhu Yie655b9f2008-01-24 02:19:38 -08002014 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08002015 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002016 return;
2017 }
2018
Zhu Yib481de92007-09-25 17:54:57 -07002019 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002020
Tomas Winklerfee12472008-04-03 16:05:21 -07002021 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002022 /* stop mac, cancel any scan request and clear
2023 * RXON_FILTER_ASSOC_MSK BIT
2024 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002025 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002026 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002027 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002028 }
2029
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002030 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002031
2032 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002033
2034 /* enable interrupts again in order to receive rfkill changes */
2035 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2036 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002037
Tomas Winklere1623442009-01-27 14:27:56 -08002038 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002039}
2040
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002041static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002042{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002043 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002044
Tomas Winklere1623442009-01-27 14:27:56 -08002045 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002046
Tomas Winklere1623442009-01-27 14:27:56 -08002047 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002048 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002049
Johannes Berge039fa42008-05-15 12:55:29 +02002050 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002051 dev_kfree_skb_any(skb);
2052
Tomas Winklere1623442009-01-27 14:27:56 -08002053 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002054 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002055}
2056
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002057static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002058 struct ieee80211_if_init_conf *conf)
2059{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002060 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002061 unsigned long flags;
2062
Tomas Winklere1623442009-01-27 14:27:56 -08002063 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002064
Johannes Berg32bfd352007-12-19 01:31:26 +01002065 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002066 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002067 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002068 }
2069
2070 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002071 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002072 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002073
2074 spin_unlock_irqrestore(&priv->lock, flags);
2075
2076 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002077
2078 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08002079 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002080 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2081 }
Zhu Yib481de92007-09-25 17:54:57 -07002082
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002083 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002084 /* we are not ready, will run again when ready */
2085 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002086
Zhu Yib481de92007-09-25 17:54:57 -07002087 mutex_unlock(&priv->mutex);
2088
Tomas Winklere1623442009-01-27 14:27:56 -08002089 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002090 return 0;
2091}
2092
2093/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002094 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002095 *
2096 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2097 * be set inappropriately and the driver currently sets the hardware up to
2098 * use it whenever needed.
2099 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002100static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002101{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002102 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002103 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002104 struct ieee80211_conf *conf = &hw->conf;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002105 unsigned long flags = 0;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002106 int ret = 0;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002107 u16 ch;
2108 int scan_active = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002109
2110 mutex_lock(&priv->mutex);
Mohamed Abbas019fb972009-03-17 21:59:18 -07002111 IWL_DEBUG_MAC80211(priv, "enter to channel %d changed 0x%X\n",
2112 conf->channel->hw_value, changed);
Zhu Yib481de92007-09-25 17:54:57 -07002113
Assaf Krauss1ea87392008-03-18 14:57:50 -07002114 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Mohamed Abbas019fb972009-03-17 21:59:18 -07002115 test_bit(STATUS_SCANNING, &priv->status))) {
2116 scan_active = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002117 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002118 }
2119
Mohamed Abbas019fb972009-03-17 21:59:18 -07002120
2121 /* during scanning mac80211 will delay channel setting until
2122 * scan finish with changed = 0
2123 */
2124 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2125 if (scan_active)
2126 goto set_ch_out;
2127
2128 ch = ieee80211_frequency_to_channel(conf->channel->center_freq);
2129 ch_info = iwl_get_channel_info(priv, conf->channel->band, ch);
2130 if (!is_channel_valid(ch_info)) {
2131 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2132 ret = -EINVAL;
2133 goto set_ch_out;
2134 }
2135
2136 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2137 !is_channel_ibss(ch_info)) {
2138 IWL_ERR(priv, "channel %d in band %d not "
2139 "IBSS channel\n",
2140 conf->channel->hw_value, conf->channel->band);
2141 ret = -EINVAL;
2142 goto set_ch_out;
2143 }
2144
2145 priv->current_ht_config.is_ht = conf_is_ht(conf);
2146
2147 spin_lock_irqsave(&priv->lock, flags);
2148
2149
2150 /* if we are switching from ht to 2.4 clear flags
2151 * from any ht related info since 2.4 does not
2152 * support ht */
2153 if ((le16_to_cpu(priv->staging_rxon.channel) != ch))
2154 priv->staging_rxon.flags = 0;
2155
2156 iwl_set_rxon_channel(priv, conf->channel);
2157
2158 iwl_set_flags_for_band(priv, conf->channel->band);
2159 spin_unlock_irqrestore(&priv->lock, flags);
2160 set_ch_out:
2161 /* The list of supported rates and rate mask can be different
2162 * for each band; since the band may have changed, reset
2163 * the rate mask to what mac80211 lists */
2164 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002165 }
2166
Mohamed Abbas019fb972009-03-17 21:59:18 -07002167 if (changed & IEEE80211_CONF_CHANGE_PS) {
2168 if (conf->flags & IEEE80211_CONF_PS)
2169 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2170 else
2171 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2172 if (ret)
2173 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
2174
Assaf Krauss398f9e72008-06-12 09:47:06 +08002175 }
2176
Mohamed Abbas019fb972009-03-17 21:59:18 -07002177 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2178 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2179 priv->tx_power_user_lmt, conf->power_level);
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002180
Mohamed Abbas019fb972009-03-17 21:59:18 -07002181 iwl_set_tx_power(priv, conf->power_level, false);
Zhu Yib481de92007-09-25 17:54:57 -07002182 }
Mohamed Abbas019fb972009-03-17 21:59:18 -07002183
2184 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2185 iwl_set_rxon_chain(priv);
2186
2187 if (changed & IEEE80211_CONF_CHANGE_RADIO_ENABLED) {
2188 if (conf->radio_enabled &&
2189 iwl_radio_kill_sw_enable_radio(priv)) {
2190 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - "
2191 "waiting for uCode\n");
2192 goto out;
2193 }
2194
2195 if (!conf->radio_enabled)
2196 iwl_radio_kill_sw_disable_radio(priv);
2197 }
Zhu Yib481de92007-09-25 17:54:57 -07002198
Zhu Yib481de92007-09-25 17:54:57 -07002199 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08002200 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002201 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002202 }
2203
Mohamed Abbas019fb972009-03-17 21:59:18 -07002204 if (!iwl_is_ready(priv)) {
2205 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002206 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002207 }
2208
Mohamed Abbas019fb972009-03-17 21:59:18 -07002209 if (scan_active)
2210 goto out;
Rick Farrington7b841722009-01-23 13:45:10 -08002211
Zhu Yib481de92007-09-25 17:54:57 -07002212 if (memcmp(&priv->active_rxon,
2213 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002214 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002215 else
Tomas Winklere1623442009-01-27 14:27:56 -08002216 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002217
Zhu Yib481de92007-09-25 17:54:57 -07002218
Zhu Yia0646472007-12-20 14:10:01 +08002219out:
Mohamed Abbas019fb972009-03-17 21:59:18 -07002220 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08002221 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002222 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002223}
2224
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002225static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002226{
Tomas Winkler857485c2008-03-21 13:53:44 -07002227 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002228 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002229
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002230 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002231 return;
2232
2233 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002234 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002235
2236 /* RXON - unassoc (to set timing command) */
2237 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002238 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002239
2240 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002241 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002242 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002243 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002244 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002245 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002246 "Attempting to continue.\n");
2247
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002248 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002249
2250 /* FIXME: what should be the assoc_id for AP? */
2251 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2252 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2253 priv->staging_rxon.flags |=
2254 RXON_FLG_SHORT_PREAMBLE_MSK;
2255 else
2256 priv->staging_rxon.flags &=
2257 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2258
2259 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2260 if (priv->assoc_capability &
2261 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2262 priv->staging_rxon.flags |=
2263 RXON_FLG_SHORT_SLOT_MSK;
2264 else
2265 priv->staging_rxon.flags &=
2266 ~RXON_FLG_SHORT_SLOT_MSK;
2267
Johannes Berg05c914f2008-09-11 00:01:58 +02002268 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002269 priv->staging_rxon.flags &=
2270 ~RXON_FLG_SHORT_SLOT_MSK;
2271 }
2272 /* restore RXON assoc */
2273 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002274 iwlcore_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002275 spin_lock_irqsave(&priv->lock, flags);
2276 iwl_activate_qos(priv, 1);
2277 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002278 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002279 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002280 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002281
2282 /* FIXME - we need to add code here to detect a totally new
2283 * configuration, reset the AP, unassoc, rxon timing, assoc,
2284 * clear sta table, add BCAST sta... */
2285}
2286
Johannes Berg9d139c82008-07-09 14:40:37 +02002287
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002288static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002289 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002290 struct ieee80211_if_conf *conf)
2291{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002292 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002293 int rc;
2294
2295 if (conf == NULL)
2296 return -EIO;
2297
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002298 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002299 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002300 return 0;
2301 }
2302
Johannes Berg05c914f2008-09-11 00:01:58 +02002303 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002304 conf->changed & IEEE80211_IFCC_BEACON) {
2305 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2306 if (!beacon)
2307 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002308 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002309 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002310 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002311 if (rc)
2312 return rc;
2313 }
2314
Tomas Winklerfee12472008-04-03 16:05:21 -07002315 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002316 return -EAGAIN;
2317
Zhu Yib481de92007-09-25 17:54:57 -07002318 mutex_lock(&priv->mutex);
2319
Zhu Yib481de92007-09-25 17:54:57 -07002320 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08002321 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002322
Johannes Berg4150c572007-09-17 01:29:23 -04002323/*
2324 * very dubious code was here; the probe filtering flag is never set:
2325 *
Zhu Yib481de92007-09-25 17:54:57 -07002326 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2327 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002328 */
Zhu Yib481de92007-09-25 17:54:57 -07002329
Johannes Berg05c914f2008-09-11 00:01:58 +02002330 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002331 if (!conf->bssid) {
2332 conf->bssid = priv->mac_addr;
2333 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08002334 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002335 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002336 }
2337 if (priv->ibss_beacon)
2338 dev_kfree_skb(priv->ibss_beacon);
2339
Johannes Berg9d139c82008-07-09 14:40:37 +02002340 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002341 }
2342
Tomas Winklerfee12472008-04-03 16:05:21 -07002343 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002344 goto done;
2345
Zhu Yib481de92007-09-25 17:54:57 -07002346 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2347 !is_multicast_ether_addr(conf->bssid)) {
2348 /* If there is currently a HW scan going on in the background
2349 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002350 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002351 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002352 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002353 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002354 mutex_unlock(&priv->mutex);
2355 return -EAGAIN;
2356 }
2357 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2358
2359 /* TODO: Audit driver for usage of these members and see
2360 * if mac80211 deprecates them (priv->bssid looks like it
2361 * shouldn't be there, but I haven't scanned the IBSS code
2362 * to verify) - jpk */
2363 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2364
Johannes Berg05c914f2008-09-11 00:01:58 +02002365 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002366 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002367 else {
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002368 rc = iwlcore_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002369 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002370 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002371 priv, priv->active_rxon.bssid_addr, 1);
2372 }
2373
2374 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002375 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002376 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002377 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002378 }
2379
Mohamed Abbasfde35712007-11-29 11:10:15 +08002380 done:
Tomas Winklere1623442009-01-27 14:27:56 -08002381 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002382 mutex_unlock(&priv->mutex);
2383
2384 return 0;
2385}
2386
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002387static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002388 struct ieee80211_if_init_conf *conf)
2389{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002390 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002391
Tomas Winklere1623442009-01-27 14:27:56 -08002392 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002393
2394 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002395
Tomas Winklerfee12472008-04-03 16:05:21 -07002396 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002397 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002398 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002399 iwlcore_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002400 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002401 if (priv->vif == conf->vif) {
2402 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002403 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002404 }
2405 mutex_unlock(&priv->mutex);
2406
Tomas Winklere1623442009-01-27 14:27:56 -08002407 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002408
2409}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002410
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002411static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002412 struct ieee80211_key_conf *keyconf, const u8 *addr,
2413 u32 iv32, u16 *phase1key)
2414{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002415
Tomas Winkler9f586712008-11-12 13:14:05 -08002416 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002417 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002418
Tomas Winkler9f586712008-11-12 13:14:05 -08002419 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002420
Tomas Winklere1623442009-01-27 14:27:56 -08002421 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002422}
2423
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002424static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002425 struct ieee80211_vif *vif,
2426 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002427 struct ieee80211_key_conf *key)
2428{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002429 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002430 const u8 *addr;
2431 int ret;
2432 u8 sta_id;
2433 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002434
Tomas Winklere1623442009-01-27 14:27:56 -08002435 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002436
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002437 if (priv->hw_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002438 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002439 return -EOPNOTSUPP;
2440 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002441 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07002442 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002443 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002444 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002445 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002446 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002447
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002448 }
Zhu Yib481de92007-09-25 17:54:57 -07002449
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002450 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002451 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002452 mutex_unlock(&priv->mutex);
2453
2454 /* If we are getting WEP group key and we didn't receive any key mapping
2455 * so far, we are in legacy wep mode (group key only), otherwise we are
2456 * in 1X mode.
2457 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002458 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002459 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002460 if (cmd == SET_KEY)
2461 is_default_wep_key = !priv->key_mapping_key;
2462 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002463 is_default_wep_key =
2464 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002465 }
mabbas052c4b92007-10-25 17:15:43 +08002466
Zhu Yib481de92007-09-25 17:54:57 -07002467 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002468 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002469 if (is_default_wep_key)
2470 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002471 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002472 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002473
Tomas Winklere1623442009-01-27 14:27:56 -08002474 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002475 break;
2476 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002477 if (is_default_wep_key)
2478 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002479 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002480 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002481
Tomas Winklere1623442009-01-27 14:27:56 -08002482 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002483 break;
2484 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002485 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002486 }
2487
Tomas Winklere1623442009-01-27 14:27:56 -08002488 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002489
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002490 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002491}
2492
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002493static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08002494 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002495 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002496{
2497 struct iwl_priv *priv = hw->priv;
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002498 int ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002499
Tomas Winklere1623442009-01-27 14:27:56 -08002500 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002501 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002502
2503 if (!(priv->cfg->sku & IWL_SKU_N))
2504 return -EACCES;
2505
2506 switch (action) {
2507 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002508 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002509 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002510 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002511 IWL_DEBUG_HT(priv, "stop Rx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002512 ret = iwl_sta_rx_agg_stop(priv, sta->addr, tid);
2513 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2514 return 0;
2515 else
2516 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002517 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002518 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002519 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002520 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002521 IWL_DEBUG_HT(priv, "stop Tx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002522 ret = iwl_tx_agg_stop(priv, sta->addr, tid);
2523 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2524 return 0;
2525 else
2526 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002527 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002528 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002529 return -EINVAL;
2530 break;
2531 }
2532 return 0;
2533}
Tomas Winkler9f586712008-11-12 13:14:05 -08002534
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002535static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002536 struct ieee80211_tx_queue_stats *stats)
2537{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002538 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002539 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08002540 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002541 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07002542 unsigned long flags;
2543
Tomas Winklere1623442009-01-27 14:27:56 -08002544 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002545
Tomas Winklerfee12472008-04-03 16:05:21 -07002546 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002547 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002548 return -EIO;
2549 }
2550
2551 spin_lock_irqsave(&priv->lock, flags);
2552
2553 for (i = 0; i < AC_NUM; i++) {
2554 txq = &priv->txq[i];
2555 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002556 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07002557
Johannes Berg57ffc582008-04-29 17:18:59 +02002558 stats[i].len = q->n_window - avail;
2559 stats[i].limit = q->n_window - q->high_mark;
2560 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07002561
2562 }
2563 spin_unlock_irqrestore(&priv->lock, flags);
2564
Tomas Winklere1623442009-01-27 14:27:56 -08002565 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002566
2567 return 0;
2568}
2569
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002570static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002571 struct ieee80211_low_level_stats *stats)
2572{
Ester Kummerbf403db2008-05-05 10:22:40 +08002573 struct iwl_priv *priv = hw->priv;
2574
2575 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002576 IWL_DEBUG_MAC80211(priv, "enter\n");
2577 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002578
2579 return 0;
2580}
2581
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002582static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002583{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002584 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002585 unsigned long flags;
2586
2587 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002588 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002589
Zhu Yib481de92007-09-25 17:54:57 -07002590 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02002591 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07002592 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002593
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002594 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002595
Zhu Yib481de92007-09-25 17:54:57 -07002596 spin_lock_irqsave(&priv->lock, flags);
2597 priv->assoc_id = 0;
2598 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002599 priv->assoc_station_added = 0;
2600
2601 /* new association get rid of ibss beacon skb */
2602 if (priv->ibss_beacon)
2603 dev_kfree_skb(priv->ibss_beacon);
2604
2605 priv->ibss_beacon = NULL;
2606
2607 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002608 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002609 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07002610 priv->beacon_int = 0;
2611
2612 spin_unlock_irqrestore(&priv->lock, flags);
2613
Tomas Winklerfee12472008-04-03 16:05:21 -07002614 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002615 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002616 mutex_unlock(&priv->mutex);
2617 return;
2618 }
2619
mabbas052c4b92007-10-25 17:15:43 +08002620 /* we are restarting association process
2621 * clear RXON_FILTER_ASSOC_MSK bit
2622 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002623 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002624 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08002625 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002626 iwlcore_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08002627 }
2628
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002629 iwl_power_update_mode(priv, 0);
2630
Zhu Yib481de92007-09-25 17:54:57 -07002631 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02002632 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08002633
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002634 /* switch to CAM during association period.
2635 * the ucode will block any association/authentication
2636 * frome during assiciation period if it can not hear
2637 * the AP because of PM. the timer enable PM back is
2638 * association do not complete
2639 */
2640 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
2641 IEEE80211_CHAN_RADAR))
2642 iwl_power_disable_management(priv, 3000);
2643
Tomas Winklere1623442009-01-27 14:27:56 -08002644 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002645 mutex_unlock(&priv->mutex);
2646 return;
2647 }
2648
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002649 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002650
2651 mutex_unlock(&priv->mutex);
2652
Tomas Winklere1623442009-01-27 14:27:56 -08002653 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002654}
2655
Zhu Yib481de92007-09-25 17:54:57 -07002656
Zhu Yib481de92007-09-25 17:54:57 -07002657/*****************************************************************************
2658 *
2659 * sysfs attributes
2660 *
2661 *****************************************************************************/
2662
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002663#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002664
2665/*
2666 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08002667 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07002668 * used for controlling the debug level.
2669 *
2670 * See the level definitions in iwl for details.
2671 */
2672
Ester Kummer8cf769c2008-05-06 11:05:11 +08002673static ssize_t show_debug_level(struct device *d,
2674 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07002675{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002676 struct iwl_priv *priv = d->driver_data;
2677
2678 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07002679}
Ester Kummer8cf769c2008-05-06 11:05:11 +08002680static ssize_t store_debug_level(struct device *d,
2681 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07002682 const char *buf, size_t count)
2683{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002684 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002685 unsigned long val;
2686 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002687
Tomas Winkler9257746f2008-09-03 11:26:32 +08002688 ret = strict_strtoul(buf, 0, &val);
2689 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002690 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002691 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08002692 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07002693
2694 return strnlen(buf, count);
2695}
2696
Ester Kummer8cf769c2008-05-06 11:05:11 +08002697static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
2698 show_debug_level, store_debug_level);
2699
Zhu Yib481de92007-09-25 17:54:57 -07002700
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002701#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07002702
Zhu Yib481de92007-09-25 17:54:57 -07002703
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002704static ssize_t show_version(struct device *d,
2705 struct device_attribute *attr, char *buf)
2706{
2707 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08002708 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08002709 ssize_t pos = 0;
2710 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002711
2712 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08002713 pos += sprintf(buf + pos,
2714 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
2715 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002716 palive->ucode_major, palive->ucode_minor,
2717 palive->sw_rev[0], palive->sw_rev[1],
2718 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002719 else
Tomas Winklerf236a262008-06-30 17:23:02 +08002720 pos += sprintf(buf + pos, "fw not loaded\n");
2721
2722 if (priv->eeprom) {
2723 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
2724 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
2725 eeprom_ver);
2726 } else {
2727 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
2728 }
2729
2730 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002731}
2732
2733static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
2734
Zhu Yib481de92007-09-25 17:54:57 -07002735static ssize_t show_temperature(struct device *d,
2736 struct device_attribute *attr, char *buf)
2737{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002738 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002739
Tomas Winklerfee12472008-04-03 16:05:21 -07002740 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002741 return -EAGAIN;
2742
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08002743 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07002744}
2745
2746static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
2747
Zhu Yib481de92007-09-25 17:54:57 -07002748static ssize_t show_tx_power(struct device *d,
2749 struct device_attribute *attr, char *buf)
2750{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002751 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08002752
2753 if (!iwl_is_ready_rf(priv))
2754 return sprintf(buf, "off\n");
2755 else
2756 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07002757}
2758
2759static ssize_t store_tx_power(struct device *d,
2760 struct device_attribute *attr,
2761 const char *buf, size_t count)
2762{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002763 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002764 unsigned long val;
2765 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002766
Tomas Winkler9257746f2008-09-03 11:26:32 +08002767 ret = strict_strtoul(buf, 10, &val);
2768 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002769 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002770 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002771 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07002772
2773 return count;
2774}
2775
2776static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
2777
2778static ssize_t show_flags(struct device *d,
2779 struct device_attribute *attr, char *buf)
2780{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002781 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002782
2783 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
2784}
2785
2786static ssize_t store_flags(struct device *d,
2787 struct device_attribute *attr,
2788 const char *buf, size_t count)
2789{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002790 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002791 unsigned long val;
2792 u32 flags;
2793 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002794 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002795 return ret;
2796 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07002797
2798 mutex_lock(&priv->mutex);
2799 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
2800 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002801 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002802 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002803 else {
Tomas Winklere1623442009-01-27 14:27:56 -08002804 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07002805 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002806 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002807 }
2808 }
2809 mutex_unlock(&priv->mutex);
2810
2811 return count;
2812}
2813
2814static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
2815
2816static ssize_t show_filter_flags(struct device *d,
2817 struct device_attribute *attr, char *buf)
2818{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002819 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002820
2821 return sprintf(buf, "0x%04X\n",
2822 le32_to_cpu(priv->active_rxon.filter_flags));
2823}
2824
2825static ssize_t store_filter_flags(struct device *d,
2826 struct device_attribute *attr,
2827 const char *buf, size_t count)
2828{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002829 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002830 unsigned long val;
2831 u32 filter_flags;
2832 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002833 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002834 return ret;
2835 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07002836
2837 mutex_lock(&priv->mutex);
2838 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
2839 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002840 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002841 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002842 else {
Tomas Winklere1623442009-01-27 14:27:56 -08002843 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07002844 "0x%04X\n", filter_flags);
2845 priv->staging_rxon.filter_flags =
2846 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002847 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002848 }
2849 }
2850 mutex_unlock(&priv->mutex);
2851
2852 return count;
2853}
2854
2855static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
2856 store_filter_flags);
2857
Zhu Yib481de92007-09-25 17:54:57 -07002858static ssize_t store_power_level(struct device *d,
2859 struct device_attribute *attr,
2860 const char *buf, size_t count)
2861{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002862 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08002863 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002864 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07002865
Tomas Winkler9257746f2008-09-03 11:26:32 +08002866
Zhu Yib481de92007-09-25 17:54:57 -07002867 mutex_lock(&priv->mutex);
2868
Tomas Winkler9257746f2008-09-03 11:26:32 +08002869 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002870 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002871 goto out;
2872
Esti Kummer298df1f2008-07-18 13:52:58 +08002873 ret = iwl_power_set_user_mode(priv, mode);
2874 if (ret) {
Tomas Winklere1623442009-01-27 14:27:56 -08002875 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002876 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002877 }
Esti Kummer298df1f2008-07-18 13:52:58 +08002878 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07002879
2880 out:
2881 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08002882 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002883}
2884
Zhu Yib481de92007-09-25 17:54:57 -07002885static ssize_t show_power_level(struct device *d,
2886 struct device_attribute *attr, char *buf)
2887{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002888 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08002889 int mode = priv->power_data.user_power_setting;
2890 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002891 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07002892 char *p = buf;
2893
Esti Kummer298df1f2008-07-18 13:52:58 +08002894 switch (system) {
2895 case IWL_POWER_SYS_AUTO:
2896 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07002897 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08002898 case IWL_POWER_SYS_AC:
2899 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07002900 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08002901 case IWL_POWER_SYS_BATTERY:
2902 p += sprintf(p, "SYSTEM:battery");
2903 break;
Zhu Yib481de92007-09-25 17:54:57 -07002904 }
Esti Kummer298df1f2008-07-18 13:52:58 +08002905
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002906 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
2907 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08002908 p += sprintf(p, "\tINDEX:%d", level);
2909 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002910 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07002911}
2912
2913static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
2914 store_power_level);
2915
Zhu Yib481de92007-09-25 17:54:57 -07002916
2917static ssize_t show_statistics(struct device *d,
2918 struct device_attribute *attr, char *buf)
2919{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002920 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08002921 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07002922 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002923 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07002924 int rc = 0;
2925
Tomas Winklerfee12472008-04-03 16:05:21 -07002926 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002927 return -EAGAIN;
2928
2929 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07002930 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002931 mutex_unlock(&priv->mutex);
2932
2933 if (rc) {
2934 len = sprintf(buf,
2935 "Error sending statistics request: 0x%08X\n", rc);
2936 return len;
2937 }
2938
2939 while (size && (PAGE_SIZE - len)) {
2940 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
2941 PAGE_SIZE - len, 1);
2942 len = strlen(buf);
2943 if (PAGE_SIZE - len)
2944 buf[len++] = '\n';
2945
2946 ofs += 16;
2947 size -= min(size, 16U);
2948 }
2949
2950 return len;
2951}
2952
2953static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
2954
Zhu Yib481de92007-09-25 17:54:57 -07002955
Zhu Yib481de92007-09-25 17:54:57 -07002956/*****************************************************************************
2957 *
2958 * driver setup and teardown
2959 *
2960 *****************************************************************************/
2961
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002962static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002963{
Reinette Chatred21050c2009-02-13 11:51:18 -08002964 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07002965
2966 init_waitqueue_head(&priv->wait_command_queue);
2967
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002968 INIT_WORK(&priv->up, iwl_bg_up);
2969 INIT_WORK(&priv->restart, iwl_bg_restart);
2970 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
2971 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
2972 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08002973 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002974 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
2975 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002976
Tomas Winkler2a421b92008-06-12 09:47:10 +08002977 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002978 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002979
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002980 if (priv->cfg->ops->lib->setup_deferred_work)
2981 priv->cfg->ops->lib->setup_deferred_work(priv);
2982
2983 init_timer(&priv->statistics_periodic);
2984 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002985 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07002986
2987 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002988 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07002989}
2990
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002991static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002992{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002993 if (priv->cfg->ops->lib->cancel_deferred_work)
2994 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002995
Joonwoo Park3ae6a052007-11-29 10:43:16 +09002996 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07002997 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002998 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07002999 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003000 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003001 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003002}
3003
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003004static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003005 &dev_attr_flags.attr,
3006 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003007 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003008 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003009 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003010 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003011#ifdef CONFIG_IWLWIFI_DEBUG
3012 &dev_attr_debug_level.attr,
3013#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003014 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003015
3016 NULL
3017};
3018
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003019static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003020 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003021 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003022};
3023
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003024static struct ieee80211_ops iwl_hw_ops = {
3025 .tx = iwl_mac_tx,
3026 .start = iwl_mac_start,
3027 .stop = iwl_mac_stop,
3028 .add_interface = iwl_mac_add_interface,
3029 .remove_interface = iwl_mac_remove_interface,
3030 .config = iwl_mac_config,
3031 .config_interface = iwl_mac_config_interface,
3032 .configure_filter = iwl_configure_filter,
3033 .set_key = iwl_mac_set_key,
3034 .update_tkip_key = iwl_mac_update_tkip_key,
3035 .get_stats = iwl_mac_get_stats,
3036 .get_tx_stats = iwl_mac_get_tx_stats,
3037 .conf_tx = iwl_mac_conf_tx,
3038 .reset_tsf = iwl_mac_reset_tsf,
3039 .bss_info_changed = iwl_bss_info_changed,
3040 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003041 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003042};
3043
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003044static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003045{
3046 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003047 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003048 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003049 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003050 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003051 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003052
Assaf Krauss316c30d2008-03-14 10:38:46 -07003053 /************************
3054 * 1. Allocating HW data
3055 ************************/
3056
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003057 /* Disabling hardware scan means that mac80211 will perform scans
3058 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003059 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003060 if (cfg->mod_params->debug & IWL_DL_INFO)
3061 dev_printk(KERN_DEBUG, &(pdev->dev),
3062 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003063 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003064 }
3065
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003066 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003067 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003068 err = -ENOMEM;
3069 goto out;
3070 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003071 priv = hw->priv;
3072 /* At this point both hw and priv are allocated. */
3073
Zhu Yib481de92007-09-25 17:54:57 -07003074 SET_IEEE80211_DEV(hw, &pdev->dev);
3075
Tomas Winklere1623442009-01-27 14:27:56 -08003076 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003077 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003078 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003079
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003080#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003081 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003082 atomic_set(&priv->restrict_refcnt, 0);
3083#endif
Zhu Yib481de92007-09-25 17:54:57 -07003084
Assaf Krauss316c30d2008-03-14 10:38:46 -07003085 /**************************
3086 * 2. Initializing PCI bus
3087 **************************/
3088 if (pci_enable_device(pdev)) {
3089 err = -ENODEV;
3090 goto out_ieee80211_free_hw;
3091 }
3092
3093 pci_set_master(pdev);
3094
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003095 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003096 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003097 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003098 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003099 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003100 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003101 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003102 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003103 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003104 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003105 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003106 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003107 }
3108
3109 err = pci_request_regions(pdev, DRV_NAME);
3110 if (err)
3111 goto out_pci_disable_device;
3112
3113 pci_set_drvdata(pdev, priv);
3114
Assaf Krauss316c30d2008-03-14 10:38:46 -07003115
3116 /***********************
3117 * 3. Read REV register
3118 ***********************/
3119 priv->hw_base = pci_iomap(pdev, 0, 0);
3120 if (!priv->hw_base) {
3121 err = -ENODEV;
3122 goto out_pci_release_regions;
3123 }
3124
Tomas Winklere1623442009-01-27 14:27:56 -08003125 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003126 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003127 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003128
Tomas Winklerb661c812008-04-23 17:14:54 -07003129 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003130 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003131 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003132
Tomas Winklere7b63582008-09-03 11:26:49 +08003133 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3134 * PCI Tx retries from interfering with C3 CPU state */
3135 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3136
Tomas Winkler91238712008-04-23 17:14:53 -07003137 /* amp init */
3138 err = priv->cfg->ops->lib->apm_ops.init(priv);
3139 if (err < 0) {
Reinette Chatre808ff692009-03-11 11:18:01 -07003140 IWL_ERR(priv, "Failed to init APMG\n");
Tomas Winkler91238712008-04-23 17:14:53 -07003141 goto out_iounmap;
3142 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003143 /*****************
3144 * 4. Read EEPROM
3145 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003146 /* Read the EEPROM */
3147 err = iwl_eeprom_init(priv);
3148 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003149 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003150 goto out_iounmap;
3151 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003152 err = iwl_eeprom_check_version(priv);
3153 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08003154 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07003155
Ron Rindjunsky02883012008-05-15 13:53:53 +08003156 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003157 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003158 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003159 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3160
3161 /************************
3162 * 5. Setup HW constants
3163 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003164 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003165 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003166 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003167 }
3168
3169 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003170 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003171 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003172
Tomas Winkler6ba87952008-05-15 13:54:17 +08003173 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003174 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003175 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003176 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003177
3178 /**********************************
3179 * 7. Initialize module parameters
3180 **********************************/
3181
3182 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003183 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003184 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08003185 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003186 }
3187
Assaf Krauss316c30d2008-03-14 10:38:46 -07003188 /********************
3189 * 8. Setup services
3190 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003191 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003192 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003193 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003194
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003195 pci_enable_msi(priv->pci_dev);
3196
3197 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3198 DRV_NAME, priv);
3199 if (err) {
3200 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3201 goto out_disable_msi;
3202 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003203 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003204 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003205 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003206 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003207 }
3208
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003209 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003210 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003212 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003213 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003214 **********************************/
3215
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003216 /* enable interrupts if needed: hw bug w/a */
3217 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3218 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3219 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3220 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3221 }
3222
3223 iwl_enable_interrupts(priv);
3224
Tomas Winkler6ba87952008-05-15 13:54:17 +08003225 err = iwl_setup_mac(priv);
3226 if (err)
3227 goto out_remove_sysfs;
3228
3229 err = iwl_dbgfs_register(priv, DRV_NAME);
3230 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003231 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003232
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003233 /* If platform's RF_KILL switch is NOT set to KILL */
3234 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3235 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3236 else
3237 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003238
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003239 err = iwl_rfkill_init(priv);
3240 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003241 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003242 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003243 else
3244 iwl_rfkill_set_hw_state(priv);
3245
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003246 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003247 return 0;
3248
Assaf Krauss316c30d2008-03-14 10:38:46 -07003249 out_remove_sysfs:
Reinette Chatrec8f16132009-02-27 16:21:22 -08003250 destroy_workqueue(priv->workqueue);
3251 priv->workqueue = NULL;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003252 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003253 out_free_irq:
3254 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003255 out_disable_msi:
3256 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003257 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003258 out_free_eeprom:
3259 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003260 out_iounmap:
3261 pci_iounmap(pdev, priv->hw_base);
3262 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07003263 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08003264 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003265 out_pci_disable_device:
3266 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003267 out_ieee80211_free_hw:
3268 ieee80211_free_hw(priv->hw);
3269 out:
3270 return err;
3271}
3272
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003273static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003274{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003275 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003276 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003277
3278 if (!priv)
3279 return;
3280
Tomas Winklere1623442009-01-27 14:27:56 -08003281 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003282
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003283 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003284 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003285
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003286 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3287 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003288 * we need to set STATUS_EXIT_PENDING bit.
3289 */
3290 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003291 if (priv->mac80211_registered) {
3292 ieee80211_unregister_hw(priv->hw);
3293 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003294 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003295 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003296 }
3297
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003298 /* make sure we flush any pending irq or
3299 * tasklet for the driver
3300 */
3301 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003302 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003303 spin_unlock_irqrestore(&priv->lock, flags);
3304
3305 iwl_synchronize_irq(priv);
3306
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003307 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003308 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003309
3310 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003311 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003312 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003313
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08003314 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003315 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003316
Zhu Yib481de92007-09-25 17:54:57 -07003317
Mohamed Abbas948c1712007-10-25 17:15:45 +08003318 /*netif_stop_queue(dev); */
3319 flush_workqueue(priv->workqueue);
3320
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003321 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003322 * priv->workqueue... so we can't take down the workqueue
3323 * until now... */
3324 destroy_workqueue(priv->workqueue);
3325 priv->workqueue = NULL;
3326
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003327 free_irq(priv->pci_dev->irq, priv);
3328 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003329 pci_iounmap(pdev, priv->hw_base);
3330 pci_release_regions(pdev);
3331 pci_disable_device(pdev);
3332 pci_set_drvdata(pdev, NULL);
3333
Tomas Winkler6ba87952008-05-15 13:54:17 +08003334 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003335
3336 if (priv->ibss_beacon)
3337 dev_kfree_skb(priv->ibss_beacon);
3338
3339 ieee80211_free_hw(priv->hw);
3340}
3341
Zhu Yib481de92007-09-25 17:54:57 -07003342
3343/*****************************************************************************
3344 *
3345 * driver and module entry point
3346 *
3347 *****************************************************************************/
3348
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003349/* Hardware specific file defines the PCI IDs table for that hardware module */
3350static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003351#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003352 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3353 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003354#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003355#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08003356 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3357 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3358 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3359 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3360 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3361 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003362 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08003363 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3364 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3365 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08003366/* 5350 WiFi/WiMax */
3367 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3368 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3369 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08003370/* 5150 Wifi/WiMax */
3371 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3372 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003373/* 6000/6050 Series */
3374 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3375 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3376 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3377 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
3378 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
3379 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3380 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3381 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3382 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3383 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3384 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08003385/* 1000 Series WiFi */
3386 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl1000_bgn_cfg)},
3387 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl1000_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003388#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003389
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003390 {0}
3391};
3392MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3393
3394static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003395 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003396 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003397 .probe = iwl_pci_probe,
3398 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003399#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003400 .suspend = iwl_pci_suspend,
3401 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003402#endif
3403};
3404
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003405static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003406{
3407
3408 int ret;
3409 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3410 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003411
Tomas Winklere227cea2008-07-18 13:53:05 +08003412 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003413 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003414 printk(KERN_ERR DRV_NAME
3415 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003416 return ret;
3417 }
3418
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003419 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003420 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003421 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003422 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003423 }
Zhu Yib481de92007-09-25 17:54:57 -07003424
3425 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003426
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003427error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003428 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003429 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003430}
3431
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003432static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003433{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003434 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003435 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003436}
3437
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003438module_exit(iwl_exit);
3439module_init(iwl_init);