blob: ad310050e298ed0e6aad62cd4fe85191f24f9d7e [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 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700105static int 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);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700250 iwl_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),
447 PCI_DMA_TODEVICE);
448
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
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700534static void iwl_ht_conf(struct iwl_priv *priv,
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700535 struct ieee80211_bss_conf *bss_conf)
536{
Johannes Bergae5eb022008-10-14 16:58:37 +0200537 struct ieee80211_sta_ht_cap *ht_conf;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700538 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
Johannes Bergae5eb022008-10-14 16:58:37 +0200539 struct ieee80211_sta *sta;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700540
Tomas Winklere1623442009-01-27 14:27:56 -0800541 IWL_DEBUG_MAC80211(priv, "enter: \n");
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700542
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700543 if (!iwl_conf->is_ht)
544 return;
545
Johannes Bergae5eb022008-10-14 16:58:37 +0200546
547 /*
548 * It is totally wrong to base global information on something
549 * that is valid only when associated, alas, this driver works
550 * that way and I don't know how to fix it.
551 */
552
553 rcu_read_lock();
554 sta = ieee80211_find_sta(priv->hw, priv->bssid);
555 if (!sta) {
556 rcu_read_unlock();
557 return;
558 }
559 ht_conf = &sta->ht_cap;
560
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700561 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800562 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700563 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800564 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700565
566 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
567 iwl_conf->max_amsdu_size =
568 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
569
570 iwl_conf->supported_chan_width =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200571 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
Johannes Bergae5eb022008-10-14 16:58:37 +0200572
Sujith094d05d2008-12-12 11:57:43 +0530573 /*
574 * XXX: The HT configuration needs to be moved into iwl_mac_config()
575 * to be done there correctly.
576 */
577
578 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800579 if (conf_is_ht40_minus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530580 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800581 else if (conf_is_ht40_plus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530582 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
583
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700584 /* If no above or below channel supplied disable FAT channel */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200585 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
Sujith094d05d2008-12-12 11:57:43 +0530586 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700587 iwl_conf->supported_chan_width = 0;
588
Ron Rindjunsky12837be2008-09-03 11:26:47 +0800589 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
590
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200591 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700592
Sujith094d05d2008-12-12 11:57:43 +0530593 iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700594 iwl_conf->ht_protection =
Johannes Bergae5eb022008-10-14 16:58:37 +0200595 bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700596 iwl_conf->non_GF_STA_present =
Johannes Bergae5eb022008-10-14 16:58:37 +0200597 !!(bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700598
Johannes Bergae5eb022008-10-14 16:58:37 +0200599 rcu_read_unlock();
600
Tomas Winklere1623442009-01-27 14:27:56 -0800601 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700602}
603
Zhu Yib481de92007-09-25 17:54:57 -0700604/*
605 * QoS support
606*/
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800607static void iwl_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -0700608{
Zhu Yib481de92007-09-25 17:54:57 -0700609 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
610 return;
611
Zhu Yib481de92007-09-25 17:54:57 -0700612 priv->qos_data.def_qos_parm.qos_flags = 0;
613
614 if (priv->qos_data.qos_cap.q_AP.queue_request &&
615 !priv->qos_data.qos_cap.q_AP.txop_request)
616 priv->qos_data.def_qos_parm.qos_flags |=
617 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700618 if (priv->qos_data.qos_active)
619 priv->qos_data.def_qos_parm.qos_flags |=
620 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
621
Ron Rindjunskyfd105e72007-11-26 16:14:39 +0200622 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800623 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800624
Tomas Winkler3109ece2008-03-28 16:33:35 -0700625 if (force || iwl_is_associated(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800626 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800627 priv->qos_data.qos_active,
628 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700629
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800630 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
631 sizeof(struct iwl_qosparam_cmd),
632 &priv->qos_data.def_qos_parm, NULL);
Zhu Yib481de92007-09-25 17:54:57 -0700633 }
634}
635
Zhu Yib481de92007-09-25 17:54:57 -0700636#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700637
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800638static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700639{
640 u16 new_val = 0;
641 u16 beacon_factor = 0;
642
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800643 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
644 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700645 new_val = beacon_val / beacon_factor;
646
John W. Linville41d2f292009-02-20 19:03:31 -0500647 if (!new_val)
648 new_val = MAX_UCODE_BEACON_INTERVAL;
649
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800650 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700651}
652
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800653static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700654{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800655 u64 tsf;
656 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700657 unsigned long flags;
658 struct ieee80211_conf *conf = NULL;
659 u16 beacon_int = 0;
660
661 conf = ieee80211_get_hw_conf(priv->hw);
662
663 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800664 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300665 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700666
Johannes Berg05c914f2008-09-11 00:01:58 +0200667 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800668 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700669 priv->rxon_timing.atim_window = 0;
670 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800671 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
672
Zhu Yib481de92007-09-25 17:54:57 -0700673 /* TODO: we need to get atim_window from upper stack
674 * for now we set to 0 */
675 priv->rxon_timing.atim_window = 0;
676 }
677
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800678 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700679
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800680 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
681 interval_tm = beacon_int * 1024;
682 rem = do_div(tsf, interval_tm);
683 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
684
685 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklere1623442009-01-27 14:27:56 -0800686 IWL_DEBUG_ASSOC(priv, "beacon interval %d beacon timer %d beacon tim %d\n",
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800687 le16_to_cpu(priv->rxon_timing.beacon_interval),
688 le32_to_cpu(priv->rxon_timing.beacon_init_val),
689 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700690}
691
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700692static int iwl_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700693{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700694 iwl_connection_init_rx_config(priv, mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800695 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700696 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
697
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800698 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700699
Mohamed Abbasfde35712007-11-29 11:10:15 +0800700 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700701 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800702 return -EAGAIN;
703
704 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800705 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800706 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800707 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800708 return -EAGAIN;
709 }
710
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700711 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700712
713 return 0;
714}
715
Zhu Yib481de92007-09-25 17:54:57 -0700716/******************************************************************************
717 *
718 * Generic RX handler implementations
719 *
720 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800721static void iwl_rx_reply_alive(struct iwl_priv *priv,
722 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700723{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800724 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800725 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700726 struct delayed_work *pwork;
727
728 palive = &pkt->u.alive_frame;
729
Tomas Winklere1623442009-01-27 14:27:56 -0800730 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700731 "0x%01X 0x%01X\n",
732 palive->is_valid, palive->ver_type,
733 palive->ver_subtype);
734
735 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800736 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700737 memcpy(&priv->card_alive_init,
738 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800739 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700740 pwork = &priv->init_alive_start;
741 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800742 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700743 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800744 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700745 pwork = &priv->alive_start;
746 }
747
748 /* We delay the ALIVE response by 5ms to
749 * give the HW RF Kill time to activate... */
750 if (palive->is_valid == UCODE_VALID_OK)
751 queue_delayed_work(priv->workqueue, pwork,
752 msecs_to_jiffies(5));
753 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800754 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700755}
756
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700757static void iwl_rx_reply_error(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800758 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700759{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800760 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700761
Winkler, Tomas15b16872008-12-19 10:37:33 +0800762 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
Zhu Yib481de92007-09-25 17:54:57 -0700763 "seq 0x%04X ser 0x%08X\n",
764 le32_to_cpu(pkt->u.err_resp.error_type),
765 get_cmd_string(pkt->u.err_resp.cmd_id),
766 pkt->u.err_resp.cmd_id,
767 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
768 le32_to_cpu(pkt->u.err_resp.error_info));
769}
770
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700771static void iwl_rx_pm_sleep_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800772 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700773{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700774#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800775 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800776 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Tomas Winklere1623442009-01-27 14:27:56 -0800777 IWL_DEBUG_RX(priv, "sleep mode: %d, src: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700778 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
779#endif
780}
781
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700782static void iwl_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800783 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700784{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800785 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winklere1623442009-01-27 14:27:56 -0800786 IWL_DEBUG_RADIO(priv, "Dumping %d bytes of unhandled "
Zhu Yib481de92007-09-25 17:54:57 -0700787 "notification for %s:\n",
788 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Ester Kummerbf403db2008-05-05 10:22:40 +0800789 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -0700790}
791
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700792static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700793{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700794 struct iwl_priv *priv =
795 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700796 struct sk_buff *beacon;
797
798 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200799 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700800
801 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800802 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700803 return;
804 }
805
806 mutex_lock(&priv->mutex);
807 /* new beacon skb is allocated every time; dispose previous.*/
808 if (priv->ibss_beacon)
809 dev_kfree_skb(priv->ibss_beacon);
810
811 priv->ibss_beacon = beacon;
812 mutex_unlock(&priv->mutex);
813
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700814 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700815}
816
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800817/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700818 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800819 *
820 * This callback is provided in order to send a statistics request.
821 *
822 * This timer function is continually reset to execute within
823 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
824 * was received. We need to ensure we receive the statistics in order
825 * to update the temperature used for calibrating the TXPOWER.
826 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700827static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800828{
829 struct iwl_priv *priv = (struct iwl_priv *)data;
830
831 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
832 return;
833
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700834 /* dont send host command if rf-kill is on */
835 if (!iwl_is_ready_rf(priv))
836 return;
837
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800838 iwl_send_statistics_request(priv, CMD_ASYNC);
839}
840
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700841static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800842 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700843{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700844#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800845 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800846 struct iwl4965_beacon_notif *beacon =
847 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800848 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700849
Tomas Winklere1623442009-01-27 14:27:56 -0800850 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700851 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800852 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700853 beacon->beacon_notify_hdr.failure_frame,
854 le32_to_cpu(beacon->ibss_mgr_status),
855 le32_to_cpu(beacon->high_tsf),
856 le32_to_cpu(beacon->low_tsf), rate);
857#endif
858
Johannes Berg05c914f2008-09-11 00:01:58 +0200859 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700860 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
861 queue_work(priv->workqueue, &priv->beacon_update);
862}
863
Zhu Yib481de92007-09-25 17:54:57 -0700864/* Handle notification from uCode that card's power state is changing
865 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700866static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800867 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700868{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800869 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700870 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
871 unsigned long status = priv->status;
872
Tomas Winklere1623442009-01-27 14:27:56 -0800873 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700874 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
875 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
876
877 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
878 RF_CARD_DISABLED)) {
879
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700880 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700881 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
882
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700883 if (!iwl_grab_nic_access(priv)) {
884 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700885 priv, HBUS_TARG_MBX_C,
886 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
887
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700888 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700889 }
890
891 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700892 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700893 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700894 if (!iwl_grab_nic_access(priv)) {
895 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700896 priv, HBUS_TARG_MBX_C,
897 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
898
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700899 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700900 }
901 }
902
903 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700904 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700905 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700906 iwl_read32(priv, CSR_UCODE_DRV_GP1);
907 if (!iwl_grab_nic_access(priv))
908 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700909 }
910 }
911
912 if (flags & HW_CARD_DISABLED)
913 set_bit(STATUS_RF_KILL_HW, &priv->status);
914 else
915 clear_bit(STATUS_RF_KILL_HW, &priv->status);
916
917
918 if (flags & SW_CARD_DISABLED)
919 set_bit(STATUS_RF_KILL_SW, &priv->status);
920 else
921 clear_bit(STATUS_RF_KILL_SW, &priv->status);
922
923 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800924 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700925
926 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
927 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
928 (test_bit(STATUS_RF_KILL_SW, &status) !=
929 test_bit(STATUS_RF_KILL_SW, &priv->status)))
930 queue_work(priv->workqueue, &priv->rf_kill);
931 else
932 wake_up_interruptible(&priv->wait_command_queue);
933}
934
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700935int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800936{
937 int ret;
938 unsigned long flags;
939
940 spin_lock_irqsave(&priv->lock, flags);
941 ret = iwl_grab_nic_access(priv);
942 if (ret)
943 goto err;
944
945 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800946 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800947 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
948 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
949 ~APMG_PS_CTRL_MSK_PWR_SRC);
950 } else {
951 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
952 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
953 ~APMG_PS_CTRL_MSK_PWR_SRC);
954 }
955
956 iwl_release_nic_access(priv);
957err:
958 spin_unlock_irqrestore(&priv->lock, flags);
959 return ret;
960}
961
Zhu Yib481de92007-09-25 17:54:57 -0700962/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700963 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700964 *
965 * Setup the RX handlers for each of the reply types sent from the uCode
966 * to the host.
967 *
968 * This function chains into the hardware specific files for them to setup
969 * any hardware specific handlers as well.
970 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800971static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700972{
Tomas Winkler885ba202008-05-29 16:34:55 +0800973 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700974 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
975 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700976 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700977 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700978 iwl_rx_pm_debug_statistics_notif;
979 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700980
Ben Cahill9fbab512007-11-29 11:09:47 +0800981 /*
982 * The same handler is used for both the REPLY to a discrete
983 * statistics request from the host as well as for the periodic
984 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700985 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800986 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
987 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800988
Tomas Winkler21c339b2008-11-07 09:58:41 -0800989 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800990 iwl_setup_rx_scan_handlers(priv);
991
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800992 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700993 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700994
Tomas Winklerc1354752008-05-29 16:35:04 +0800995 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
996 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800997 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800998 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
999 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001000 /* block ack */
1001 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +08001002 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07001003 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001004}
1005
Zhu Yib481de92007-09-25 17:54:57 -07001006/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001007 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001008 *
1009 * Uses the priv->rx_handlers callback function array to invoke
1010 * the appropriate handlers, including command responses,
1011 * frame-received notifications, and other notifications.
1012 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001013void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001014{
Tomas Winklera55360e2008-05-05 10:22:28 +08001015 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001016 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001017 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001018 u32 r, i;
1019 int reclaim;
1020 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001021 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001022 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001023
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001024 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1025 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001026 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001027 i = rxq->read;
1028
1029 /* Rx interrupt, but nothing sent from uCode */
1030 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001031 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001032
Tomas Winklera55360e2008-05-05 10:22:28 +08001033 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001034 fill_rx = 1;
1035
Zhu Yib481de92007-09-25 17:54:57 -07001036 while (i != r) {
1037 rxb = rxq->queue[i];
1038
Ben Cahill9fbab512007-11-29 11:09:47 +08001039 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001040 * then a bug has been introduced in the queue refilling
1041 * routines -- catch it here */
1042 BUG_ON(rxb == NULL);
1043
1044 rxq->queue[i] = NULL;
1045
Johannes Berge91af0a2008-11-19 01:22:51 +01001046 dma_sync_single_range_for_cpu(
1047 &priv->pci_dev->dev, rxb->real_dma_addr,
1048 rxb->aligned_dma_addr - rxb->real_dma_addr,
1049 priv->hw_params.rx_buf_size,
1050 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +08001051 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001052
1053 /* Reclaim a command buffer only if this packet is a response
1054 * to a (driver-originated) command.
1055 * If the packet (e.g. Rx frame) originated from uCode,
1056 * there is no command buffer to reclaim.
1057 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1058 * but apparently a few don't get set; catch them here. */
1059 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1060 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001061 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001062 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001063 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001064 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1065 (pkt->hdr.cmd != REPLY_TX);
1066
1067 /* Based on type of command response or notification,
1068 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001069 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001070 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001071 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001072 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001073 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1074 } else {
1075 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001076 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001077 "r %d i %d No handler needed for %s, 0x%02x\n",
1078 r, i, get_cmd_string(pkt->hdr.cmd),
1079 pkt->hdr.cmd);
1080 }
1081
1082 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001083 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07001084 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001085 * as we reclaim the driver command queue */
1086 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001087 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001088 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001089 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001090 }
1091
1092 /* For now we just don't re-use anything. We can tweak this
1093 * later to try and re-use notification packets and SKBs that
1094 * fail to Rx correctly */
1095 if (rxb->skb != NULL) {
1096 priv->alloc_rxb_skb--;
1097 dev_kfree_skb_any(rxb->skb);
1098 rxb->skb = NULL;
1099 }
1100
Johannes Berg40185172008-11-18 01:47:21 +01001101 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1102 priv->hw_params.rx_buf_size + 256,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02001103 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001104 spin_lock_irqsave(&rxq->lock, flags);
1105 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1106 spin_unlock_irqrestore(&rxq->lock, flags);
1107 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001108 /* If there are a lot of unused frames,
1109 * restock the Rx queue so ucode wont assert. */
1110 if (fill_rx) {
1111 count++;
1112 if (count >= 8) {
1113 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +08001114 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001115 count = 0;
1116 }
1117 }
Zhu Yib481de92007-09-25 17:54:57 -07001118 }
1119
1120 /* Backtrack one entry */
1121 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001122 iwl_rx_queue_restock(priv);
1123}
Tomas Winklera55360e2008-05-05 10:22:28 +08001124
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001125/* call this function to flush any scheduled tasklet */
1126static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1127{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001128 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001129 synchronize_irq(priv->pci_dev->irq);
1130 tasklet_kill(&priv->irq_tasklet);
1131}
1132
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001133static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001134{
1135 unsigned long flags;
1136
1137 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1138 sizeof(priv->staging_rxon));
1139 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001140 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001141
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001142 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001143
1144 spin_lock_irqsave(&priv->lock, flags);
1145 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1146 priv->error_recovering = 0;
1147 spin_unlock_irqrestore(&priv->lock, flags);
1148}
1149
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001150static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001151{
1152 u32 inta, handled = 0;
1153 u32 inta_fh;
1154 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001155#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001156 u32 inta_mask;
1157#endif
1158
1159 spin_lock_irqsave(&priv->lock, flags);
1160
1161 /* Ack/clear/reset pending uCode interrupts.
1162 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1163 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001164 inta = iwl_read32(priv, CSR_INT);
1165 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001166
1167 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1168 * Any new interrupts that happen after this, either while we're
1169 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001170 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1171 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001172
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001173#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001174 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001175 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001176 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001177 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001178 inta, inta_mask, inta_fh);
1179 }
1180#endif
1181
1182 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1183 * atomic, make sure that inta covers all the interrupts that
1184 * we've discovered, even if FH interrupt came in just after
1185 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001186 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001187 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001188 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001189 inta |= CSR_INT_BIT_FH_TX;
1190
1191 /* Now service all interrupt bits discovered above. */
1192 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001193 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001194
1195 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001196 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001197
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001198 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001199
1200 handled |= CSR_INT_BIT_HW_ERR;
1201
1202 spin_unlock_irqrestore(&priv->lock, flags);
1203
1204 return;
1205 }
1206
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001207#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001208 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001209 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001210 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001211 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001212 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001213
1214 /* Alive notification via Rx interrupt will do the real work */
1215 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001216 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001217 }
1218#endif
1219 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001220 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001221
Ben Cahill9fbab512007-11-29 11:09:47 +08001222 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001223 if (inta & CSR_INT_BIT_RF_KILL) {
1224 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001225 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001226 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1227 hw_rf_kill = 1;
1228
Tomas Winklere1623442009-01-27 14:27:56 -08001229 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001230 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001231
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001232 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001233 * the driver allows loading the ucode even if the radio
1234 * is killed. Hence update the killswitch state here. The
1235 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001236 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001237 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1238 if (hw_rf_kill)
1239 set_bit(STATUS_RF_KILL_HW, &priv->status);
1240 else
1241 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1242 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001243 }
Zhu Yib481de92007-09-25 17:54:57 -07001244
1245 handled |= CSR_INT_BIT_RF_KILL;
1246 }
1247
Ben Cahill9fbab512007-11-29 11:09:47 +08001248 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001249 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001250 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001251 handled |= CSR_INT_BIT_CT_KILL;
1252 }
1253
1254 /* Error detected by uCode */
1255 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001256 IWL_ERR(priv, "Microcode SW error detected. "
1257 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001258 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001259 handled |= CSR_INT_BIT_SW_ERR;
1260 }
1261
1262 /* uCode wakes up after power-down sleep */
1263 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001264 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001265 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001266 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1267 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1268 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1269 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1270 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1271 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001272
1273 handled |= CSR_INT_BIT_WAKEUP;
1274 }
1275
1276 /* All uCode command responses, including Tx command responses,
1277 * Rx "responses" (frame-received notification), and other
1278 * notifications from uCode come through here*/
1279 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001280 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001281 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1282 }
1283
1284 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001285 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001286 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001287 /* FH finished to write, send event */
1288 priv->ucode_write_complete = 1;
1289 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001290 }
1291
1292 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001293 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001294
1295 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001296 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001297 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001298 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001299 }
1300
1301 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001302 /* only Re-enable if diabled by irq */
1303 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001304 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001305
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001306#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001307 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001308 inta = iwl_read32(priv, CSR_INT);
1309 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1310 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001311 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001312 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1313 }
1314#endif
1315 spin_unlock_irqrestore(&priv->lock, flags);
1316}
1317
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001318static irqreturn_t iwl_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07001319{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001320 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07001321 u32 inta, inta_mask;
1322 u32 inta_fh;
1323 if (!priv)
1324 return IRQ_NONE;
1325
1326 spin_lock(&priv->lock);
1327
1328 /* Disable (but don't clear!) interrupts here to avoid
1329 * back-to-back ISRs and sporadic interrupts from our NIC.
1330 * If we have something to service, the tasklet will re-enable ints.
1331 * If we *don't* have something, we'll re-enable before leaving here. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001332 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1333 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07001334
1335 /* Discover which interrupts are active/pending */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001336 inta = iwl_read32(priv, CSR_INT);
1337 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07001338
1339 /* Ignore interrupt if there's nothing in NIC to service.
1340 * This may be due to IRQ shared with another device,
1341 * or due to sporadic interrupts thrown from our NIC. */
1342 if (!inta && !inta_fh) {
Tomas Winklere1623442009-01-27 14:27:56 -08001343 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0, inta_fh == 0\n");
Zhu Yib481de92007-09-25 17:54:57 -07001344 goto none;
1345 }
1346
1347 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08001348 /* Hardware disappeared. It might have already raised
1349 * an interrupt */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001350 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08001351 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07001352 }
1353
Tomas Winklere1623442009-01-27 14:27:56 -08001354 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001355 inta, inta_mask, inta_fh);
1356
Joonwoo Park25c03d82008-01-23 10:15:20 -08001357 inta &= ~CSR_INT_BIT_SCD;
1358
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001359 /* iwl_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001360 if (likely(inta || inta_fh))
1361 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07001362
Oliver Neukum66fbb542007-11-15 09:31:10 +08001363 unplugged:
1364 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07001365 return IRQ_HANDLED;
1366
1367 none:
1368 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001369 /* only Re-enable if diabled by irq */
1370 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001371 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001372 spin_unlock(&priv->lock);
1373 return IRQ_NONE;
1374}
1375
Zhu Yib481de92007-09-25 17:54:57 -07001376/******************************************************************************
1377 *
1378 * uCode download functions
1379 *
1380 ******************************************************************************/
1381
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001382static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001383{
Tomas Winkler98c92212008-01-14 17:46:20 -08001384 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1385 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1386 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1387 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1388 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1389 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001390}
1391
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001392static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001393{
1394 /* Remove all resets to allow NIC to operate */
1395 iwl_write32(priv, CSR_RESET, 0);
1396}
1397
1398
Zhu Yib481de92007-09-25 17:54:57 -07001399/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001400 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001401 *
1402 * Copy into buffers for card to fetch via bus-mastering
1403 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001404static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001405{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001406 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001407 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001408 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001409 const char *name_pre = priv->cfg->fw_name_pre;
1410 const unsigned int api_max = priv->cfg->ucode_api_max;
1411 const unsigned int api_min = priv->cfg->ucode_api_min;
1412 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001413 u8 *src;
1414 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001415 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001416
1417 /* Ask kernel firmware_class module to get the boot firmware off disk.
1418 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001419 for (index = api_max; index >= api_min; index--) {
1420 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1421 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1422 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001423 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001424 buf, ret);
1425 if (ret == -ENOENT)
1426 continue;
1427 else
1428 goto error;
1429 } else {
1430 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001431 IWL_ERR(priv, "Loaded firmware %s, "
1432 "which is deprecated. "
1433 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001434 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001435
Tomas Winklere1623442009-01-27 14:27:56 -08001436 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001437 buf, ucode_raw->size);
1438 break;
1439 }
Zhu Yib481de92007-09-25 17:54:57 -07001440 }
1441
Reinette Chatrea0987a82008-12-02 12:14:06 -08001442 if (ret < 0)
1443 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001444
1445 /* Make sure that we got at least our header! */
1446 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001447 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001448 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001449 goto err_release;
1450 }
1451
1452 /* Data from ucode file: header followed by uCode images */
1453 ucode = (void *)ucode_raw->data;
1454
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001455 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001456 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001457 inst_size = le32_to_cpu(ucode->inst_size);
1458 data_size = le32_to_cpu(ucode->data_size);
1459 init_size = le32_to_cpu(ucode->init_size);
1460 init_data_size = le32_to_cpu(ucode->init_data_size);
1461 boot_size = le32_to_cpu(ucode->boot_size);
1462
Reinette Chatrea0987a82008-12-02 12:14:06 -08001463 /* api_ver should match the api version forming part of the
1464 * firmware filename ... but we don't check for that and only rely
1465 * on the API version read from firware header from here on forward */
1466
1467 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001468 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001469 "Driver supports v%u, firmware is v%u.\n",
1470 api_max, api_ver);
1471 priv->ucode_ver = 0;
1472 ret = -EINVAL;
1473 goto err_release;
1474 }
1475 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001476 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001477 "got v%u. New firmware can be obtained "
1478 "from http://www.intellinuxwireless.org.\n",
1479 api_max, api_ver);
1480
Tomas Winkler978785a2008-12-19 10:37:31 +08001481 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1482 IWL_UCODE_MAJOR(priv->ucode_ver),
1483 IWL_UCODE_MINOR(priv->ucode_ver),
1484 IWL_UCODE_API(priv->ucode_ver),
1485 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001486
Tomas Winklere1623442009-01-27 14:27:56 -08001487 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001488 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001489 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001490 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001491 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001492 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001493 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001494 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001495 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001496 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001497 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001498 boot_size);
1499
1500 /* Verify size of file vs. image size info in file's header */
1501 if (ucode_raw->size < sizeof(*ucode) +
1502 inst_size + data_size + init_size +
1503 init_data_size + boot_size) {
1504
Tomas Winklere1623442009-01-27 14:27:56 -08001505 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
Zhu Yib481de92007-09-25 17:54:57 -07001506 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001507 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001508 goto err_release;
1509 }
1510
1511 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001512 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001513 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001514 inst_size);
1515 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001516 goto err_release;
1517 }
1518
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001519 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001520 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001521 data_size);
1522 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001523 goto err_release;
1524 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001525 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001526 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1527 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001528 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001529 goto err_release;
1530 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001531 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001532 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001533 init_data_size);
1534 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001535 goto err_release;
1536 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001537 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001538 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1539 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001540 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001541 goto err_release;
1542 }
1543
1544 /* Allocate ucode buffers for card's bus-master loading ... */
1545
1546 /* Runtime instructions and 2 copies of data:
1547 * 1) unmodified from disk
1548 * 2) backup cache for save/restore during power-downs */
1549 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001550 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001551
1552 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001553 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001554
1555 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001556 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001557
Zhu, Yi1f304e42009-01-23 13:45:22 -08001558 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1559 !priv->ucode_data_backup.v_addr)
1560 goto err_pci_alloc;
1561
Zhu Yib481de92007-09-25 17:54:57 -07001562 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001563 if (init_size && init_data_size) {
1564 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001565 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001566
Tomas Winkler90e759d2007-11-29 11:09:41 +08001567 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001568 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001569
1570 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1571 goto err_pci_alloc;
1572 }
Zhu Yib481de92007-09-25 17:54:57 -07001573
1574 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001575 if (boot_size) {
1576 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001577 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001578
Tomas Winkler90e759d2007-11-29 11:09:41 +08001579 if (!priv->ucode_boot.v_addr)
1580 goto err_pci_alloc;
1581 }
Zhu Yib481de92007-09-25 17:54:57 -07001582
1583 /* Copy images into buffers for card's bus-master reads ... */
1584
1585 /* Runtime instructions (first block of data in file) */
1586 src = &ucode->data[0];
1587 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001588 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001589 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08001590 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001591 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1592
1593 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001594 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001595 src = &ucode->data[inst_size];
1596 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001597 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001598 memcpy(priv->ucode_data.v_addr, src, len);
1599 memcpy(priv->ucode_data_backup.v_addr, src, len);
1600
1601 /* Initialization instructions (3rd block) */
1602 if (init_size) {
1603 src = &ucode->data[inst_size + data_size];
1604 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001605 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001606 len);
Zhu Yib481de92007-09-25 17:54:57 -07001607 memcpy(priv->ucode_init.v_addr, src, len);
1608 }
1609
1610 /* Initialization data (4th block) */
1611 if (init_data_size) {
1612 src = &ucode->data[inst_size + data_size + init_size];
1613 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001614 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001615 len);
Zhu Yib481de92007-09-25 17:54:57 -07001616 memcpy(priv->ucode_init_data.v_addr, src, len);
1617 }
1618
1619 /* Bootstrap instructions (5th block) */
1620 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1621 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001622 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001623 memcpy(priv->ucode_boot.v_addr, src, len);
1624
1625 /* We have our copies now, allow OS release its copies */
1626 release_firmware(ucode_raw);
1627 return 0;
1628
1629 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001630 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001631 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001632 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001633
1634 err_release:
1635 release_firmware(ucode_raw);
1636
1637 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001638 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001639}
1640
Mohamed Abbasada17512008-11-07 09:58:34 -08001641/* temporary */
1642static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1643 struct sk_buff *skb);
1644
Zhu Yib481de92007-09-25 17:54:57 -07001645/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001646 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001647 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001648 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001649 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001650static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001651{
Tomas Winkler57aab752008-04-14 21:16:03 -07001652 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001653
Tomas Winklere1623442009-01-27 14:27:56 -08001654 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001655
1656 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1657 /* We had an error bringing up the hardware, so take it
1658 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001659 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001660 goto restart;
1661 }
1662
1663 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1664 * This is a paranoid check, because we would not have gotten the
1665 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001666 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001667 /* Runtime instruction load was bad;
1668 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001669 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001670 goto restart;
1671 }
1672
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001673 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001674 ret = priv->cfg->ops->lib->alive_notify(priv);
1675 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001676 IWL_WARN(priv,
1677 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001678 goto restart;
1679 }
1680
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001681 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001682 set_bit(STATUS_ALIVE, &priv->status);
1683
Tomas Winklerfee12472008-04-03 16:05:21 -07001684 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001685 return;
1686
Johannes Berg36d68252008-05-15 12:55:26 +02001687 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001688
1689 priv->active_rate = priv->rates_mask;
1690 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1691
Tomas Winkler3109ece2008-03-28 16:33:35 -07001692 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001693 struct iwl_rxon_cmd *active_rxon =
1694 (struct iwl_rxon_cmd *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001695
1696 memcpy(&priv->staging_rxon, &priv->active_rxon,
1697 sizeof(priv->staging_rxon));
1698 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1699 } else {
1700 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001701 iwl_connection_init_rx_config(priv, priv->iw_mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001702 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001703 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1704 }
1705
Ben Cahill9fbab512007-11-29 11:09:47 +08001706 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001707 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001708
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001709 iwl_reset_run_time_calib(priv);
1710
Zhu Yib481de92007-09-25 17:54:57 -07001711 /* Configure the adapter for unassociated operation */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001712 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001713
1714 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001715 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001716
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001717 iwl_leds_register(priv);
1718
Tomas Winklere1623442009-01-27 14:27:56 -08001719 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001720 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001721 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001722
1723 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001724 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001725
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08001726 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001727
Mohamed Abbasada17512008-11-07 09:58:34 -08001728 /* reassociate for ADHOC mode */
1729 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1730 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1731 priv->vif);
1732 if (beacon)
1733 iwl_mac_beacon_update(priv->hw, beacon);
1734 }
1735
1736
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001737 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001738 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001739
Zhu Yib481de92007-09-25 17:54:57 -07001740 return;
1741
1742 restart:
1743 queue_work(priv->workqueue, &priv->restart);
1744}
1745
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001746static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001747
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001748static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001749{
1750 unsigned long flags;
1751 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001752
Tomas Winklere1623442009-01-27 14:27:56 -08001753 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001754
Zhu Yib481de92007-09-25 17:54:57 -07001755 if (!exit_pending)
1756 set_bit(STATUS_EXIT_PENDING, &priv->status);
1757
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001758 iwl_leds_unregister(priv);
1759
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001760 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001761
1762 /* Unblock any waiting calls */
1763 wake_up_interruptible_all(&priv->wait_command_queue);
1764
Zhu Yib481de92007-09-25 17:54:57 -07001765 /* Wipe out the EXIT_PENDING status bit if we are not actually
1766 * exiting the module */
1767 if (!exit_pending)
1768 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1769
1770 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001771 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07001772
1773 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001774 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001775 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001776 spin_unlock_irqrestore(&priv->lock, flags);
1777 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001778
1779 if (priv->mac80211_registered)
1780 ieee80211_stop_queues(priv->hw);
1781
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001782 /* If we have not previously called iwl_init() then
Zhu Yib481de92007-09-25 17:54:57 -07001783 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07001784 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001785 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1786 STATUS_RF_KILL_HW |
1787 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1788 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001789 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1790 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001791 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001792 STATUS_IN_SUSPEND |
1793 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1794 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001795 goto exit;
1796 }
1797
1798 /* ...otherwise clear out all the status bits but the RF Kill and
1799 * SUSPEND bits and continue taking the NIC down. */
1800 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1801 STATUS_RF_KILL_HW |
1802 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1803 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001804 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1805 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001806 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
1807 STATUS_IN_SUSPEND |
1808 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001809 STATUS_FW_ERROR |
1810 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1811 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001812
1813 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001814 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08001815 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07001816 spin_unlock_irqrestore(&priv->lock, flags);
1817
Tomas Winklerda1bc452008-05-29 16:35:00 +08001818 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08001819 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001820
1821 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001822 if (!iwl_grab_nic_access(priv)) {
1823 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07001824 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001825 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001826 }
1827 spin_unlock_irqrestore(&priv->lock, flags);
1828
1829 udelay(5);
1830
Tomas Winkler7f066102008-05-29 16:34:57 +08001831 /* FIXME: apm_ops.suspend(priv) */
Gregory Greenmand5353112008-09-03 11:18:49 +08001832 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
1833 priv->cfg->ops->lib->apm_ops.stop(priv);
1834 else
1835 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001836 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08001837 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001838
1839 if (priv->ibss_beacon)
1840 dev_kfree_skb(priv->ibss_beacon);
1841 priv->ibss_beacon = NULL;
1842
1843 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08001844 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001845}
1846
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001847static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001848{
1849 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001850 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001851 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08001852
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001853 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001854}
1855
1856#define MAX_HW_RESTARTS 5
1857
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001858static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001859{
Tomas Winkler57aab752008-04-14 21:16:03 -07001860 int i;
1861 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001862
1863 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001864 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001865 return -EIO;
1866 }
1867
Reinette Chatree903fbd2008-01-30 22:05:15 -08001868 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001869 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08001870 return -EIO;
1871 }
1872
Zhu Yie655b9f2008-01-24 02:19:38 -08001873 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08001874 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08001875 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001876 else
Zhu Yie655b9f2008-01-24 02:19:38 -08001877 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001878
Tomas Winklerc1842d62008-08-04 16:00:43 +08001879 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001880 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001881 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001882 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08001883 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001884 }
1885
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001886 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001887
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001888 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001889 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001890 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07001891 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001892 }
1893
1894 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001895 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1896 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001897 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1898
1899 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001900 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001901 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001902
1903 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001904 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1905 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001906
1907 /* Copy original ucode data image from disk into backup cache.
1908 * This will be used to initialize the on-board processor's
1909 * data SRAM for a clean start when the runtime program first loads. */
1910 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08001911 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07001912
Zhu Yib481de92007-09-25 17:54:57 -07001913 for (i = 0; i < MAX_HW_RESTARTS; i++) {
1914
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001915 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001916
1917 /* load bootstrap state machine,
1918 * load bootstrap program into processor's memory,
1919 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07001920 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001921
Tomas Winkler57aab752008-04-14 21:16:03 -07001922 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001923 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1924 ret);
Zhu Yib481de92007-09-25 17:54:57 -07001925 continue;
1926 }
1927
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08001928 /* Clear out the uCode error bit if it is set */
1929 clear_bit(STATUS_FW_ERROR, &priv->status);
1930
Zhu Yib481de92007-09-25 17:54:57 -07001931 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001932 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001933
Tomas Winklere1623442009-01-27 14:27:56 -08001934 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001935
1936 return 0;
1937 }
1938
1939 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001940 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08001941 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001942
1943 /* tried to restart and config the device for as long as our
1944 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001945 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07001946 return -EIO;
1947}
1948
1949
1950/*****************************************************************************
1951 *
1952 * Workqueue callbacks
1953 *
1954 *****************************************************************************/
1955
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001956static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001957{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001958 struct iwl_priv *priv =
1959 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001960
1961 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1962 return;
1963
1964 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08001965 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001966 mutex_unlock(&priv->mutex);
1967}
1968
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001969static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001970{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001971 struct iwl_priv *priv =
1972 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001973
1974 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1975 return;
1976
1977 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001978 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001979 mutex_unlock(&priv->mutex);
1980}
1981
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08001982static void iwl_bg_run_time_calib_work(struct work_struct *work)
1983{
1984 struct iwl_priv *priv = container_of(work, struct iwl_priv,
1985 run_time_calib_work);
1986
1987 mutex_lock(&priv->mutex);
1988
1989 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1990 test_bit(STATUS_SCANNING, &priv->status)) {
1991 mutex_unlock(&priv->mutex);
1992 return;
1993 }
1994
1995 if (priv->start_calib) {
1996 iwl_chain_noise_calibration(priv, &priv->statistics);
1997
1998 iwl_sensitivity_calibration(priv, &priv->statistics);
1999 }
2000
2001 mutex_unlock(&priv->mutex);
2002 return;
2003}
2004
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002005static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002006{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002007 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002008
2009 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2010 return;
2011
2012 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002013 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002014 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002015 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002016}
2017
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002018static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002019{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002020 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002021
2022 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2023 return;
2024
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002025 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002026 queue_work(priv->workqueue, &priv->up);
2027}
2028
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002029static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002030{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002031 struct iwl_priv *priv =
2032 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002033
2034 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2035 return;
2036
2037 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08002038 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002039 mutex_unlock(&priv->mutex);
2040}
2041
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002042#define IWL_DELAY_NEXT_SCAN (HZ*2)
2043
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002044static void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002045{
Zhu Yib481de92007-09-25 17:54:57 -07002046 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07002047 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002048 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002049
Johannes Berg05c914f2008-09-11 00:01:58 +02002050 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002051 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002052 return;
2053 }
2054
Tomas Winklere1623442009-01-27 14:27:56 -08002055 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002056 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002057
2058
2059 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2060 return;
2061
Zhu Yib481de92007-09-25 17:54:57 -07002062
Reinette Chatre508e32e2008-04-14 21:16:13 -07002063 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08002064 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002065
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002066 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002067 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08002068
Zhu Yib481de92007-09-25 17:54:57 -07002069 conf = ieee80211_get_hw_conf(priv->hw);
2070
2071 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002072 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002073
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002074 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002075 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002076 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002077 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002078 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002079 "Attempting to continue.\n");
2080
2081 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2082
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08002083 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03002084
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002085 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002086 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2087
Tomas Winklere1623442009-01-27 14:27:56 -08002088 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002089 priv->assoc_id, priv->beacon_int);
2090
2091 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2092 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2093 else
2094 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2095
2096 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2097 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2098 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2099 else
2100 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2101
Johannes Berg05c914f2008-09-11 00:01:58 +02002102 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002103 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2104
2105 }
2106
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002107 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002108
2109 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002110 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002111 break;
2112
Johannes Berg05c914f2008-09-11 00:01:58 +02002113 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002114
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002115 /* assume default assoc id */
2116 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002117
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002118 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002119 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002120
2121 break;
2122
2123 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002124 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002125 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002126 break;
2127 }
2128
Johannes Berg05c914f2008-09-11 00:01:58 +02002129 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002130 priv->assoc_station_added = 1;
2131
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002132 spin_lock_irqsave(&priv->lock, flags);
2133 iwl_activate_qos(priv, 0);
2134 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002135
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002136 /* the chain noise calibration will enabled PM upon completion
2137 * If chain noise has already been run, then we need to enable
2138 * power management here */
2139 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2140 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002141
2142 /* Enable Rx differential gain and sensitivity calibrations */
2143 iwl_chain_noise_reset(priv);
2144 priv->start_calib = 1;
2145
Reinette Chatre508e32e2008-04-14 21:16:13 -07002146}
2147
Zhu Yib481de92007-09-25 17:54:57 -07002148/*****************************************************************************
2149 *
2150 * mac80211 entry point functions
2151 *
2152 *****************************************************************************/
2153
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002154#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08002155
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002156static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002157{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002158 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002159 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002160
Tomas Winklere1623442009-01-27 14:27:56 -08002161 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002162
2163 /* we should be verifying the device is ready to be opened */
2164 mutex_lock(&priv->mutex);
2165
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002166 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08002167 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2168 * ucode filename and max sizes are card-specific. */
2169
2170 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002171 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002172 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002173 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002174 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002175 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002176 }
2177 }
2178
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002179 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002180
Zhu Yib481de92007-09-25 17:54:57 -07002181 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002182
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002183 iwl_rfkill_set_hw_state(priv);
2184
Zhu Yie655b9f2008-01-24 02:19:38 -08002185 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002186 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002187
Tomas Winklerc1842d62008-08-04 16:00:43 +08002188 if (iwl_is_rfkill(priv))
2189 goto out;
2190
Tomas Winklere1623442009-01-27 14:27:56 -08002191 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002192
2193 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2194 return 0;
2195
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002196 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08002197 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002198 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2199 test_bit(STATUS_READY, &priv->status),
2200 UCODE_READY_TIMEOUT);
2201 if (!ret) {
2202 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002203 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002204 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002205 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002206 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002207 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002208
Tomas Winklerc1842d62008-08-04 16:00:43 +08002209out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002210 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002211 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002212 return 0;
2213}
2214
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002215static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002216{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002217 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002218
Tomas Winklere1623442009-01-27 14:27:56 -08002219 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002220
Zhu Yie655b9f2008-01-24 02:19:38 -08002221 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08002222 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002223 return;
2224 }
2225
Zhu Yib481de92007-09-25 17:54:57 -07002226 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002227
Tomas Winklerfee12472008-04-03 16:05:21 -07002228 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002229 /* stop mac, cancel any scan request and clear
2230 * RXON_FILTER_ASSOC_MSK BIT
2231 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002232 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002233 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002234 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002235 }
2236
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002237 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002238
2239 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002240
2241 /* enable interrupts again in order to receive rfkill changes */
2242 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2243 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002244
Tomas Winklere1623442009-01-27 14:27:56 -08002245 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002246}
2247
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002248static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002249{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002250 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002251
Tomas Winklere1623442009-01-27 14:27:56 -08002252 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002253
Tomas Winklere1623442009-01-27 14:27:56 -08002254 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002255 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002256
Johannes Berge039fa42008-05-15 12:55:29 +02002257 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002258 dev_kfree_skb_any(skb);
2259
Tomas Winklere1623442009-01-27 14:27:56 -08002260 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002261 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002262}
2263
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002264static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002265 struct ieee80211_if_init_conf *conf)
2266{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002267 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002268 unsigned long flags;
2269
Tomas Winklere1623442009-01-27 14:27:56 -08002270 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002271
Johannes Berg32bfd352007-12-19 01:31:26 +01002272 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002273 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002274 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002275 }
2276
2277 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002278 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002279 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002280
2281 spin_unlock_irqrestore(&priv->lock, flags);
2282
2283 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002284
2285 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08002286 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002287 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2288 }
Zhu Yib481de92007-09-25 17:54:57 -07002289
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002290 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002291 /* we are not ready, will run again when ready */
2292 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002293
Zhu Yib481de92007-09-25 17:54:57 -07002294 mutex_unlock(&priv->mutex);
2295
Tomas Winklere1623442009-01-27 14:27:56 -08002296 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002297 return 0;
2298}
2299
2300/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002301 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002302 *
2303 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2304 * be set inappropriately and the driver currently sets the hardware up to
2305 * use it whenever needed.
2306 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002307static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002308{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002309 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002310 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002311 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002312 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002313 int ret = 0;
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002314 u16 channel;
Zhu Yib481de92007-09-25 17:54:57 -07002315
2316 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002317 IWL_DEBUG_MAC80211(priv, "enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002318
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002319 priv->current_ht_config.is_ht = conf_is_ht(conf);
Johannes Bergae5eb022008-10-14 16:58:37 +02002320
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002321 if (conf->radio_enabled && iwl_radio_kill_sw_enable_radio(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002322 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - waiting for uCode\n");
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002323 goto out;
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002324 }
2325
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002326 if (!conf->radio_enabled)
2327 iwl_radio_kill_sw_disable_radio(priv);
2328
Tomas Winklerfee12472008-04-03 16:05:21 -07002329 if (!iwl_is_ready(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002330 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002331 ret = -EIO;
2332 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002333 }
2334
Assaf Krauss1ea87392008-03-18 14:57:50 -07002335 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07002336 test_bit(STATUS_SCANNING, &priv->status))) {
Tomas Winklere1623442009-01-27 14:27:56 -08002337 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002338 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08002339 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002340 }
2341
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002342 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2343 ch_info = iwl_get_channel_info(priv, conf->channel->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07002344 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002345 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002346 ret = -EINVAL;
2347 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002348 }
2349
Johannes Berg05c914f2008-09-11 00:01:58 +02002350 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Assaf Krauss398f9e72008-06-12 09:47:06 +08002351 !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002352 IWL_ERR(priv, "channel %d in band %d not IBSS channel\n",
Assaf Krauss398f9e72008-06-12 09:47:06 +08002353 conf->channel->hw_value, conf->channel->band);
2354 ret = -EINVAL;
2355 goto out;
2356 }
2357
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002358 spin_lock_irqsave(&priv->lock, flags);
2359
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002360
Tomas Winkler78330fd2008-02-06 02:37:18 +02002361 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07002362 * from any ht related info since 2.4 does not
2363 * support ht */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002364 if ((le16_to_cpu(priv->staging_rxon.channel) != channel)
Zhu Yib481de92007-09-25 17:54:57 -07002365#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2366 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
2367#endif
2368 )
2369 priv->staging_rxon.flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002370
Tomas Winkler17e72782008-09-03 11:26:26 +08002371 iwl_set_rxon_channel(priv, conf->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002372
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002373 iwl_set_flags_for_band(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07002374
2375 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01002376 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07002377 * the rate mask to what mac80211 lists */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002378 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002379
2380 spin_unlock_irqrestore(&priv->lock, flags);
2381
2382#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2383 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002384 iwl_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002385 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002386 }
2387#endif
2388
Zhu Yib481de92007-09-25 17:54:57 -07002389 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08002390 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002391 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002392 }
2393
Tomas Winklerfee12472008-04-03 16:05:21 -07002394 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002395 IWL_DEBUG_MAC80211(priv, "leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002396 ret = -EIO;
2397 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002398 }
2399
Ester Kummere602cb12008-09-26 15:09:33 +08002400 if (conf->flags & IEEE80211_CONF_PS)
2401 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2402 else
2403 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2404 if (ret)
Tomas Winklere1623442009-01-27 14:27:56 -08002405 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
Ester Kummere602cb12008-09-26 15:09:33 +08002406
Tomas Winklere1623442009-01-27 14:27:56 -08002407 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002408 priv->tx_power_user_lmt, conf->power_level);
2409
2410 iwl_set_tx_power(priv, conf->power_level, false);
2411
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002412 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002413
Rick Farrington7b841722009-01-23 13:45:10 -08002414 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2415 iwl_set_rxon_chain(priv);
2416
Zhu Yib481de92007-09-25 17:54:57 -07002417 if (memcmp(&priv->active_rxon,
2418 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002419 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002420 else
Tomas Winklere1623442009-01-27 14:27:56 -08002421 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002422
Tomas Winklere1623442009-01-27 14:27:56 -08002423 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002424
Zhu Yia0646472007-12-20 14:10:01 +08002425out:
Zhu Yi5a66926a2008-01-14 17:46:18 -08002426 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002427 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002428}
2429
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002430static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002431{
Tomas Winkler857485c2008-03-21 13:53:44 -07002432 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002433 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002434
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002435 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002436 return;
2437
2438 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002439 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002440
2441 /* RXON - unassoc (to set timing command) */
2442 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002443 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002444
2445 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002446 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002447 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002448 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002449 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002450 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002451 "Attempting to continue.\n");
2452
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002453 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002454
2455 /* FIXME: what should be the assoc_id for AP? */
2456 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2457 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2458 priv->staging_rxon.flags |=
2459 RXON_FLG_SHORT_PREAMBLE_MSK;
2460 else
2461 priv->staging_rxon.flags &=
2462 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2463
2464 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2465 if (priv->assoc_capability &
2466 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2467 priv->staging_rxon.flags |=
2468 RXON_FLG_SHORT_SLOT_MSK;
2469 else
2470 priv->staging_rxon.flags &=
2471 ~RXON_FLG_SHORT_SLOT_MSK;
2472
Johannes Berg05c914f2008-09-11 00:01:58 +02002473 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002474 priv->staging_rxon.flags &=
2475 ~RXON_FLG_SHORT_SLOT_MSK;
2476 }
2477 /* restore RXON assoc */
2478 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002479 iwl_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002480 spin_lock_irqsave(&priv->lock, flags);
2481 iwl_activate_qos(priv, 1);
2482 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002483 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002484 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002485 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002486
2487 /* FIXME - we need to add code here to detect a totally new
2488 * configuration, reset the AP, unassoc, rxon timing, assoc,
2489 * clear sta table, add BCAST sta... */
2490}
2491
Johannes Berg9d139c82008-07-09 14:40:37 +02002492
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002493static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002494 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002495 struct ieee80211_if_conf *conf)
2496{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002497 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002498 int rc;
2499
2500 if (conf == NULL)
2501 return -EIO;
2502
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002503 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002504 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002505 return 0;
2506 }
2507
Johannes Berg05c914f2008-09-11 00:01:58 +02002508 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002509 conf->changed & IEEE80211_IFCC_BEACON) {
2510 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2511 if (!beacon)
2512 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002513 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002514 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002515 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002516 if (rc)
2517 return rc;
2518 }
2519
Tomas Winklerfee12472008-04-03 16:05:21 -07002520 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002521 return -EAGAIN;
2522
Zhu Yib481de92007-09-25 17:54:57 -07002523 mutex_lock(&priv->mutex);
2524
Zhu Yib481de92007-09-25 17:54:57 -07002525 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08002526 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002527
Johannes Berg4150c572007-09-17 01:29:23 -04002528/*
2529 * very dubious code was here; the probe filtering flag is never set:
2530 *
Zhu Yib481de92007-09-25 17:54:57 -07002531 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2532 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002533 */
Zhu Yib481de92007-09-25 17:54:57 -07002534
Johannes Berg05c914f2008-09-11 00:01:58 +02002535 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002536 if (!conf->bssid) {
2537 conf->bssid = priv->mac_addr;
2538 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08002539 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002540 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002541 }
2542 if (priv->ibss_beacon)
2543 dev_kfree_skb(priv->ibss_beacon);
2544
Johannes Berg9d139c82008-07-09 14:40:37 +02002545 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002546 }
2547
Tomas Winklerfee12472008-04-03 16:05:21 -07002548 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002549 goto done;
2550
Zhu Yib481de92007-09-25 17:54:57 -07002551 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2552 !is_multicast_ether_addr(conf->bssid)) {
2553 /* If there is currently a HW scan going on in the background
2554 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002555 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002556 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002557 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002558 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002559 mutex_unlock(&priv->mutex);
2560 return -EAGAIN;
2561 }
2562 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2563
2564 /* TODO: Audit driver for usage of these members and see
2565 * if mac80211 deprecates them (priv->bssid looks like it
2566 * shouldn't be there, but I haven't scanned the IBSS code
2567 * to verify) - jpk */
2568 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2569
Johannes Berg05c914f2008-09-11 00:01:58 +02002570 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002571 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002572 else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002573 rc = iwl_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002574 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002575 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002576 priv, priv->active_rxon.bssid_addr, 1);
2577 }
2578
2579 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002580 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002581 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002582 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002583 }
2584
Mohamed Abbasfde35712007-11-29 11:10:15 +08002585 done:
Tomas Winklere1623442009-01-27 14:27:56 -08002586 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002587 mutex_unlock(&priv->mutex);
2588
2589 return 0;
2590}
2591
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002592static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002593 struct ieee80211_if_init_conf *conf)
2594{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002595 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002596
Tomas Winklere1623442009-01-27 14:27:56 -08002597 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002598
2599 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002600
Tomas Winklerfee12472008-04-03 16:05:21 -07002601 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002602 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002603 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002604 iwl_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002605 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002606 if (priv->vif == conf->vif) {
2607 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002608 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002609 }
2610 mutex_unlock(&priv->mutex);
2611
Tomas Winklere1623442009-01-27 14:27:56 -08002612 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002613
2614}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002615
Tomas Winkler3109ece2008-03-28 16:33:35 -07002616#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002617static void iwl_bss_info_changed(struct ieee80211_hw *hw,
Johannes Berg471b3ef2007-12-28 14:32:58 +01002618 struct ieee80211_vif *vif,
2619 struct ieee80211_bss_conf *bss_conf,
2620 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02002621{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002622 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02002623
Tomas Winklere1623442009-01-27 14:27:56 -08002624 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002625
Johannes Berg471b3ef2007-12-28 14:32:58 +01002626 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002627 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
Tomas Winkler3109ece2008-03-28 16:33:35 -07002628 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002629 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02002630 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2631 else
2632 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2633 }
2634
Johannes Berg471b3ef2007-12-28 14:32:58 +01002635 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winklere1623442009-01-27 14:27:56 -08002636 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01002637 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02002638 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2639 else
2640 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2641 }
2642
Tomas Winkler98952d52008-03-28 16:33:33 -07002643 if (changes & BSS_CHANGED_HT) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002644 iwl_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002645 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07002646 }
2647
Johannes Berg471b3ef2007-12-28 14:32:58 +01002648 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002649 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002650 /* This should never happen as this function should
2651 * never be called from interrupt context. */
2652 if (WARN_ON_ONCE(in_interrupt()))
2653 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002654 if (bss_conf->assoc) {
2655 priv->assoc_id = bss_conf->aid;
2656 priv->beacon_int = bss_conf->beacon_int;
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002657 priv->power_data.dtim_period = bss_conf->dtim_period;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002658 priv->timestamp = bss_conf->timestamp;
2659 priv->assoc_capability = bss_conf->assoc_capability;
Tomas Winkler9ccacb82008-09-16 14:01:03 +08002660
2661 /* we have just associated, don't start scan too early
2662 * leave time for EAPOL exchange to complete
2663 */
Tomas Winkler3109ece2008-03-28 16:33:35 -07002664 priv->next_scan_jiffies = jiffies +
2665 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002666 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002667 iwl_post_associate(priv);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002668 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002669 } else {
2670 priv->assoc_id = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08002671 IWL_DEBUG_MAC80211(priv, "DISASSOC %d\n", bss_conf->assoc);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002672 }
2673 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
Tomas Winklere1623442009-01-27 14:27:56 -08002674 IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07002675 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002676 }
2677
Tomas Winkler220173b2007-10-16 00:50:25 +02002678}
Zhu Yib481de92007-09-25 17:54:57 -07002679
Johannes Berg2a519312009-02-10 21:25:55 +01002680static int iwl_mac_hw_scan(struct ieee80211_hw *hw,
2681 struct cfg80211_scan_request *req)
Zhu Yib481de92007-09-25 17:54:57 -07002682{
Zhu Yib481de92007-09-25 17:54:57 -07002683 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002684 struct iwl_priv *priv = hw->priv;
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002685 int ret;
Johannes Berg2a519312009-02-10 21:25:55 +01002686 u8 *ssid = NULL;
2687 size_t ssid_len = 0;
2688
2689 if (req->n_ssids) {
2690 ssid = req->ssids[0].ssid;
2691 ssid_len = req->ssids[0].ssid_len;
2692 }
Zhu Yib481de92007-09-25 17:54:57 -07002693
Tomas Winklere1623442009-01-27 14:27:56 -08002694 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002695
mabbas052c4b92007-10-25 17:15:43 +08002696 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07002697 spin_lock_irqsave(&priv->lock, flags);
2698
Tomas Winklerfee12472008-04-03 16:05:21 -07002699 if (!iwl_is_ready_rf(priv)) {
Tomas Winklercb43dc22008-09-03 11:26:23 +08002700 ret = -EIO;
Tomas Winklere1623442009-01-27 14:27:56 -08002701 IWL_DEBUG_MAC80211(priv, "leave - not ready or exit pending\n");
Zhu Yib481de92007-09-25 17:54:57 -07002702 goto out_unlock;
2703 }
2704
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002705 /* We don't schedule scan within next_scan_jiffies period.
2706 * Avoid scanning during possible EAPOL exchange, return
2707 * success immediately.
2708 */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002709 if (priv->next_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08002710 time_after(priv->next_scan_jiffies, jiffies)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002711 IWL_DEBUG_SCAN(priv, "scan rejected: within next scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002712 queue_work(priv->workqueue, &priv->scan_completed);
2713 ret = 0;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002714 goto out_unlock;
2715 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002716
Zhu Yib481de92007-09-25 17:54:57 -07002717 /* if we just finished scan ask for delay */
Ron Rindjunsky681c0052008-09-03 11:26:25 +08002718 if (iwl_is_associated(priv) && priv->last_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08002719 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN, jiffies)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002720 IWL_DEBUG_SCAN(priv, "scan rejected: within previous scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002721 queue_work(priv->workqueue, &priv->scan_completed);
2722 ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002723 goto out_unlock;
2724 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002725
Tomas Winklercb43dc22008-09-03 11:26:23 +08002726 if (ssid_len) {
Zhu Yib481de92007-09-25 17:54:57 -07002727 priv->one_direct_scan = 1;
Johannes Berg2a519312009-02-10 21:25:55 +01002728 priv->direct_ssid_len = ssid_len;
Zhu Yib481de92007-09-25 17:54:57 -07002729 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Tomas Winklercb43dc22008-09-03 11:26:23 +08002730 } else {
Mohamed Abbas948c1712007-10-25 17:15:45 +08002731 priv->one_direct_scan = 0;
Tomas Winklercb43dc22008-09-03 11:26:23 +08002732 }
Zhu Yib481de92007-09-25 17:54:57 -07002733
Tomas Winklercb43dc22008-09-03 11:26:23 +08002734 ret = iwl_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002735
Tomas Winklere1623442009-01-27 14:27:56 -08002736 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002737
2738out_unlock:
2739 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08002740 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07002741
Tomas Winklercb43dc22008-09-03 11:26:23 +08002742 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002743}
2744
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002745static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002746 struct ieee80211_key_conf *keyconf, const u8 *addr,
2747 u32 iv32, u16 *phase1key)
2748{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002749
Tomas Winkler9f586712008-11-12 13:14:05 -08002750 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002751 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002752
Tomas Winkler9f586712008-11-12 13:14:05 -08002753 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002754
Tomas Winklere1623442009-01-27 14:27:56 -08002755 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002756}
2757
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002758static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002759 struct ieee80211_vif *vif,
2760 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002761 struct ieee80211_key_conf *key)
2762{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002763 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002764 const u8 *addr;
2765 int ret;
2766 u8 sta_id;
2767 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002768
Tomas Winklere1623442009-01-27 14:27:56 -08002769 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002770
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002771 if (priv->hw_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002772 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002773 return -EOPNOTSUPP;
2774 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002775 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07002776 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002777 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002778 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002779 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002780 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002781
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002782 }
Zhu Yib481de92007-09-25 17:54:57 -07002783
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002784 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002785 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002786 mutex_unlock(&priv->mutex);
2787
2788 /* If we are getting WEP group key and we didn't receive any key mapping
2789 * so far, we are in legacy wep mode (group key only), otherwise we are
2790 * in 1X mode.
2791 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002792 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002793 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002794 if (cmd == SET_KEY)
2795 is_default_wep_key = !priv->key_mapping_key;
2796 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002797 is_default_wep_key =
2798 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002799 }
mabbas052c4b92007-10-25 17:15:43 +08002800
Zhu Yib481de92007-09-25 17:54:57 -07002801 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002802 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002803 if (is_default_wep_key)
2804 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002805 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002806 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002807
Tomas Winklere1623442009-01-27 14:27:56 -08002808 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002809 break;
2810 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002811 if (is_default_wep_key)
2812 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002813 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002814 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002815
Tomas Winklere1623442009-01-27 14:27:56 -08002816 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002817 break;
2818 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002819 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002820 }
2821
Tomas Winklere1623442009-01-27 14:27:56 -08002822 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002823
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002824 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002825}
2826
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002827static int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07002828 const struct ieee80211_tx_queue_params *params)
2829{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002830 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002831 unsigned long flags;
2832 int q;
Zhu Yib481de92007-09-25 17:54:57 -07002833
Tomas Winklere1623442009-01-27 14:27:56 -08002834 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002835
Tomas Winklerfee12472008-04-03 16:05:21 -07002836 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002837 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002838 return -EIO;
2839 }
2840
2841 if (queue >= AC_NUM) {
Tomas Winklere1623442009-01-27 14:27:56 -08002842 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
Zhu Yib481de92007-09-25 17:54:57 -07002843 return 0;
2844 }
2845
Zhu Yib481de92007-09-25 17:54:57 -07002846 q = AC_NUM - 1 - queue;
2847
2848 spin_lock_irqsave(&priv->lock, flags);
2849
2850 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2851 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2852 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2853 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01002854 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07002855
2856 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2857 priv->qos_data.qos_active = 1;
2858
Johannes Berg05c914f2008-09-11 00:01:58 +02002859 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002860 iwl_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002861 else if (priv->assoc_id && iwl_is_associated(priv))
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002862 iwl_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002863
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002864 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002865
Tomas Winklere1623442009-01-27 14:27:56 -08002866 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002867 return 0;
2868}
2869
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002870static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08002871 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002872 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002873{
2874 struct iwl_priv *priv = hw->priv;
Tomas Winklerd783b062008-07-18 13:53:02 +08002875
Tomas Winklere1623442009-01-27 14:27:56 -08002876 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002877 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002878
2879 if (!(priv->cfg->sku & IWL_SKU_N))
2880 return -EACCES;
2881
2882 switch (action) {
2883 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002884 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002885 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002886 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002887 IWL_DEBUG_HT(priv, "stop Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002888 return iwl_sta_rx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002889 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002890 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002891 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002892 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002893 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002894 return iwl_tx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002895 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002896 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002897 return -EINVAL;
2898 break;
2899 }
2900 return 0;
2901}
Tomas Winkler9f586712008-11-12 13:14:05 -08002902
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002903static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002904 struct ieee80211_tx_queue_stats *stats)
2905{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002906 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002907 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08002908 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002909 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07002910 unsigned long flags;
2911
Tomas Winklere1623442009-01-27 14:27:56 -08002912 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002913
Tomas Winklerfee12472008-04-03 16:05:21 -07002914 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002915 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002916 return -EIO;
2917 }
2918
2919 spin_lock_irqsave(&priv->lock, flags);
2920
2921 for (i = 0; i < AC_NUM; i++) {
2922 txq = &priv->txq[i];
2923 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002924 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07002925
Johannes Berg57ffc582008-04-29 17:18:59 +02002926 stats[i].len = q->n_window - avail;
2927 stats[i].limit = q->n_window - q->high_mark;
2928 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07002929
2930 }
2931 spin_unlock_irqrestore(&priv->lock, flags);
2932
Tomas Winklere1623442009-01-27 14:27:56 -08002933 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002934
2935 return 0;
2936}
2937
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002938static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002939 struct ieee80211_low_level_stats *stats)
2940{
Ester Kummerbf403db2008-05-05 10:22:40 +08002941 struct iwl_priv *priv = hw->priv;
2942
2943 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002944 IWL_DEBUG_MAC80211(priv, "enter\n");
2945 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002946
2947 return 0;
2948}
2949
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002950static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002951{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002952 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002953 unsigned long flags;
2954
2955 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002956 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002957
Zhu Yib481de92007-09-25 17:54:57 -07002958 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02002959 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07002960 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002961
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002962 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002963
Zhu Yib481de92007-09-25 17:54:57 -07002964 spin_lock_irqsave(&priv->lock, flags);
2965 priv->assoc_id = 0;
2966 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002967 priv->assoc_station_added = 0;
2968
2969 /* new association get rid of ibss beacon skb */
2970 if (priv->ibss_beacon)
2971 dev_kfree_skb(priv->ibss_beacon);
2972
2973 priv->ibss_beacon = NULL;
2974
2975 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002976 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002977 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07002978 priv->beacon_int = 0;
2979
2980 spin_unlock_irqrestore(&priv->lock, flags);
2981
Tomas Winklerfee12472008-04-03 16:05:21 -07002982 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002983 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002984 mutex_unlock(&priv->mutex);
2985 return;
2986 }
2987
mabbas052c4b92007-10-25 17:15:43 +08002988 /* we are restarting association process
2989 * clear RXON_FILTER_ASSOC_MSK bit
2990 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002991 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002992 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08002993 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002994 iwl_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08002995 }
2996
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002997 iwl_power_update_mode(priv, 0);
2998
Zhu Yib481de92007-09-25 17:54:57 -07002999 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02003000 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08003001
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003002 /* switch to CAM during association period.
3003 * the ucode will block any association/authentication
3004 * frome during assiciation period if it can not hear
3005 * the AP because of PM. the timer enable PM back is
3006 * association do not complete
3007 */
3008 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
3009 IEEE80211_CHAN_RADAR))
3010 iwl_power_disable_management(priv, 3000);
3011
Tomas Winklere1623442009-01-27 14:27:56 -08003012 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07003013 mutex_unlock(&priv->mutex);
3014 return;
3015 }
3016
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003017 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003018
3019 mutex_unlock(&priv->mutex);
3020
Tomas Winklere1623442009-01-27 14:27:56 -08003021 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003022}
3023
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003024static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003025{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003026 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003027 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003028 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07003029
Tomas Winklere1623442009-01-27 14:27:56 -08003030 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003031
Tomas Winklerfee12472008-04-03 16:05:21 -07003032 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003033 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07003034 return -EIO;
3035 }
3036
Johannes Berg05c914f2008-09-11 00:01:58 +02003037 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08003038 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07003039 return -EIO;
3040 }
3041
3042 spin_lock_irqsave(&priv->lock, flags);
3043
3044 if (priv->ibss_beacon)
3045 dev_kfree_skb(priv->ibss_beacon);
3046
3047 priv->ibss_beacon = skb;
3048
3049 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003050 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08003051 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07003052
Tomas Winklere1623442009-01-27 14:27:56 -08003053 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003054 spin_unlock_irqrestore(&priv->lock, flags);
3055
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003056 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003057
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003058 iwl_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003059
Zhu Yib481de92007-09-25 17:54:57 -07003060
3061 return 0;
3062}
3063
Zhu Yib481de92007-09-25 17:54:57 -07003064/*****************************************************************************
3065 *
3066 * sysfs attributes
3067 *
3068 *****************************************************************************/
3069
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003070#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003071
3072/*
3073 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08003074 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07003075 * used for controlling the debug level.
3076 *
3077 * See the level definitions in iwl for details.
3078 */
3079
Ester Kummer8cf769c2008-05-06 11:05:11 +08003080static ssize_t show_debug_level(struct device *d,
3081 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003082{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003083 struct iwl_priv *priv = d->driver_data;
3084
3085 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003086}
Ester Kummer8cf769c2008-05-06 11:05:11 +08003087static ssize_t store_debug_level(struct device *d,
3088 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003089 const char *buf, size_t count)
3090{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003091 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003092 unsigned long val;
3093 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003094
Tomas Winkler9257746f2008-09-03 11:26:32 +08003095 ret = strict_strtoul(buf, 0, &val);
3096 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003097 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003098 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08003099 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003100
3101 return strnlen(buf, count);
3102}
3103
Ester Kummer8cf769c2008-05-06 11:05:11 +08003104static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3105 show_debug_level, store_debug_level);
3106
Zhu Yib481de92007-09-25 17:54:57 -07003107
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003108#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003109
Zhu Yib481de92007-09-25 17:54:57 -07003110
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003111static ssize_t show_version(struct device *d,
3112 struct device_attribute *attr, char *buf)
3113{
3114 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08003115 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08003116 ssize_t pos = 0;
3117 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003118
3119 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08003120 pos += sprintf(buf + pos,
3121 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
3122 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003123 palive->ucode_major, palive->ucode_minor,
3124 palive->sw_rev[0], palive->sw_rev[1],
3125 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003126 else
Tomas Winklerf236a262008-06-30 17:23:02 +08003127 pos += sprintf(buf + pos, "fw not loaded\n");
3128
3129 if (priv->eeprom) {
3130 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
3131 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
3132 eeprom_ver);
3133 } else {
3134 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
3135 }
3136
3137 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003138}
3139
3140static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
3141
Zhu Yib481de92007-09-25 17:54:57 -07003142static ssize_t show_temperature(struct device *d,
3143 struct device_attribute *attr, char *buf)
3144{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003145 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003146
Tomas Winklerfee12472008-04-03 16:05:21 -07003147 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003148 return -EAGAIN;
3149
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08003150 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07003151}
3152
3153static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3154
Zhu Yib481de92007-09-25 17:54:57 -07003155static ssize_t show_tx_power(struct device *d,
3156 struct device_attribute *attr, char *buf)
3157{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003158 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08003159
3160 if (!iwl_is_ready_rf(priv))
3161 return sprintf(buf, "off\n");
3162 else
3163 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003164}
3165
3166static ssize_t store_tx_power(struct device *d,
3167 struct device_attribute *attr,
3168 const char *buf, size_t count)
3169{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003170 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003171 unsigned long val;
3172 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003173
Tomas Winkler9257746f2008-09-03 11:26:32 +08003174 ret = strict_strtoul(buf, 10, &val);
3175 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003176 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003177 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08003178 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07003179
3180 return count;
3181}
3182
3183static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3184
3185static ssize_t show_flags(struct device *d,
3186 struct device_attribute *attr, char *buf)
3187{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003188 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003189
3190 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3191}
3192
3193static ssize_t store_flags(struct device *d,
3194 struct device_attribute *attr,
3195 const char *buf, size_t count)
3196{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003197 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003198 unsigned long val;
3199 u32 flags;
3200 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003201 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003202 return ret;
3203 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003204
3205 mutex_lock(&priv->mutex);
3206 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3207 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003208 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003209 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003210 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003211 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07003212 priv->staging_rxon.flags = cpu_to_le32(flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003213 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003214 }
3215 }
3216 mutex_unlock(&priv->mutex);
3217
3218 return count;
3219}
3220
3221static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3222
3223static ssize_t show_filter_flags(struct device *d,
3224 struct device_attribute *attr, char *buf)
3225{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003226 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003227
3228 return sprintf(buf, "0x%04X\n",
3229 le32_to_cpu(priv->active_rxon.filter_flags));
3230}
3231
3232static ssize_t store_filter_flags(struct device *d,
3233 struct device_attribute *attr,
3234 const char *buf, size_t count)
3235{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003236 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003237 unsigned long val;
3238 u32 filter_flags;
3239 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003240 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003241 return ret;
3242 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003243
3244 mutex_lock(&priv->mutex);
3245 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3246 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003247 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003248 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003249 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003250 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003251 "0x%04X\n", filter_flags);
3252 priv->staging_rxon.filter_flags =
3253 cpu_to_le32(filter_flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003254 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003255 }
3256 }
3257 mutex_unlock(&priv->mutex);
3258
3259 return count;
3260}
3261
3262static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3263 store_filter_flags);
3264
Zhu Yib481de92007-09-25 17:54:57 -07003265static ssize_t store_power_level(struct device *d,
3266 struct device_attribute *attr,
3267 const char *buf, size_t count)
3268{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003269 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003270 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003271 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003272
Tomas Winkler9257746f2008-09-03 11:26:32 +08003273
Zhu Yib481de92007-09-25 17:54:57 -07003274 mutex_lock(&priv->mutex);
3275
Tomas Winklerfee12472008-04-03 16:05:21 -07003276 if (!iwl_is_ready(priv)) {
Esti Kummer298df1f2008-07-18 13:52:58 +08003277 ret = -EAGAIN;
Zhu Yib481de92007-09-25 17:54:57 -07003278 goto out;
3279 }
3280
Tomas Winkler9257746f2008-09-03 11:26:32 +08003281 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003282 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003283 goto out;
3284
Esti Kummer298df1f2008-07-18 13:52:58 +08003285 ret = iwl_power_set_user_mode(priv, mode);
3286 if (ret) {
Tomas Winklere1623442009-01-27 14:27:56 -08003287 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003288 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003289 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003290 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003291
3292 out:
3293 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08003294 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003295}
3296
Zhu Yib481de92007-09-25 17:54:57 -07003297static ssize_t show_power_level(struct device *d,
3298 struct device_attribute *attr, char *buf)
3299{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003300 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003301 int mode = priv->power_data.user_power_setting;
3302 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003303 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07003304 char *p = buf;
3305
Esti Kummer298df1f2008-07-18 13:52:58 +08003306 switch (system) {
3307 case IWL_POWER_SYS_AUTO:
3308 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07003309 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003310 case IWL_POWER_SYS_AC:
3311 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07003312 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003313 case IWL_POWER_SYS_BATTERY:
3314 p += sprintf(p, "SYSTEM:battery");
3315 break;
Zhu Yib481de92007-09-25 17:54:57 -07003316 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003317
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003318 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3319 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08003320 p += sprintf(p, "\tINDEX:%d", level);
3321 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003322 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07003323}
3324
3325static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3326 store_power_level);
3327
Zhu Yib481de92007-09-25 17:54:57 -07003328
3329static ssize_t show_statistics(struct device *d,
3330 struct device_attribute *attr, char *buf)
3331{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003332 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003333 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003334 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003335 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003336 int rc = 0;
3337
Tomas Winklerfee12472008-04-03 16:05:21 -07003338 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003339 return -EAGAIN;
3340
3341 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07003342 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003343 mutex_unlock(&priv->mutex);
3344
3345 if (rc) {
3346 len = sprintf(buf,
3347 "Error sending statistics request: 0x%08X\n", rc);
3348 return len;
3349 }
3350
3351 while (size && (PAGE_SIZE - len)) {
3352 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3353 PAGE_SIZE - len, 1);
3354 len = strlen(buf);
3355 if (PAGE_SIZE - len)
3356 buf[len++] = '\n';
3357
3358 ofs += 16;
3359 size -= min(size, 16U);
3360 }
3361
3362 return len;
3363}
3364
3365static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3366
Zhu Yib481de92007-09-25 17:54:57 -07003367
Zhu Yib481de92007-09-25 17:54:57 -07003368/*****************************************************************************
3369 *
3370 * driver setup and teardown
3371 *
3372 *****************************************************************************/
3373
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003374static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003375{
Reinette Chatred21050c2009-02-13 11:51:18 -08003376 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003377
3378 init_waitqueue_head(&priv->wait_command_queue);
3379
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003380 INIT_WORK(&priv->up, iwl_bg_up);
3381 INIT_WORK(&priv->restart, iwl_bg_restart);
3382 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3383 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3384 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003385 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003386 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3387 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003388
Tomas Winkler2a421b92008-06-12 09:47:10 +08003389 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003390 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003391
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003392 if (priv->cfg->ops->lib->setup_deferred_work)
3393 priv->cfg->ops->lib->setup_deferred_work(priv);
3394
3395 init_timer(&priv->statistics_periodic);
3396 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003397 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003398
3399 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003400 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003401}
3402
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003403static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003404{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003405 if (priv->cfg->ops->lib->cancel_deferred_work)
3406 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003407
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003408 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003409 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003410 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07003411 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003412 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003413 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003414}
3415
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003416static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003417 &dev_attr_flags.attr,
3418 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003419 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003420 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003421 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003422 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003423#ifdef CONFIG_IWLWIFI_DEBUG
3424 &dev_attr_debug_level.attr,
3425#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003426 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003427
3428 NULL
3429};
3430
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003431static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003432 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003433 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003434};
3435
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003436static struct ieee80211_ops iwl_hw_ops = {
3437 .tx = iwl_mac_tx,
3438 .start = iwl_mac_start,
3439 .stop = iwl_mac_stop,
3440 .add_interface = iwl_mac_add_interface,
3441 .remove_interface = iwl_mac_remove_interface,
3442 .config = iwl_mac_config,
3443 .config_interface = iwl_mac_config_interface,
3444 .configure_filter = iwl_configure_filter,
3445 .set_key = iwl_mac_set_key,
3446 .update_tkip_key = iwl_mac_update_tkip_key,
3447 .get_stats = iwl_mac_get_stats,
3448 .get_tx_stats = iwl_mac_get_tx_stats,
3449 .conf_tx = iwl_mac_conf_tx,
3450 .reset_tsf = iwl_mac_reset_tsf,
3451 .bss_info_changed = iwl_bss_info_changed,
3452 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003453 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003454};
3455
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003456static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003457{
3458 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003459 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003460 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003461 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003462 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003463 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003464
Assaf Krauss316c30d2008-03-14 10:38:46 -07003465 /************************
3466 * 1. Allocating HW data
3467 ************************/
3468
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003469 /* Disabling hardware scan means that mac80211 will perform scans
3470 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003471 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003472 if (cfg->mod_params->debug & IWL_DL_INFO)
3473 dev_printk(KERN_DEBUG, &(pdev->dev),
3474 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003475 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003476 }
3477
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003478 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003479 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003480 err = -ENOMEM;
3481 goto out;
3482 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003483 priv = hw->priv;
3484 /* At this point both hw and priv are allocated. */
3485
Zhu Yib481de92007-09-25 17:54:57 -07003486 SET_IEEE80211_DEV(hw, &pdev->dev);
3487
Tomas Winklere1623442009-01-27 14:27:56 -08003488 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003489 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003490 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003491
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003492#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003493 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003494 atomic_set(&priv->restrict_refcnt, 0);
3495#endif
Zhu Yib481de92007-09-25 17:54:57 -07003496
Assaf Krauss316c30d2008-03-14 10:38:46 -07003497 /**************************
3498 * 2. Initializing PCI bus
3499 **************************/
3500 if (pci_enable_device(pdev)) {
3501 err = -ENODEV;
3502 goto out_ieee80211_free_hw;
3503 }
3504
3505 pci_set_master(pdev);
3506
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003507 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003508 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003509 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003510 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003511 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003512 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003513 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003514 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003515 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003516 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003517 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003518 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003519 }
3520
3521 err = pci_request_regions(pdev, DRV_NAME);
3522 if (err)
3523 goto out_pci_disable_device;
3524
3525 pci_set_drvdata(pdev, priv);
3526
Assaf Krauss316c30d2008-03-14 10:38:46 -07003527
3528 /***********************
3529 * 3. Read REV register
3530 ***********************/
3531 priv->hw_base = pci_iomap(pdev, 0, 0);
3532 if (!priv->hw_base) {
3533 err = -ENODEV;
3534 goto out_pci_release_regions;
3535 }
3536
Tomas Winklere1623442009-01-27 14:27:56 -08003537 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003538 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003539 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003540
Tomas Winklerb661c812008-04-23 17:14:54 -07003541 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003542 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003543 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003544
Tomas Winklere7b63582008-09-03 11:26:49 +08003545 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3546 * PCI Tx retries from interfering with C3 CPU state */
3547 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3548
Tomas Winkler91238712008-04-23 17:14:53 -07003549 /* amp init */
3550 err = priv->cfg->ops->lib->apm_ops.init(priv);
3551 if (err < 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003552 IWL_DEBUG_INFO(priv, "Failed to init APMG\n");
Tomas Winkler91238712008-04-23 17:14:53 -07003553 goto out_iounmap;
3554 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003555 /*****************
3556 * 4. Read EEPROM
3557 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003558 /* Read the EEPROM */
3559 err = iwl_eeprom_init(priv);
3560 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003561 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003562 goto out_iounmap;
3563 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003564 err = iwl_eeprom_check_version(priv);
3565 if (err)
3566 goto out_iounmap;
3567
Ron Rindjunsky02883012008-05-15 13:53:53 +08003568 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003569 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003570 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003571 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3572
3573 /************************
3574 * 5. Setup HW constants
3575 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003576 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003577 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003578 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003579 }
3580
3581 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003582 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003583 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003584
Tomas Winkler6ba87952008-05-15 13:54:17 +08003585 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003586 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003587 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003588 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003589
3590 /**********************************
3591 * 7. Initialize module parameters
3592 **********************************/
3593
3594 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003595 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003596 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08003597 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003598 }
3599
Assaf Krauss316c30d2008-03-14 10:38:46 -07003600 /********************
3601 * 8. Setup services
3602 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003603 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003604 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003605 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003606
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003607 pci_enable_msi(priv->pci_dev);
3608
3609 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3610 DRV_NAME, priv);
3611 if (err) {
3612 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3613 goto out_disable_msi;
3614 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003615 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003616 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003617 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003618 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003619 }
3620
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003621 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003622 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003623
Tomas Winkler6ba87952008-05-15 13:54:17 +08003624 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003625 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003626 **********************************/
3627
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003628 /* enable interrupts if needed: hw bug w/a */
3629 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3630 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3631 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3632 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3633 }
3634
3635 iwl_enable_interrupts(priv);
3636
Tomas Winkler6ba87952008-05-15 13:54:17 +08003637 err = iwl_setup_mac(priv);
3638 if (err)
3639 goto out_remove_sysfs;
3640
3641 err = iwl_dbgfs_register(priv, DRV_NAME);
3642 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003643 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003644
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003645 /* If platform's RF_KILL switch is NOT set to KILL */
3646 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3647 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3648 else
3649 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003650
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003651 err = iwl_rfkill_init(priv);
3652 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003653 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003654 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003655 else
3656 iwl_rfkill_set_hw_state(priv);
3657
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003658 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003659 return 0;
3660
Assaf Krauss316c30d2008-03-14 10:38:46 -07003661 out_remove_sysfs:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003662 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003663 out_free_irq:
3664 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003665 out_disable_msi:
3666 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003667 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003668 out_free_eeprom:
3669 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003670 out_iounmap:
3671 pci_iounmap(pdev, priv->hw_base);
3672 out_pci_release_regions:
3673 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003674 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003675 out_pci_disable_device:
3676 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003677 out_ieee80211_free_hw:
3678 ieee80211_free_hw(priv->hw);
3679 out:
3680 return err;
3681}
3682
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003683static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003684{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003685 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003686 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003687
3688 if (!priv)
3689 return;
3690
Tomas Winklere1623442009-01-27 14:27:56 -08003691 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003692
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003693 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003694 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003695
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003696 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3697 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003698 * we need to set STATUS_EXIT_PENDING bit.
3699 */
3700 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003701 if (priv->mac80211_registered) {
3702 ieee80211_unregister_hw(priv->hw);
3703 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003704 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003705 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003706 }
3707
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003708 /* make sure we flush any pending irq or
3709 * tasklet for the driver
3710 */
3711 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003712 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003713 spin_unlock_irqrestore(&priv->lock, flags);
3714
3715 iwl_synchronize_irq(priv);
3716
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003717 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003718 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003719
3720 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003721 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003722 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003723
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08003724 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003725 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003726
Zhu Yib481de92007-09-25 17:54:57 -07003727
Mohamed Abbas948c1712007-10-25 17:15:45 +08003728 /*netif_stop_queue(dev); */
3729 flush_workqueue(priv->workqueue);
3730
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003731 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003732 * priv->workqueue... so we can't take down the workqueue
3733 * until now... */
3734 destroy_workqueue(priv->workqueue);
3735 priv->workqueue = NULL;
3736
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003737 free_irq(priv->pci_dev->irq, priv);
3738 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003739 pci_iounmap(pdev, priv->hw_base);
3740 pci_release_regions(pdev);
3741 pci_disable_device(pdev);
3742 pci_set_drvdata(pdev, NULL);
3743
Tomas Winkler6ba87952008-05-15 13:54:17 +08003744 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003745
3746 if (priv->ibss_beacon)
3747 dev_kfree_skb(priv->ibss_beacon);
3748
3749 ieee80211_free_hw(priv->hw);
3750}
3751
3752#ifdef CONFIG_PM
3753
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003754static int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07003755{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003756 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003757
Zhu Yie655b9f2008-01-24 02:19:38 -08003758 if (priv->is_open) {
3759 set_bit(STATUS_IN_SUSPEND, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003760 iwl_mac_stop(priv->hw);
Zhu Yie655b9f2008-01-24 02:19:38 -08003761 priv->is_open = 1;
3762 }
Zhu Yib481de92007-09-25 17:54:57 -07003763
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003764 pci_save_state(pdev);
3765 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003766 pci_set_power_state(pdev, PCI_D3hot);
3767
Zhu Yib481de92007-09-25 17:54:57 -07003768 return 0;
3769}
3770
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003771static int iwl_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003772{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003773 struct iwl_priv *priv = pci_get_drvdata(pdev);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003774 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003775
Zhu Yib481de92007-09-25 17:54:57 -07003776 pci_set_power_state(pdev, PCI_D0);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003777 ret = pci_enable_device(pdev);
3778 if (ret)
3779 return ret;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003780 pci_restore_state(pdev);
3781 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003782
Zhu Yie655b9f2008-01-24 02:19:38 -08003783 if (priv->is_open)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003784 iwl_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003785
Zhu Yie655b9f2008-01-24 02:19:38 -08003786 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003787 return 0;
3788}
3789
3790#endif /* CONFIG_PM */
3791
3792/*****************************************************************************
3793 *
3794 * driver and module entry point
3795 *
3796 *****************************************************************************/
3797
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003798/* Hardware specific file defines the PCI IDs table for that hardware module */
3799static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003800#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003801 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3802 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003803#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003804#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08003805 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3806 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3807 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3808 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3809 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3810 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003811 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08003812 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3813 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3814 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08003815/* 5350 WiFi/WiMax */
3816 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3817 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3818 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08003819/* 5150 Wifi/WiMax */
3820 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3821 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003822/* 6000/6050 Series */
3823 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3824 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3825 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3826 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
3827 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
3828 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3829 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3830 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3831 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3832 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3833 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternbergc5d05692009-01-19 15:30:35 -08003834/* 100 Series WiFi */
3835 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl100_bgn_cfg)},
3836 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl100_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003837#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003838
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003839 {0}
3840};
3841MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3842
3843static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003844 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003845 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003846 .probe = iwl_pci_probe,
3847 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003848#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003849 .suspend = iwl_pci_suspend,
3850 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003851#endif
3852};
3853
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003854static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003855{
3856
3857 int ret;
3858 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3859 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003860
Tomas Winklere227cea2008-07-18 13:53:05 +08003861 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003862 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003863 printk(KERN_ERR DRV_NAME
3864 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003865 return ret;
3866 }
3867
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003868 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003869 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003870 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003871 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003872 }
Zhu Yib481de92007-09-25 17:54:57 -07003873
3874 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003875
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003876error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003877 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003878 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003879}
3880
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003881static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003882{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003883 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003884 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003885}
3886
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003887module_exit(iwl_exit);
3888module_init(iwl_init);