blob: f46ba24757768226a842ef1f51bc0b61f53275cd [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),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800447 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800448
449 /* Unmap chunks, if any. */
450 for (i = 1; i < num_tbs; i++) {
451 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
452 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
453
454 if (txq->txb) {
455 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
456 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
457 }
458 }
459}
460
461int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
462 struct iwl_tx_queue *txq,
463 dma_addr_t addr, u16 len,
464 u8 reset, u8 pad)
465{
466 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800467 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800468 u32 num_tbs;
469
470 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800471 tfd_tmp = (struct iwl_tfd *)txq->tfds;
472 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800473
474 if (reset)
475 memset(tfd, 0, sizeof(*tfd));
476
477 num_tbs = iwl_tfd_get_num_tbs(tfd);
478
479 /* Each TFD can point to a maximum 20 Tx buffers */
480 if (num_tbs >= IWL_NUM_OF_TBS) {
481 IWL_ERR(priv, "Error can not send more than %d chunks\n",
482 IWL_NUM_OF_TBS);
483 return -EINVAL;
484 }
485
486 BUG_ON(addr & ~DMA_BIT_MASK(36));
487 if (unlikely(addr & ~IWL_TX_DMA_MASK))
488 IWL_ERR(priv, "Unaligned address = %llx\n",
489 (unsigned long long)addr);
490
491 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
492
493 return 0;
494}
495
Samuel Ortiza8e74e22009-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#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700605
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800606static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700607{
608 u16 new_val = 0;
609 u16 beacon_factor = 0;
610
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800611 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
612 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700613 new_val = beacon_val / beacon_factor;
614
John W. Linville41d2f292009-02-20 19:03:31 -0500615 if (!new_val)
616 new_val = MAX_UCODE_BEACON_INTERVAL;
617
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800618 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700619}
620
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800621static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700622{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800623 u64 tsf;
624 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700625 unsigned long flags;
626 struct ieee80211_conf *conf = NULL;
627 u16 beacon_int = 0;
628
629 conf = ieee80211_get_hw_conf(priv->hw);
630
631 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800632 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300633 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700634
Johannes Berg05c914f2008-09-11 00:01:58 +0200635 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800636 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700637 priv->rxon_timing.atim_window = 0;
638 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800639 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
640
Zhu Yib481de92007-09-25 17:54:57 -0700641 /* TODO: we need to get atim_window from upper stack
642 * for now we set to 0 */
643 priv->rxon_timing.atim_window = 0;
644 }
645
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800646 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700647
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800648 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
649 interval_tm = beacon_int * 1024;
650 rem = do_div(tsf, interval_tm);
651 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
652
653 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklere1623442009-01-27 14:27:56 -0800654 IWL_DEBUG_ASSOC(priv, "beacon interval %d beacon timer %d beacon tim %d\n",
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800655 le16_to_cpu(priv->rxon_timing.beacon_interval),
656 le32_to_cpu(priv->rxon_timing.beacon_init_val),
657 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700658}
659
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700660static int iwl_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700661{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700662 iwl_connection_init_rx_config(priv, mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800663 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700664 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
665
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800666 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700667
Mohamed Abbasfde35712007-11-29 11:10:15 +0800668 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700669 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800670 return -EAGAIN;
671
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700672 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700673
674 return 0;
675}
676
Zhu Yib481de92007-09-25 17:54:57 -0700677/******************************************************************************
678 *
679 * Generic RX handler implementations
680 *
681 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800682static void iwl_rx_reply_alive(struct iwl_priv *priv,
683 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700684{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800685 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800686 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700687 struct delayed_work *pwork;
688
689 palive = &pkt->u.alive_frame;
690
Tomas Winklere1623442009-01-27 14:27:56 -0800691 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700692 "0x%01X 0x%01X\n",
693 palive->is_valid, palive->ver_type,
694 palive->ver_subtype);
695
696 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800697 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700698 memcpy(&priv->card_alive_init,
699 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800700 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700701 pwork = &priv->init_alive_start;
702 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800703 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700704 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800705 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700706 pwork = &priv->alive_start;
707 }
708
709 /* We delay the ALIVE response by 5ms to
710 * give the HW RF Kill time to activate... */
711 if (palive->is_valid == UCODE_VALID_OK)
712 queue_delayed_work(priv->workqueue, pwork,
713 msecs_to_jiffies(5));
714 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800715 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700716}
717
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700718static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700719{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700720 struct iwl_priv *priv =
721 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700722 struct sk_buff *beacon;
723
724 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200725 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700726
727 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800728 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700729 return;
730 }
731
732 mutex_lock(&priv->mutex);
733 /* new beacon skb is allocated every time; dispose previous.*/
734 if (priv->ibss_beacon)
735 dev_kfree_skb(priv->ibss_beacon);
736
737 priv->ibss_beacon = beacon;
738 mutex_unlock(&priv->mutex);
739
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700740 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700741}
742
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800743/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700744 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800745 *
746 * This callback is provided in order to send a statistics request.
747 *
748 * This timer function is continually reset to execute within
749 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
750 * was received. We need to ensure we receive the statistics in order
751 * to update the temperature used for calibrating the TXPOWER.
752 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700753static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800754{
755 struct iwl_priv *priv = (struct iwl_priv *)data;
756
757 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
758 return;
759
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700760 /* dont send host command if rf-kill is on */
761 if (!iwl_is_ready_rf(priv))
762 return;
763
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800764 iwl_send_statistics_request(priv, CMD_ASYNC);
765}
766
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700767static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800768 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700769{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700770#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800771 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800772 struct iwl4965_beacon_notif *beacon =
773 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326a2008-06-12 09:47:11 +0800774 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700775
Tomas Winklere1623442009-01-27 14:27:56 -0800776 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700777 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800778 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700779 beacon->beacon_notify_hdr.failure_frame,
780 le32_to_cpu(beacon->ibss_mgr_status),
781 le32_to_cpu(beacon->high_tsf),
782 le32_to_cpu(beacon->low_tsf), rate);
783#endif
784
Johannes Berg05c914f2008-09-11 00:01:58 +0200785 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700786 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
787 queue_work(priv->workqueue, &priv->beacon_update);
788}
789
Zhu Yib481de92007-09-25 17:54:57 -0700790/* Handle notification from uCode that card's power state is changing
791 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700792static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800793 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700794{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800795 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700796 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
797 unsigned long status = priv->status;
798
Tomas Winklere1623442009-01-27 14:27:56 -0800799 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700800 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
801 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
802
803 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
804 RF_CARD_DISABLED)) {
805
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700806 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700807 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
808
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700809 if (!iwl_grab_nic_access(priv)) {
810 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700811 priv, HBUS_TARG_MBX_C,
812 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
813
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700814 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700815 }
816
817 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700818 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700819 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700820 if (!iwl_grab_nic_access(priv)) {
821 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700822 priv, HBUS_TARG_MBX_C,
823 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
824
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700825 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700826 }
827 }
828
829 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700830 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700831 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700832 iwl_read32(priv, CSR_UCODE_DRV_GP1);
833 if (!iwl_grab_nic_access(priv))
834 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700835 }
836 }
837
838 if (flags & HW_CARD_DISABLED)
839 set_bit(STATUS_RF_KILL_HW, &priv->status);
840 else
841 clear_bit(STATUS_RF_KILL_HW, &priv->status);
842
843
844 if (flags & SW_CARD_DISABLED)
845 set_bit(STATUS_RF_KILL_SW, &priv->status);
846 else
847 clear_bit(STATUS_RF_KILL_SW, &priv->status);
848
849 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800850 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700851
852 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
853 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
854 (test_bit(STATUS_RF_KILL_SW, &status) !=
855 test_bit(STATUS_RF_KILL_SW, &priv->status)))
856 queue_work(priv->workqueue, &priv->rf_kill);
857 else
858 wake_up_interruptible(&priv->wait_command_queue);
859}
860
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700861int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800862{
863 int ret;
864 unsigned long flags;
865
866 spin_lock_irqsave(&priv->lock, flags);
867 ret = iwl_grab_nic_access(priv);
868 if (ret)
869 goto err;
870
871 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800872 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800873 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
874 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
875 ~APMG_PS_CTRL_MSK_PWR_SRC);
876 } else {
877 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
878 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
879 ~APMG_PS_CTRL_MSK_PWR_SRC);
880 }
881
882 iwl_release_nic_access(priv);
883err:
884 spin_unlock_irqrestore(&priv->lock, flags);
885 return ret;
886}
887
Zhu Yib481de92007-09-25 17:54:57 -0700888/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700889 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700890 *
891 * Setup the RX handlers for each of the reply types sent from the uCode
892 * to the host.
893 *
894 * This function chains into the hardware specific files for them to setup
895 * any hardware specific handlers as well.
896 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800897static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700898{
Tomas Winkler885ba202008-05-29 16:34:55 +0800899 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700900 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
901 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700902 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700903 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700904 iwl_rx_pm_debug_statistics_notif;
905 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700906
Ben Cahill9fbab512007-11-29 11:09:47 +0800907 /*
908 * The same handler is used for both the REPLY to a discrete
909 * statistics request from the host as well as for the periodic
910 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700911 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800912 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
913 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800914
Tomas Winkler21c339b2008-11-07 09:58:41 -0800915 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800916 iwl_setup_rx_scan_handlers(priv);
917
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800918 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700919 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700920
Tomas Winklerc1354752008-05-29 16:35:04 +0800921 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
922 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800923 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800924 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
925 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800926 /* block ack */
927 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800928 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700929 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700930}
931
Zhu Yib481de92007-09-25 17:54:57 -0700932/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800933 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700934 *
935 * Uses the priv->rx_handlers callback function array to invoke
936 * the appropriate handlers, including command responses,
937 * frame-received notifications, and other notifications.
938 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800939void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700940{
Tomas Winklera55360e2008-05-05 10:22:28 +0800941 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800942 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800943 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700944 u32 r, i;
945 int reclaim;
946 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800947 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800948 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -0700949
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800950 /* uCode's read index (stored in shared DRAM) indicates the last Rx
951 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800952 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700953 i = rxq->read;
954
955 /* Rx interrupt, but nothing sent from uCode */
956 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800957 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700958
Tomas Winklera55360e2008-05-05 10:22:28 +0800959 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800960 fill_rx = 1;
961
Zhu Yib481de92007-09-25 17:54:57 -0700962 while (i != r) {
963 rxb = rxq->queue[i];
964
Ben Cahill9fbab512007-11-29 11:09:47 +0800965 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700966 * then a bug has been introduced in the queue refilling
967 * routines -- catch it here */
968 BUG_ON(rxb == NULL);
969
970 rxq->queue[i] = NULL;
971
Reinette Chatredf833b12009-04-21 10:55:48 -0700972 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
973 priv->hw_params.rx_buf_size + 256,
974 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +0800975 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700976
977 /* Reclaim a command buffer only if this packet is a response
978 * to a (driver-originated) command.
979 * If the packet (e.g. Rx frame) originated from uCode,
980 * there is no command buffer to reclaim.
981 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
982 * but apparently a few don't get set; catch them here. */
983 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
984 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700985 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700986 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800987 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700988 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
989 (pkt->hdr.cmd != REPLY_TX);
990
991 /* Based on type of command response or notification,
992 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700993 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -0700994 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -0800995 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +0800996 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700997 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
998 } else {
999 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001000 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001001 "r %d i %d No handler needed for %s, 0x%02x\n",
1002 r, i, get_cmd_string(pkt->hdr.cmd),
1003 pkt->hdr.cmd);
1004 }
1005
1006 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001007 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07001008 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001009 * as we reclaim the driver command queue */
1010 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001011 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001012 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001013 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001014 }
1015
1016 /* For now we just don't re-use anything. We can tweak this
1017 * later to try and re-use notification packets and SKBs that
1018 * fail to Rx correctly */
1019 if (rxb->skb != NULL) {
1020 priv->alloc_rxb_skb--;
1021 dev_kfree_skb_any(rxb->skb);
1022 rxb->skb = NULL;
1023 }
1024
Zhu Yib481de92007-09-25 17:54:57 -07001025 spin_lock_irqsave(&rxq->lock, flags);
1026 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1027 spin_unlock_irqrestore(&rxq->lock, flags);
1028 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001029 /* If there are a lot of unused frames,
1030 * restock the Rx queue so ucode wont assert. */
1031 if (fill_rx) {
1032 count++;
1033 if (count >= 8) {
1034 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +08001035 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001036 count = 0;
1037 }
1038 }
Zhu Yib481de92007-09-25 17:54:57 -07001039 }
1040
1041 /* Backtrack one entry */
1042 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001043 iwl_rx_queue_restock(priv);
1044}
Tomas Winklera55360e2008-05-05 10:22:28 +08001045
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001046/* call this function to flush any scheduled tasklet */
1047static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1048{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001049 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001050 synchronize_irq(priv->pci_dev->irq);
1051 tasklet_kill(&priv->irq_tasklet);
1052}
1053
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001054static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001055{
1056 unsigned long flags;
1057
1058 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1059 sizeof(priv->staging_rxon));
1060 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001061 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001062
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001063 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001064
1065 spin_lock_irqsave(&priv->lock, flags);
1066 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1067 priv->error_recovering = 0;
1068 spin_unlock_irqrestore(&priv->lock, flags);
1069}
1070
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001071static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001072{
1073 u32 inta, handled = 0;
1074 u32 inta_fh;
1075 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001076#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001077 u32 inta_mask;
1078#endif
1079
1080 spin_lock_irqsave(&priv->lock, flags);
1081
1082 /* Ack/clear/reset pending uCode interrupts.
1083 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1084 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001085 inta = iwl_read32(priv, CSR_INT);
1086 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001087
1088 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1089 * Any new interrupts that happen after this, either while we're
1090 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001091 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1092 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001093
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001094#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001095 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001096 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001097 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001098 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001099 inta, inta_mask, inta_fh);
1100 }
1101#endif
1102
1103 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1104 * atomic, make sure that inta covers all the interrupts that
1105 * we've discovered, even if FH interrupt came in just after
1106 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001107 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001108 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001109 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001110 inta |= CSR_INT_BIT_FH_TX;
1111
1112 /* Now service all interrupt bits discovered above. */
1113 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001114 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001115
1116 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001117 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001118
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001119 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001120
1121 handled |= CSR_INT_BIT_HW_ERR;
1122
1123 spin_unlock_irqrestore(&priv->lock, flags);
1124
1125 return;
1126 }
1127
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001128#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001129 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001130 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001131 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001132 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001133 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001134
1135 /* Alive notification via Rx interrupt will do the real work */
1136 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001137 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001138 }
1139#endif
1140 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001141 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001142
Ben Cahill9fbab512007-11-29 11:09:47 +08001143 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001144 if (inta & CSR_INT_BIT_RF_KILL) {
1145 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001146 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001147 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1148 hw_rf_kill = 1;
1149
Tomas Winklere1623442009-01-27 14:27:56 -08001150 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001151 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001152
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001153 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001154 * the driver allows loading the ucode even if the radio
1155 * is killed. Hence update the killswitch state here. The
1156 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001157 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001158 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1159 if (hw_rf_kill)
1160 set_bit(STATUS_RF_KILL_HW, &priv->status);
1161 else
1162 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1163 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001164 }
Zhu Yib481de92007-09-25 17:54:57 -07001165
1166 handled |= CSR_INT_BIT_RF_KILL;
1167 }
1168
Ben Cahill9fbab512007-11-29 11:09:47 +08001169 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001170 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001171 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001172 handled |= CSR_INT_BIT_CT_KILL;
1173 }
1174
1175 /* Error detected by uCode */
1176 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001177 IWL_ERR(priv, "Microcode SW error detected. "
1178 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001179 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001180 handled |= CSR_INT_BIT_SW_ERR;
1181 }
1182
1183 /* uCode wakes up after power-down sleep */
1184 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001185 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001186 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001187 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1188 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1189 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1190 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1191 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1192 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001193
1194 handled |= CSR_INT_BIT_WAKEUP;
1195 }
1196
1197 /* All uCode command responses, including Tx command responses,
1198 * Rx "responses" (frame-received notification), and other
1199 * notifications from uCode come through here*/
1200 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001201 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001202 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1203 }
1204
1205 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001206 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001207 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001208 /* FH finished to write, send event */
1209 priv->ucode_write_complete = 1;
1210 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001211 }
1212
1213 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001214 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001215
1216 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001217 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001218 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001219 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001220 }
1221
1222 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001223 /* only Re-enable if diabled by irq */
1224 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001225 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001226
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001227#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001228 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001229 inta = iwl_read32(priv, CSR_INT);
1230 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1231 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001232 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001233 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1234 }
1235#endif
1236 spin_unlock_irqrestore(&priv->lock, flags);
1237}
1238
Zhu Yib481de92007-09-25 17:54:57 -07001239/******************************************************************************
1240 *
1241 * uCode download functions
1242 *
1243 ******************************************************************************/
1244
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001245static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001246{
Tomas Winkler98c92212008-01-14 17:46:20 -08001247 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1248 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1249 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1250 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1251 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1252 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001253}
1254
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001255static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001256{
1257 /* Remove all resets to allow NIC to operate */
1258 iwl_write32(priv, CSR_RESET, 0);
1259}
1260
1261
Zhu Yib481de92007-09-25 17:54:57 -07001262/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001263 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001264 *
1265 * Copy into buffers for card to fetch via bus-mastering
1266 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001267static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001268{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001269 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001270 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001271 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001272 const char *name_pre = priv->cfg->fw_name_pre;
1273 const unsigned int api_max = priv->cfg->ucode_api_max;
1274 const unsigned int api_min = priv->cfg->ucode_api_min;
1275 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001276 u8 *src;
1277 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001278 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001279
1280 /* Ask kernel firmware_class module to get the boot firmware off disk.
1281 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001282 for (index = api_max; index >= api_min; index--) {
1283 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1284 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1285 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001286 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001287 buf, ret);
1288 if (ret == -ENOENT)
1289 continue;
1290 else
1291 goto error;
1292 } else {
1293 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001294 IWL_ERR(priv, "Loaded firmware %s, "
1295 "which is deprecated. "
1296 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001297 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001298
Tomas Winklere1623442009-01-27 14:27:56 -08001299 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001300 buf, ucode_raw->size);
1301 break;
1302 }
Zhu Yib481de92007-09-25 17:54:57 -07001303 }
1304
Reinette Chatrea0987a82008-12-02 12:14:06 -08001305 if (ret < 0)
1306 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001307
1308 /* Make sure that we got at least our header! */
1309 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001310 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001311 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001312 goto err_release;
1313 }
1314
1315 /* Data from ucode file: header followed by uCode images */
1316 ucode = (void *)ucode_raw->data;
1317
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001318 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001319 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001320 inst_size = le32_to_cpu(ucode->inst_size);
1321 data_size = le32_to_cpu(ucode->data_size);
1322 init_size = le32_to_cpu(ucode->init_size);
1323 init_data_size = le32_to_cpu(ucode->init_data_size);
1324 boot_size = le32_to_cpu(ucode->boot_size);
1325
Reinette Chatrea0987a82008-12-02 12:14:06 -08001326 /* api_ver should match the api version forming part of the
1327 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01001328 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001329
1330 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001331 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001332 "Driver supports v%u, firmware is v%u.\n",
1333 api_max, api_ver);
1334 priv->ucode_ver = 0;
1335 ret = -EINVAL;
1336 goto err_release;
1337 }
1338 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001339 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001340 "got v%u. New firmware can be obtained "
1341 "from http://www.intellinuxwireless.org.\n",
1342 api_max, api_ver);
1343
Tomas Winkler978785a2008-12-19 10:37:31 +08001344 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1345 IWL_UCODE_MAJOR(priv->ucode_ver),
1346 IWL_UCODE_MINOR(priv->ucode_ver),
1347 IWL_UCODE_API(priv->ucode_ver),
1348 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001349
Tomas Winklere1623442009-01-27 14:27:56 -08001350 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001351 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001352 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001353 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001354 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001355 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001356 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001357 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001358 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001359 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001360 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001361 boot_size);
1362
1363 /* Verify size of file vs. image size info in file's header */
1364 if (ucode_raw->size < sizeof(*ucode) +
1365 inst_size + data_size + init_size +
1366 init_data_size + boot_size) {
1367
Tomas Winklere1623442009-01-27 14:27:56 -08001368 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
Zhu Yib481de92007-09-25 17:54:57 -07001369 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001370 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001371 goto err_release;
1372 }
1373
1374 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001375 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001376 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001377 inst_size);
1378 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001379 goto err_release;
1380 }
1381
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001382 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001383 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001384 data_size);
1385 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001386 goto err_release;
1387 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001388 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001389 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1390 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001391 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001392 goto err_release;
1393 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001394 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001395 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001396 init_data_size);
1397 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001398 goto err_release;
1399 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001400 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001401 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1402 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001403 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001404 goto err_release;
1405 }
1406
1407 /* Allocate ucode buffers for card's bus-master loading ... */
1408
1409 /* Runtime instructions and 2 copies of data:
1410 * 1) unmodified from disk
1411 * 2) backup cache for save/restore during power-downs */
1412 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001413 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001414
1415 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001416 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001417
1418 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001419 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001420
Zhu, Yi1f304e42009-01-23 13:45:22 -08001421 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1422 !priv->ucode_data_backup.v_addr)
1423 goto err_pci_alloc;
1424
Zhu Yib481de92007-09-25 17:54:57 -07001425 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001426 if (init_size && init_data_size) {
1427 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001428 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001429
Tomas Winkler90e759d2007-11-29 11:09:41 +08001430 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001431 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001432
1433 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1434 goto err_pci_alloc;
1435 }
Zhu Yib481de92007-09-25 17:54:57 -07001436
1437 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001438 if (boot_size) {
1439 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001440 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001441
Tomas Winkler90e759d2007-11-29 11:09:41 +08001442 if (!priv->ucode_boot.v_addr)
1443 goto err_pci_alloc;
1444 }
Zhu Yib481de92007-09-25 17:54:57 -07001445
1446 /* Copy images into buffers for card's bus-master reads ... */
1447
1448 /* Runtime instructions (first block of data in file) */
1449 src = &ucode->data[0];
1450 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001451 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001452 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08001453 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001454 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1455
1456 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001457 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001458 src = &ucode->data[inst_size];
1459 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001460 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001461 memcpy(priv->ucode_data.v_addr, src, len);
1462 memcpy(priv->ucode_data_backup.v_addr, src, len);
1463
1464 /* Initialization instructions (3rd block) */
1465 if (init_size) {
1466 src = &ucode->data[inst_size + data_size];
1467 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001468 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001469 len);
Zhu Yib481de92007-09-25 17:54:57 -07001470 memcpy(priv->ucode_init.v_addr, src, len);
1471 }
1472
1473 /* Initialization data (4th block) */
1474 if (init_data_size) {
1475 src = &ucode->data[inst_size + data_size + init_size];
1476 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001477 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001478 len);
Zhu Yib481de92007-09-25 17:54:57 -07001479 memcpy(priv->ucode_init_data.v_addr, src, len);
1480 }
1481
1482 /* Bootstrap instructions (5th block) */
1483 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1484 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001485 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001486 memcpy(priv->ucode_boot.v_addr, src, len);
1487
1488 /* We have our copies now, allow OS release its copies */
1489 release_firmware(ucode_raw);
1490 return 0;
1491
1492 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001493 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001494 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001495 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001496
1497 err_release:
1498 release_firmware(ucode_raw);
1499
1500 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001501 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001502}
1503
Mohamed Abbasada17512008-11-07 09:58:34 -08001504/* temporary */
1505static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1506 struct sk_buff *skb);
1507
Zhu Yib481de92007-09-25 17:54:57 -07001508/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001509 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001510 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001511 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001512 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001513static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001514{
Tomas Winkler57aab752008-04-14 21:16:03 -07001515 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001516
Tomas Winklere1623442009-01-27 14:27:56 -08001517 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001518
1519 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1520 /* We had an error bringing up the hardware, so take it
1521 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001522 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001523 goto restart;
1524 }
1525
1526 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1527 * This is a paranoid check, because we would not have gotten the
1528 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001529 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001530 /* Runtime instruction load was bad;
1531 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001532 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001533 goto restart;
1534 }
1535
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001536 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001537 ret = priv->cfg->ops->lib->alive_notify(priv);
1538 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001539 IWL_WARN(priv,
1540 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001541 goto restart;
1542 }
1543
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001544 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001545 set_bit(STATUS_ALIVE, &priv->status);
1546
Tomas Winklerfee12472008-04-03 16:05:21 -07001547 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001548 return;
1549
Johannes Berg36d68252008-05-15 12:55:26 +02001550 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001551
1552 priv->active_rate = priv->rates_mask;
1553 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1554
Tomas Winkler3109ece2008-03-28 16:33:35 -07001555 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001556 struct iwl_rxon_cmd *active_rxon =
1557 (struct iwl_rxon_cmd *)&priv->active_rxon;
Mohamed Abbas019fb972009-03-17 21:59:18 -07001558 /* apply any changes in staging */
1559 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001560 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1561 } else {
1562 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001563 iwl_connection_init_rx_config(priv, priv->iw_mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001564 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001565 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1566 }
1567
Ben Cahill9fbab512007-11-29 11:09:47 +08001568 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001569 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001570
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001571 iwl_reset_run_time_calib(priv);
1572
Zhu Yib481de92007-09-25 17:54:57 -07001573 /* Configure the adapter for unassociated operation */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001574 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001575
1576 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001577 iwl_rf_kill_ct_config(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08001578
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001579 iwl_leds_register(priv);
1580
Tomas Winklere1623442009-01-27 14:27:56 -08001581 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001582 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08001583 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001584
1585 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001586 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001587
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08001588 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001589
Mohamed Abbasada17512008-11-07 09:58:34 -08001590 /* reassociate for ADHOC mode */
1591 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1592 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1593 priv->vif);
1594 if (beacon)
1595 iwl_mac_beacon_update(priv->hw, beacon);
1596 }
1597
1598
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001599 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001600 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001601
Zhu Yib481de92007-09-25 17:54:57 -07001602 return;
1603
1604 restart:
1605 queue_work(priv->workqueue, &priv->restart);
1606}
1607
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001608static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001609
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001610static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001611{
1612 unsigned long flags;
1613 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001614
Tomas Winklere1623442009-01-27 14:27:56 -08001615 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001616
Zhu Yib481de92007-09-25 17:54:57 -07001617 if (!exit_pending)
1618 set_bit(STATUS_EXIT_PENDING, &priv->status);
1619
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001620 iwl_leds_unregister(priv);
1621
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001622 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001623
1624 /* Unblock any waiting calls */
1625 wake_up_interruptible_all(&priv->wait_command_queue);
1626
Zhu Yib481de92007-09-25 17:54:57 -07001627 /* Wipe out the EXIT_PENDING status bit if we are not actually
1628 * exiting the module */
1629 if (!exit_pending)
1630 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1631
1632 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001633 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07001634
1635 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001636 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001637 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001638 spin_unlock_irqrestore(&priv->lock, flags);
1639 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001640
1641 if (priv->mac80211_registered)
1642 ieee80211_stop_queues(priv->hw);
1643
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001644 /* If we have not previously called iwl_init() then
Zhu Yib481de92007-09-25 17:54:57 -07001645 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07001646 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001647 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1648 STATUS_RF_KILL_HW |
1649 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1650 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001651 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1652 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001653 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001654 STATUS_IN_SUSPEND |
1655 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1656 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001657 goto exit;
1658 }
1659
1660 /* ...otherwise clear out all the status bits but the RF Kill and
1661 * SUSPEND bits and continue taking the NIC down. */
1662 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1663 STATUS_RF_KILL_HW |
1664 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1665 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001666 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1667 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001668 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
1669 STATUS_IN_SUSPEND |
1670 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001671 STATUS_FW_ERROR |
1672 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1673 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001674
1675 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001676 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08001677 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07001678 spin_unlock_irqrestore(&priv->lock, flags);
1679
Tomas Winklerda1bc452008-05-29 16:35:00 +08001680 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08001681 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001682
1683 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001684 if (!iwl_grab_nic_access(priv)) {
1685 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07001686 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001687 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001688 }
1689 spin_unlock_irqrestore(&priv->lock, flags);
1690
1691 udelay(5);
1692
Tomas Winkler7f066102008-05-29 16:34:57 +08001693 /* FIXME: apm_ops.suspend(priv) */
Gregory Greenmand5353112008-09-03 11:18:49 +08001694 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
1695 priv->cfg->ops->lib->apm_ops.stop(priv);
1696 else
1697 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001698 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08001699 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001700
1701 if (priv->ibss_beacon)
1702 dev_kfree_skb(priv->ibss_beacon);
1703 priv->ibss_beacon = NULL;
1704
1705 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08001706 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001707}
1708
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001709static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001710{
1711 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001712 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001713 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08001714
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001715 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001716}
1717
1718#define MAX_HW_RESTARTS 5
1719
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001720static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001721{
Tomas Winkler57aab752008-04-14 21:16:03 -07001722 int i;
1723 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001724
1725 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001726 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001727 return -EIO;
1728 }
1729
Reinette Chatree903fbd2008-01-30 22:05:15 -08001730 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001731 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08001732 return -EIO;
1733 }
1734
Zhu Yie655b9f2008-01-24 02:19:38 -08001735 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08001736 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08001737 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001738 else
Zhu Yie655b9f2008-01-24 02:19:38 -08001739 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001740
Tomas Winklerc1842d62008-08-04 16:00:43 +08001741 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001742 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001743 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001744 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08001745 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001746 }
1747
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001748 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001749
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001750 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001751 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001752 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07001753 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001754 }
1755
1756 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001757 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1758 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001759 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1760
1761 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001762 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001763 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001764
1765 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001766 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1767 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001768
1769 /* Copy original ucode data image from disk into backup cache.
1770 * This will be used to initialize the on-board processor's
1771 * data SRAM for a clean start when the runtime program first loads. */
1772 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08001773 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07001774
Zhu Yib481de92007-09-25 17:54:57 -07001775 for (i = 0; i < MAX_HW_RESTARTS; i++) {
1776
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001777 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001778
1779 /* load bootstrap state machine,
1780 * load bootstrap program into processor's memory,
1781 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07001782 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001783
Tomas Winkler57aab752008-04-14 21:16:03 -07001784 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001785 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1786 ret);
Zhu Yib481de92007-09-25 17:54:57 -07001787 continue;
1788 }
1789
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08001790 /* Clear out the uCode error bit if it is set */
1791 clear_bit(STATUS_FW_ERROR, &priv->status);
1792
Zhu Yib481de92007-09-25 17:54:57 -07001793 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001794 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001795
Tomas Winklere1623442009-01-27 14:27:56 -08001796 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001797
1798 return 0;
1799 }
1800
1801 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001802 __iwl_down(priv);
Mohamed Abbas64e72c32008-06-12 09:47:03 +08001803 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001804
1805 /* tried to restart and config the device for as long as our
1806 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001807 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07001808 return -EIO;
1809}
1810
1811
1812/*****************************************************************************
1813 *
1814 * Workqueue callbacks
1815 *
1816 *****************************************************************************/
1817
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001818static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001819{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001820 struct iwl_priv *priv =
1821 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001822
1823 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1824 return;
1825
1826 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08001827 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001828 mutex_unlock(&priv->mutex);
1829}
1830
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001831static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001832{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001833 struct iwl_priv *priv =
1834 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001835
1836 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1837 return;
1838
1839 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001840 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001841 mutex_unlock(&priv->mutex);
1842}
1843
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08001844static void iwl_bg_run_time_calib_work(struct work_struct *work)
1845{
1846 struct iwl_priv *priv = container_of(work, struct iwl_priv,
1847 run_time_calib_work);
1848
1849 mutex_lock(&priv->mutex);
1850
1851 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1852 test_bit(STATUS_SCANNING, &priv->status)) {
1853 mutex_unlock(&priv->mutex);
1854 return;
1855 }
1856
1857 if (priv->start_calib) {
1858 iwl_chain_noise_calibration(priv, &priv->statistics);
1859
1860 iwl_sensitivity_calibration(priv, &priv->statistics);
1861 }
1862
1863 mutex_unlock(&priv->mutex);
1864 return;
1865}
1866
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001867static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001868{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001869 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07001870
1871 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1872 return;
1873
1874 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001875 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001876 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02001877 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001878}
1879
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001880static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001881{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001882 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07001883
1884 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1885 return;
1886
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001887 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001888 queue_work(priv->workqueue, &priv->up);
1889}
1890
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001891static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001892{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001893 struct iwl_priv *priv =
1894 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07001895
1896 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1897 return;
1898
1899 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08001900 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001901 mutex_unlock(&priv->mutex);
1902}
1903
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001904#define IWL_DELAY_NEXT_SCAN (HZ*2)
1905
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001906static void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001907{
Zhu Yib481de92007-09-25 17:54:57 -07001908 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07001909 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001910 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07001911
Johannes Berg05c914f2008-09-11 00:01:58 +02001912 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001913 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07001914 return;
1915 }
1916
Tomas Winklere1623442009-01-27 14:27:56 -08001917 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07001918 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001919
1920
1921 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1922 return;
1923
Zhu Yib481de92007-09-25 17:54:57 -07001924
Reinette Chatre508e32e2008-04-14 21:16:13 -07001925 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08001926 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07001927
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08001928 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001929 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08001930
Zhu Yib481de92007-09-25 17:54:57 -07001931 conf = ieee80211_get_hw_conf(priv->hw);
1932
1933 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001934 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001935
Tomas Winkler3195c1f2008-10-08 09:37:30 +08001936 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07001937 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07001938 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07001939 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001940 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07001941 "Attempting to continue.\n");
1942
1943 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
1944
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08001945 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001946
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07001947 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001948 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
1949
Tomas Winklere1623442009-01-27 14:27:56 -08001950 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001951 priv->assoc_id, priv->beacon_int);
1952
1953 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
1954 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1955 else
1956 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1957
1958 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
1959 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1960 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1961 else
1962 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1963
Johannes Berg05c914f2008-09-11 00:01:58 +02001964 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001965 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1966
1967 }
1968
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001969 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001970
1971 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001972 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07001973 break;
1974
Johannes Berg05c914f2008-09-11 00:01:58 +02001975 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07001976
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001977 /* assume default assoc id */
1978 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001979
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001980 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001981 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001982
1983 break;
1984
1985 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001986 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001987 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001988 break;
1989 }
1990
Johannes Berg05c914f2008-09-11 00:01:58 +02001991 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001992 priv->assoc_station_added = 1;
1993
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001994 spin_lock_irqsave(&priv->lock, flags);
1995 iwl_activate_qos(priv, 0);
1996 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08001997
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08001998 /* the chain noise calibration will enabled PM upon completion
1999 * If chain noise has already been run, then we need to enable
2000 * power management here */
2001 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2002 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002003
2004 /* Enable Rx differential gain and sensitivity calibrations */
2005 iwl_chain_noise_reset(priv);
2006 priv->start_calib = 1;
2007
Reinette Chatre508e32e2008-04-14 21:16:13 -07002008}
2009
Zhu Yib481de92007-09-25 17:54:57 -07002010/*****************************************************************************
2011 *
2012 * mac80211 entry point functions
2013 *
2014 *****************************************************************************/
2015
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002016#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a669262008-01-14 17:46:18 -08002017
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002018static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002019{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002020 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08002021 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002022
Tomas Winklere1623442009-01-27 14:27:56 -08002023 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002024
2025 /* we should be verifying the device is ready to be opened */
2026 mutex_lock(&priv->mutex);
2027
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002028 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a669262008-01-14 17:46:18 -08002029 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2030 * ucode filename and max sizes are card-specific. */
2031
2032 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002033 ret = iwl_read_ucode(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002034 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002035 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08002036 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002037 return ret;
Zhu Yi5a669262008-01-14 17:46:18 -08002038 }
2039 }
2040
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002041 ret = __iwl_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002042
Zhu Yib481de92007-09-25 17:54:57 -07002043 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08002044
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002045 iwl_rfkill_set_hw_state(priv);
2046
Zhu Yie655b9f2008-01-24 02:19:38 -08002047 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002048 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002049
Tomas Winklerc1842d62008-08-04 16:00:43 +08002050 if (iwl_is_rfkill(priv))
2051 goto out;
2052
Tomas Winklere1623442009-01-27 14:27:56 -08002053 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002054
2055 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2056 return 0;
2057
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002058 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a669262008-01-14 17:46:18 -08002059 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002060 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2061 test_bit(STATUS_READY, &priv->status),
2062 UCODE_READY_TIMEOUT);
2063 if (!ret) {
2064 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002065 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002066 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002067 return -ETIMEDOUT;
Zhu Yi5a669262008-01-14 17:46:18 -08002068 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002069 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002070
Tomas Winklerc1842d62008-08-04 16:00:43 +08002071out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002072 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002073 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002074 return 0;
2075}
2076
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002077static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002078{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002079 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002080
Tomas Winklere1623442009-01-27 14:27:56 -08002081 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002082
Zhu Yie655b9f2008-01-24 02:19:38 -08002083 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08002084 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002085 return;
2086 }
2087
Zhu Yib481de92007-09-25 17:54:57 -07002088 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08002089
Tomas Winklerfee12472008-04-03 16:05:21 -07002090 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002091 /* stop mac, cancel any scan request and clear
2092 * RXON_FILTER_ASSOC_MSK BIT
2093 */
Zhu Yi5a669262008-01-14 17:46:18 -08002094 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002095 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002096 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002097 }
2098
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002099 iwl_down(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002100
2101 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002102
2103 /* enable interrupts again in order to receive rfkill changes */
2104 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2105 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002106
Tomas Winklere1623442009-01-27 14:27:56 -08002107 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002108}
2109
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002110static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002111{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002112 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002113
Tomas Winklere1623442009-01-27 14:27:56 -08002114 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002115
Tomas Winklere1623442009-01-27 14:27:56 -08002116 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002117 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002118
Johannes Berge039fa42008-05-15 12:55:29 +02002119 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002120 dev_kfree_skb_any(skb);
2121
Tomas Winklere1623442009-01-27 14:27:56 -08002122 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002123 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002124}
2125
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002126static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002127 struct ieee80211_if_init_conf *conf)
2128{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002129 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002130 unsigned long flags;
2131
Tomas Winklere1623442009-01-27 14:27:56 -08002132 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002133
Johannes Berg32bfd352007-12-19 01:31:26 +01002134 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002135 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002136 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002137 }
2138
2139 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002140 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002141 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002142
2143 spin_unlock_irqrestore(&priv->lock, flags);
2144
2145 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002146
2147 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08002148 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002149 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2150 }
Zhu Yib481de92007-09-25 17:54:57 -07002151
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002152 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002153 /* we are not ready, will run again when ready */
2154 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002155
Zhu Yib481de92007-09-25 17:54:57 -07002156 mutex_unlock(&priv->mutex);
2157
Tomas Winklere1623442009-01-27 14:27:56 -08002158 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002159 return 0;
2160}
2161
2162/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002163 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002164 *
2165 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2166 * be set inappropriately and the driver currently sets the hardware up to
2167 * use it whenever needed.
2168 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002169static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002170{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002171 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002172 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002173 struct ieee80211_conf *conf = &hw->conf;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002174 unsigned long flags = 0;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002175 int ret = 0;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002176 u16 ch;
2177 int scan_active = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002178
2179 mutex_lock(&priv->mutex);
Mohamed Abbas019fb972009-03-17 21:59:18 -07002180 IWL_DEBUG_MAC80211(priv, "enter to channel %d changed 0x%X\n",
2181 conf->channel->hw_value, changed);
Zhu Yib481de92007-09-25 17:54:57 -07002182
Assaf Krauss1ea87392008-03-18 14:57:50 -07002183 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Mohamed Abbas019fb972009-03-17 21:59:18 -07002184 test_bit(STATUS_SCANNING, &priv->status))) {
2185 scan_active = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002186 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002187 }
2188
Mohamed Abbas019fb972009-03-17 21:59:18 -07002189
2190 /* during scanning mac80211 will delay channel setting until
2191 * scan finish with changed = 0
2192 */
2193 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2194 if (scan_active)
2195 goto set_ch_out;
2196
2197 ch = ieee80211_frequency_to_channel(conf->channel->center_freq);
2198 ch_info = iwl_get_channel_info(priv, conf->channel->band, ch);
2199 if (!is_channel_valid(ch_info)) {
2200 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2201 ret = -EINVAL;
2202 goto set_ch_out;
2203 }
2204
2205 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2206 !is_channel_ibss(ch_info)) {
2207 IWL_ERR(priv, "channel %d in band %d not "
2208 "IBSS channel\n",
2209 conf->channel->hw_value, conf->channel->band);
2210 ret = -EINVAL;
2211 goto set_ch_out;
2212 }
2213
2214 priv->current_ht_config.is_ht = conf_is_ht(conf);
2215
2216 spin_lock_irqsave(&priv->lock, flags);
2217
2218
2219 /* if we are switching from ht to 2.4 clear flags
2220 * from any ht related info since 2.4 does not
2221 * support ht */
2222 if ((le16_to_cpu(priv->staging_rxon.channel) != ch))
2223 priv->staging_rxon.flags = 0;
2224
2225 iwl_set_rxon_channel(priv, conf->channel);
2226
2227 iwl_set_flags_for_band(priv, conf->channel->band);
2228 spin_unlock_irqrestore(&priv->lock, flags);
2229 set_ch_out:
2230 /* The list of supported rates and rate mask can be different
2231 * for each band; since the band may have changed, reset
2232 * the rate mask to what mac80211 lists */
2233 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002234 }
2235
Mohamed Abbas019fb972009-03-17 21:59:18 -07002236 if (changed & IEEE80211_CONF_CHANGE_PS) {
2237 if (conf->flags & IEEE80211_CONF_PS)
2238 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2239 else
2240 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2241 if (ret)
2242 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
2243
Assaf Krauss398f9e72008-06-12 09:47:06 +08002244 }
2245
Mohamed Abbas019fb972009-03-17 21:59:18 -07002246 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2247 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2248 priv->tx_power_user_lmt, conf->power_level);
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002249
Mohamed Abbas019fb972009-03-17 21:59:18 -07002250 iwl_set_tx_power(priv, conf->power_level, false);
Zhu Yib481de92007-09-25 17:54:57 -07002251 }
Mohamed Abbas019fb972009-03-17 21:59:18 -07002252
2253 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2254 iwl_set_rxon_chain(priv);
2255
2256 if (changed & IEEE80211_CONF_CHANGE_RADIO_ENABLED) {
2257 if (conf->radio_enabled &&
2258 iwl_radio_kill_sw_enable_radio(priv)) {
2259 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - "
2260 "waiting for uCode\n");
2261 goto out;
2262 }
2263
2264 if (!conf->radio_enabled)
2265 iwl_radio_kill_sw_disable_radio(priv);
2266 }
Zhu Yib481de92007-09-25 17:54:57 -07002267
Zhu Yib481de92007-09-25 17:54:57 -07002268 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08002269 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002270 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002271 }
2272
Mohamed Abbas019fb972009-03-17 21:59:18 -07002273 if (!iwl_is_ready(priv)) {
2274 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002275 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002276 }
2277
Mohamed Abbas019fb972009-03-17 21:59:18 -07002278 if (scan_active)
2279 goto out;
Rick Farrington7b841722009-01-23 13:45:10 -08002280
Zhu Yib481de92007-09-25 17:54:57 -07002281 if (memcmp(&priv->active_rxon,
2282 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002283 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002284 else
Tomas Winklere1623442009-01-27 14:27:56 -08002285 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002286
Zhu Yib481de92007-09-25 17:54:57 -07002287
Zhu Yia0646472007-12-20 14:10:01 +08002288out:
Mohamed Abbas019fb972009-03-17 21:59:18 -07002289 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yi5a669262008-01-14 17:46:18 -08002290 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002291 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002292}
2293
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002294static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002295{
Tomas Winkler857485c2008-03-21 13:53:44 -07002296 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002297 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002298
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002299 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002300 return;
2301
2302 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002303 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002304
2305 /* RXON - unassoc (to set timing command) */
2306 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002307 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002308
2309 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002310 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002311 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002312 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002313 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002314 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002315 "Attempting to continue.\n");
2316
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002317 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002318
2319 /* FIXME: what should be the assoc_id for AP? */
2320 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2321 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2322 priv->staging_rxon.flags |=
2323 RXON_FLG_SHORT_PREAMBLE_MSK;
2324 else
2325 priv->staging_rxon.flags &=
2326 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2327
2328 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2329 if (priv->assoc_capability &
2330 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2331 priv->staging_rxon.flags |=
2332 RXON_FLG_SHORT_SLOT_MSK;
2333 else
2334 priv->staging_rxon.flags &=
2335 ~RXON_FLG_SHORT_SLOT_MSK;
2336
Johannes Berg05c914f2008-09-11 00:01:58 +02002337 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002338 priv->staging_rxon.flags &=
2339 ~RXON_FLG_SHORT_SLOT_MSK;
2340 }
2341 /* restore RXON assoc */
2342 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002343 iwl_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002344 spin_lock_irqsave(&priv->lock, flags);
2345 iwl_activate_qos(priv, 1);
2346 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002347 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002348 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002349 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002350
2351 /* FIXME - we need to add code here to detect a totally new
2352 * configuration, reset the AP, unassoc, rxon timing, assoc,
2353 * clear sta table, add BCAST sta... */
2354}
2355
Johannes Berg9d139c82008-07-09 14:40:37 +02002356
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002357static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002358 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002359 struct ieee80211_if_conf *conf)
2360{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002361 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002362 int rc;
2363
2364 if (conf == NULL)
2365 return -EIO;
2366
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002367 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002368 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002369 return 0;
2370 }
2371
Johannes Berg05c914f2008-09-11 00:01:58 +02002372 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002373 conf->changed & IEEE80211_IFCC_BEACON) {
2374 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2375 if (!beacon)
2376 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002377 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002378 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002379 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002380 if (rc)
2381 return rc;
2382 }
2383
Tomas Winklerfee12472008-04-03 16:05:21 -07002384 if (!iwl_is_alive(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08002385 return -EAGAIN;
2386
Zhu Yib481de92007-09-25 17:54:57 -07002387 mutex_lock(&priv->mutex);
2388
Zhu Yib481de92007-09-25 17:54:57 -07002389 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08002390 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002391
Johannes Berg4150c572007-09-17 01:29:23 -04002392/*
2393 * very dubious code was here; the probe filtering flag is never set:
2394 *
Zhu Yib481de92007-09-25 17:54:57 -07002395 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2396 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002397 */
Zhu Yib481de92007-09-25 17:54:57 -07002398
Johannes Berg05c914f2008-09-11 00:01:58 +02002399 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002400 if (!conf->bssid) {
2401 conf->bssid = priv->mac_addr;
2402 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08002403 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002404 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002405 }
2406 if (priv->ibss_beacon)
2407 dev_kfree_skb(priv->ibss_beacon);
2408
Johannes Berg9d139c82008-07-09 14:40:37 +02002409 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002410 }
2411
Tomas Winklerfee12472008-04-03 16:05:21 -07002412 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002413 goto done;
2414
Zhu Yib481de92007-09-25 17:54:57 -07002415 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2416 !is_multicast_ether_addr(conf->bssid)) {
2417 /* If there is currently a HW scan going on in the background
2418 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002419 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002420 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002421 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002422 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002423 mutex_unlock(&priv->mutex);
2424 return -EAGAIN;
2425 }
2426 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2427
2428 /* TODO: Audit driver for usage of these members and see
2429 * if mac80211 deprecates them (priv->bssid looks like it
2430 * shouldn't be there, but I haven't scanned the IBSS code
2431 * to verify) - jpk */
2432 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2433
Johannes Berg05c914f2008-09-11 00:01:58 +02002434 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002435 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002436 else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002437 rc = iwl_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002438 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002439 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002440 priv, priv->active_rxon.bssid_addr, 1);
2441 }
2442
2443 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002444 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002445 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002446 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002447 }
2448
Mohamed Abbasfde35712007-11-29 11:10:15 +08002449 done:
Tomas Winklere1623442009-01-27 14:27:56 -08002450 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002451 mutex_unlock(&priv->mutex);
2452
2453 return 0;
2454}
2455
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002456static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002457 struct ieee80211_if_init_conf *conf)
2458{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002459 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002460
Tomas Winklere1623442009-01-27 14:27:56 -08002461 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002462
2463 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002464
Tomas Winklerfee12472008-04-03 16:05:21 -07002465 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002466 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002467 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002468 iwl_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002469 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002470 if (priv->vif == conf->vif) {
2471 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002472 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002473 }
2474 mutex_unlock(&priv->mutex);
2475
Tomas Winklere1623442009-01-27 14:27:56 -08002476 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002477
2478}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002479
Tomas Winkler3109ece2008-03-28 16:33:35 -07002480#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002481static void iwl_bss_info_changed(struct ieee80211_hw *hw,
Johannes Berg471b3ef2007-12-28 14:32:58 +01002482 struct ieee80211_vif *vif,
2483 struct ieee80211_bss_conf *bss_conf,
2484 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02002485{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002486 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02002487
Tomas Winklere1623442009-01-27 14:27:56 -08002488 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002489
Johannes Berg471b3ef2007-12-28 14:32:58 +01002490 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002491 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
Tomas Winkler3109ece2008-03-28 16:33:35 -07002492 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002493 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02002494 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2495 else
2496 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2497 }
2498
Johannes Berg471b3ef2007-12-28 14:32:58 +01002499 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winklere1623442009-01-27 14:27:56 -08002500 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01002501 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02002502 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2503 else
2504 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2505 }
2506
Tomas Winkler98952d52008-03-28 16:33:33 -07002507 if (changes & BSS_CHANGED_HT) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002508 iwl_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002509 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07002510 }
2511
Johannes Berg471b3ef2007-12-28 14:32:58 +01002512 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002513 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002514 /* This should never happen as this function should
2515 * never be called from interrupt context. */
2516 if (WARN_ON_ONCE(in_interrupt()))
2517 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002518 if (bss_conf->assoc) {
2519 priv->assoc_id = bss_conf->aid;
2520 priv->beacon_int = bss_conf->beacon_int;
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002521 priv->power_data.dtim_period = bss_conf->dtim_period;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002522 priv->timestamp = bss_conf->timestamp;
2523 priv->assoc_capability = bss_conf->assoc_capability;
Tomas Winkler9ccacb82008-09-16 14:01:03 +08002524
2525 /* we have just associated, don't start scan too early
2526 * leave time for EAPOL exchange to complete
2527 */
Tomas Winkler3109ece2008-03-28 16:33:35 -07002528 priv->next_scan_jiffies = jiffies +
2529 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002530 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002531 iwl_post_associate(priv);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002532 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002533 } else {
2534 priv->assoc_id = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08002535 IWL_DEBUG_MAC80211(priv, "DISASSOC %d\n", bss_conf->assoc);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002536 }
2537 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
Tomas Winklere1623442009-01-27 14:27:56 -08002538 IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07002539 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002540 }
2541
Tomas Winkler220173b2007-10-16 00:50:25 +02002542}
Zhu Yib481de92007-09-25 17:54:57 -07002543
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002544static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002545 struct ieee80211_key_conf *keyconf, const u8 *addr,
2546 u32 iv32, u16 *phase1key)
2547{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002548
Tomas Winkler9f586712008-11-12 13:14:05 -08002549 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002550 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002551
Tomas Winkler9f586712008-11-12 13:14:05 -08002552 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002553
Tomas Winklere1623442009-01-27 14:27:56 -08002554 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002555}
2556
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002557static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002558 struct ieee80211_vif *vif,
2559 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002560 struct ieee80211_key_conf *key)
2561{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002562 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002563 const u8 *addr;
2564 int ret;
2565 u8 sta_id;
2566 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002567
Tomas Winklere1623442009-01-27 14:27:56 -08002568 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002569
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002570 if (priv->hw_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002571 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002572 return -EOPNOTSUPP;
2573 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002574 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07002575 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002576 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002577 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002578 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002579 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002580
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002581 }
Zhu Yib481de92007-09-25 17:54:57 -07002582
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002583 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002584 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002585 mutex_unlock(&priv->mutex);
2586
2587 /* If we are getting WEP group key and we didn't receive any key mapping
2588 * so far, we are in legacy wep mode (group key only), otherwise we are
2589 * in 1X mode.
2590 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002591 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002592 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002593 if (cmd == SET_KEY)
2594 is_default_wep_key = !priv->key_mapping_key;
2595 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002596 is_default_wep_key =
2597 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002598 }
mabbas052c4b92007-10-25 17:15:43 +08002599
Zhu Yib481de92007-09-25 17:54:57 -07002600 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002601 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002602 if (is_default_wep_key)
2603 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002604 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002605 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002606
Tomas Winklere1623442009-01-27 14:27:56 -08002607 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002608 break;
2609 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002610 if (is_default_wep_key)
2611 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002612 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002613 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002614
Tomas Winklere1623442009-01-27 14:27:56 -08002615 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002616 break;
2617 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002618 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002619 }
2620
Tomas Winklere1623442009-01-27 14:27:56 -08002621 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002622
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002623 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002624}
2625
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002626static int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07002627 const struct ieee80211_tx_queue_params *params)
2628{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002629 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002630 unsigned long flags;
2631 int q;
Zhu Yib481de92007-09-25 17:54:57 -07002632
Tomas Winklere1623442009-01-27 14:27:56 -08002633 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002634
Tomas Winklerfee12472008-04-03 16:05:21 -07002635 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002636 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002637 return -EIO;
2638 }
2639
2640 if (queue >= AC_NUM) {
Tomas Winklere1623442009-01-27 14:27:56 -08002641 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
Zhu Yib481de92007-09-25 17:54:57 -07002642 return 0;
2643 }
2644
Zhu Yib481de92007-09-25 17:54:57 -07002645 q = AC_NUM - 1 - queue;
2646
2647 spin_lock_irqsave(&priv->lock, flags);
2648
2649 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2650 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2651 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2652 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01002653 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07002654
2655 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2656 priv->qos_data.qos_active = 1;
2657
Johannes Berg05c914f2008-09-11 00:01:58 +02002658 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002659 iwl_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002660 else if (priv->assoc_id && iwl_is_associated(priv))
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002661 iwl_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002662
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002663 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002664
Tomas Winklere1623442009-01-27 14:27:56 -08002665 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002666 return 0;
2667}
2668
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002669static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08002670 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002671 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002672{
2673 struct iwl_priv *priv = hw->priv;
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002674 int ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002675
Tomas Winklere1623442009-01-27 14:27:56 -08002676 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002677 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002678
2679 if (!(priv->cfg->sku & IWL_SKU_N))
2680 return -EACCES;
2681
2682 switch (action) {
2683 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002684 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002685 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002686 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002687 IWL_DEBUG_HT(priv, "stop Rx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002688 ret = iwl_sta_rx_agg_stop(priv, sta->addr, tid);
2689 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2690 return 0;
2691 else
2692 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002693 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002694 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002695 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002696 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002697 IWL_DEBUG_HT(priv, "stop Tx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002698 ret = iwl_tx_agg_stop(priv, sta->addr, tid);
2699 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2700 return 0;
2701 else
2702 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002703 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002704 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002705 return -EINVAL;
2706 break;
2707 }
2708 return 0;
2709}
Tomas Winkler9f586712008-11-12 13:14:05 -08002710
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002711static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002712 struct ieee80211_tx_queue_stats *stats)
2713{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002714 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002715 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08002716 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002717 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07002718 unsigned long flags;
2719
Tomas Winklere1623442009-01-27 14:27:56 -08002720 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002721
Tomas Winklerfee12472008-04-03 16:05:21 -07002722 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002723 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002724 return -EIO;
2725 }
2726
2727 spin_lock_irqsave(&priv->lock, flags);
2728
2729 for (i = 0; i < AC_NUM; i++) {
2730 txq = &priv->txq[i];
2731 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002732 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07002733
Johannes Berg57ffc582008-04-29 17:18:59 +02002734 stats[i].len = q->n_window - avail;
2735 stats[i].limit = q->n_window - q->high_mark;
2736 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07002737
2738 }
2739 spin_unlock_irqrestore(&priv->lock, flags);
2740
Tomas Winklere1623442009-01-27 14:27:56 -08002741 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002742
2743 return 0;
2744}
2745
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002746static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002747 struct ieee80211_low_level_stats *stats)
2748{
Ester Kummerbf403db2008-05-05 10:22:40 +08002749 struct iwl_priv *priv = hw->priv;
2750
2751 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002752 IWL_DEBUG_MAC80211(priv, "enter\n");
2753 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002754
2755 return 0;
2756}
2757
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002758static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002759{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002760 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002761 unsigned long flags;
2762
2763 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002764 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002765
Zhu Yib481de92007-09-25 17:54:57 -07002766 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02002767 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07002768 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002769
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002770 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002771
Zhu Yib481de92007-09-25 17:54:57 -07002772 spin_lock_irqsave(&priv->lock, flags);
2773 priv->assoc_id = 0;
2774 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002775 priv->assoc_station_added = 0;
2776
2777 /* new association get rid of ibss beacon skb */
2778 if (priv->ibss_beacon)
2779 dev_kfree_skb(priv->ibss_beacon);
2780
2781 priv->ibss_beacon = NULL;
2782
2783 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002784 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002785 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07002786 priv->beacon_int = 0;
2787
2788 spin_unlock_irqrestore(&priv->lock, flags);
2789
Tomas Winklerfee12472008-04-03 16:05:21 -07002790 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002791 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002792 mutex_unlock(&priv->mutex);
2793 return;
2794 }
2795
mabbas052c4b92007-10-25 17:15:43 +08002796 /* we are restarting association process
2797 * clear RXON_FILTER_ASSOC_MSK bit
2798 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002799 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002800 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08002801 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002802 iwl_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08002803 }
2804
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002805 iwl_power_update_mode(priv, 0);
2806
Zhu Yib481de92007-09-25 17:54:57 -07002807 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02002808 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08002809
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002810 /* switch to CAM during association period.
2811 * the ucode will block any association/authentication
2812 * frome during assiciation period if it can not hear
2813 * the AP because of PM. the timer enable PM back is
2814 * association do not complete
2815 */
2816 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
2817 IEEE80211_CHAN_RADAR))
2818 iwl_power_disable_management(priv, 3000);
2819
Tomas Winklere1623442009-01-27 14:27:56 -08002820 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002821 mutex_unlock(&priv->mutex);
2822 return;
2823 }
2824
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002825 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002826
2827 mutex_unlock(&priv->mutex);
2828
Tomas Winklere1623442009-01-27 14:27:56 -08002829 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002830}
2831
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002832static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002833{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002834 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002835 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08002836 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07002837
Tomas Winklere1623442009-01-27 14:27:56 -08002838 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002839
Tomas Winklerfee12472008-04-03 16:05:21 -07002840 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002841 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002842 return -EIO;
2843 }
2844
Johannes Berg05c914f2008-09-11 00:01:58 +02002845 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002846 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002847 return -EIO;
2848 }
2849
2850 spin_lock_irqsave(&priv->lock, flags);
2851
2852 if (priv->ibss_beacon)
2853 dev_kfree_skb(priv->ibss_beacon);
2854
2855 priv->ibss_beacon = skb;
2856
2857 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08002858 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08002859 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07002860
Tomas Winklere1623442009-01-27 14:27:56 -08002861 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002862 spin_unlock_irqrestore(&priv->lock, flags);
2863
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002864 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002865
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002866 iwl_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002867
Zhu Yib481de92007-09-25 17:54:57 -07002868
2869 return 0;
2870}
2871
Zhu Yib481de92007-09-25 17:54:57 -07002872/*****************************************************************************
2873 *
2874 * sysfs attributes
2875 *
2876 *****************************************************************************/
2877
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002878#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002879
2880/*
2881 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08002882 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07002883 * used for controlling the debug level.
2884 *
2885 * See the level definitions in iwl for details.
2886 */
2887
Ester Kummer8cf769c2008-05-06 11:05:11 +08002888static ssize_t show_debug_level(struct device *d,
2889 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07002890{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002891 struct iwl_priv *priv = d->driver_data;
2892
2893 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07002894}
Ester Kummer8cf769c2008-05-06 11:05:11 +08002895static ssize_t store_debug_level(struct device *d,
2896 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07002897 const char *buf, size_t count)
2898{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002899 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002900 unsigned long val;
2901 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002902
Tomas Winkler9257746f2008-09-03 11:26:32 +08002903 ret = strict_strtoul(buf, 0, &val);
2904 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002905 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002906 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08002907 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07002908
2909 return strnlen(buf, count);
2910}
2911
Ester Kummer8cf769c2008-05-06 11:05:11 +08002912static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
2913 show_debug_level, store_debug_level);
2914
Zhu Yib481de92007-09-25 17:54:57 -07002915
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002916#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07002917
Zhu Yib481de92007-09-25 17:54:57 -07002918
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002919static ssize_t show_version(struct device *d,
2920 struct device_attribute *attr, char *buf)
2921{
2922 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08002923 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08002924 ssize_t pos = 0;
2925 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002926
2927 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08002928 pos += sprintf(buf + pos,
2929 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
2930 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002931 palive->ucode_major, palive->ucode_minor,
2932 palive->sw_rev[0], palive->sw_rev[1],
2933 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002934 else
Tomas Winklerf236a262008-06-30 17:23:02 +08002935 pos += sprintf(buf + pos, "fw not loaded\n");
2936
2937 if (priv->eeprom) {
2938 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
2939 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
2940 eeprom_ver);
2941 } else {
2942 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
2943 }
2944
2945 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002946}
2947
2948static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
2949
Zhu Yib481de92007-09-25 17:54:57 -07002950static ssize_t show_temperature(struct device *d,
2951 struct device_attribute *attr, char *buf)
2952{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002953 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002954
Tomas Winklerfee12472008-04-03 16:05:21 -07002955 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002956 return -EAGAIN;
2957
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08002958 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07002959}
2960
2961static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
2962
Zhu Yib481de92007-09-25 17:54:57 -07002963static ssize_t show_tx_power(struct device *d,
2964 struct device_attribute *attr, char *buf)
2965{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002966 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08002967
2968 if (!iwl_is_ready_rf(priv))
2969 return sprintf(buf, "off\n");
2970 else
2971 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07002972}
2973
2974static ssize_t store_tx_power(struct device *d,
2975 struct device_attribute *attr,
2976 const char *buf, size_t count)
2977{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002978 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002979 unsigned long val;
2980 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002981
Tomas Winkler9257746f2008-09-03 11:26:32 +08002982 ret = strict_strtoul(buf, 10, &val);
2983 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002984 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002985 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002986 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07002987
2988 return count;
2989}
2990
2991static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
2992
2993static ssize_t show_flags(struct device *d,
2994 struct device_attribute *attr, char *buf)
2995{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002996 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002997
2998 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
2999}
3000
3001static ssize_t store_flags(struct device *d,
3002 struct device_attribute *attr,
3003 const char *buf, size_t count)
3004{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003005 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003006 unsigned long val;
3007 u32 flags;
3008 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003009 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003010 return ret;
3011 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003012
3013 mutex_lock(&priv->mutex);
3014 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3015 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003016 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003017 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003018 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003019 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07003020 priv->staging_rxon.flags = cpu_to_le32(flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003021 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003022 }
3023 }
3024 mutex_unlock(&priv->mutex);
3025
3026 return count;
3027}
3028
3029static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3030
3031static ssize_t show_filter_flags(struct device *d,
3032 struct device_attribute *attr, char *buf)
3033{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003034 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003035
3036 return sprintf(buf, "0x%04X\n",
3037 le32_to_cpu(priv->active_rxon.filter_flags));
3038}
3039
3040static ssize_t store_filter_flags(struct device *d,
3041 struct device_attribute *attr,
3042 const char *buf, size_t count)
3043{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003044 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003045 unsigned long val;
3046 u32 filter_flags;
3047 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003048 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003049 return ret;
3050 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003051
3052 mutex_lock(&priv->mutex);
3053 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3054 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003055 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003056 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003057 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003058 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003059 "0x%04X\n", filter_flags);
3060 priv->staging_rxon.filter_flags =
3061 cpu_to_le32(filter_flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003062 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003063 }
3064 }
3065 mutex_unlock(&priv->mutex);
3066
3067 return count;
3068}
3069
3070static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3071 store_filter_flags);
3072
Zhu Yib481de92007-09-25 17:54:57 -07003073static ssize_t store_power_level(struct device *d,
3074 struct device_attribute *attr,
3075 const char *buf, size_t count)
3076{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003077 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003078 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003079 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003080
Tomas Winkler9257746f2008-09-03 11:26:32 +08003081
Zhu Yib481de92007-09-25 17:54:57 -07003082 mutex_lock(&priv->mutex);
3083
Tomas Winkler9257746f2008-09-03 11:26:32 +08003084 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003085 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003086 goto out;
3087
Esti Kummer298df1f2008-07-18 13:52:58 +08003088 ret = iwl_power_set_user_mode(priv, mode);
3089 if (ret) {
Tomas Winklere1623442009-01-27 14:27:56 -08003090 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003091 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003092 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003093 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003094
3095 out:
3096 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08003097 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003098}
3099
Zhu Yib481de92007-09-25 17:54:57 -07003100static ssize_t show_power_level(struct device *d,
3101 struct device_attribute *attr, char *buf)
3102{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003103 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003104 int mode = priv->power_data.user_power_setting;
3105 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003106 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07003107 char *p = buf;
3108
Esti Kummer298df1f2008-07-18 13:52:58 +08003109 switch (system) {
3110 case IWL_POWER_SYS_AUTO:
3111 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07003112 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003113 case IWL_POWER_SYS_AC:
3114 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07003115 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003116 case IWL_POWER_SYS_BATTERY:
3117 p += sprintf(p, "SYSTEM:battery");
3118 break;
Zhu Yib481de92007-09-25 17:54:57 -07003119 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003120
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003121 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3122 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08003123 p += sprintf(p, "\tINDEX:%d", level);
3124 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003125 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07003126}
3127
3128static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3129 store_power_level);
3130
Zhu Yib481de92007-09-25 17:54:57 -07003131
3132static ssize_t show_statistics(struct device *d,
3133 struct device_attribute *attr, char *buf)
3134{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003135 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003136 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003137 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003138 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003139 int rc = 0;
3140
Tomas Winklerfee12472008-04-03 16:05:21 -07003141 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003142 return -EAGAIN;
3143
3144 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07003145 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003146 mutex_unlock(&priv->mutex);
3147
3148 if (rc) {
3149 len = sprintf(buf,
3150 "Error sending statistics request: 0x%08X\n", rc);
3151 return len;
3152 }
3153
3154 while (size && (PAGE_SIZE - len)) {
3155 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3156 PAGE_SIZE - len, 1);
3157 len = strlen(buf);
3158 if (PAGE_SIZE - len)
3159 buf[len++] = '\n';
3160
3161 ofs += 16;
3162 size -= min(size, 16U);
3163 }
3164
3165 return len;
3166}
3167
3168static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3169
Zhu Yib481de92007-09-25 17:54:57 -07003170
Zhu Yib481de92007-09-25 17:54:57 -07003171/*****************************************************************************
3172 *
3173 * driver setup and teardown
3174 *
3175 *****************************************************************************/
3176
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003177static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003178{
Reinette Chatred21050c2009-02-13 11:51:18 -08003179 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003180
3181 init_waitqueue_head(&priv->wait_command_queue);
3182
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003183 INIT_WORK(&priv->up, iwl_bg_up);
3184 INIT_WORK(&priv->restart, iwl_bg_restart);
3185 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3186 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3187 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003188 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003189 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3190 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003191
Tomas Winkler2a421b92008-06-12 09:47:10 +08003192 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003193 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003194
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003195 if (priv->cfg->ops->lib->setup_deferred_work)
3196 priv->cfg->ops->lib->setup_deferred_work(priv);
3197
3198 init_timer(&priv->statistics_periodic);
3199 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003200 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003201
3202 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003203 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003204}
3205
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003206static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003207{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003208 if (priv->cfg->ops->lib->cancel_deferred_work)
3209 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003210
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003211 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003212 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003213 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07003214 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003215 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003216 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003217}
3218
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003219static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003220 &dev_attr_flags.attr,
3221 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003222 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003223 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003224 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003225 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003226#ifdef CONFIG_IWLWIFI_DEBUG
3227 &dev_attr_debug_level.attr,
3228#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003229 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003230
3231 NULL
3232};
3233
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003234static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003235 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003236 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003237};
3238
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003239static struct ieee80211_ops iwl_hw_ops = {
3240 .tx = iwl_mac_tx,
3241 .start = iwl_mac_start,
3242 .stop = iwl_mac_stop,
3243 .add_interface = iwl_mac_add_interface,
3244 .remove_interface = iwl_mac_remove_interface,
3245 .config = iwl_mac_config,
3246 .config_interface = iwl_mac_config_interface,
3247 .configure_filter = iwl_configure_filter,
3248 .set_key = iwl_mac_set_key,
3249 .update_tkip_key = iwl_mac_update_tkip_key,
3250 .get_stats = iwl_mac_get_stats,
3251 .get_tx_stats = iwl_mac_get_tx_stats,
3252 .conf_tx = iwl_mac_conf_tx,
3253 .reset_tsf = iwl_mac_reset_tsf,
3254 .bss_info_changed = iwl_bss_info_changed,
3255 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003256 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003257};
3258
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003259static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003260{
3261 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003262 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003263 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003264 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003265 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003266 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003267
Assaf Krauss316c30d2008-03-14 10:38:46 -07003268 /************************
3269 * 1. Allocating HW data
3270 ************************/
3271
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003272 /* Disabling hardware scan means that mac80211 will perform scans
3273 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003274 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003275 if (cfg->mod_params->debug & IWL_DL_INFO)
3276 dev_printk(KERN_DEBUG, &(pdev->dev),
3277 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003278 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003279 }
3280
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003281 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003282 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003283 err = -ENOMEM;
3284 goto out;
3285 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003286 priv = hw->priv;
3287 /* At this point both hw and priv are allocated. */
3288
Zhu Yib481de92007-09-25 17:54:57 -07003289 SET_IEEE80211_DEV(hw, &pdev->dev);
3290
Tomas Winklere1623442009-01-27 14:27:56 -08003291 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003292 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003293 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003294
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003295#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003296 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003297 atomic_set(&priv->restrict_refcnt, 0);
3298#endif
Zhu Yib481de92007-09-25 17:54:57 -07003299
Assaf Krauss316c30d2008-03-14 10:38:46 -07003300 /**************************
3301 * 2. Initializing PCI bus
3302 **************************/
3303 if (pci_enable_device(pdev)) {
3304 err = -ENODEV;
3305 goto out_ieee80211_free_hw;
3306 }
3307
3308 pci_set_master(pdev);
3309
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003310 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003311 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003312 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003313 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003314 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003315 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003316 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003317 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003318 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003319 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003320 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003321 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003322 }
3323
3324 err = pci_request_regions(pdev, DRV_NAME);
3325 if (err)
3326 goto out_pci_disable_device;
3327
3328 pci_set_drvdata(pdev, priv);
3329
Assaf Krauss316c30d2008-03-14 10:38:46 -07003330
3331 /***********************
3332 * 3. Read REV register
3333 ***********************/
3334 priv->hw_base = pci_iomap(pdev, 0, 0);
3335 if (!priv->hw_base) {
3336 err = -ENODEV;
3337 goto out_pci_release_regions;
3338 }
3339
Tomas Winklere1623442009-01-27 14:27:56 -08003340 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003341 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003342 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003343
Tomas Winklerb661c812008-04-23 17:14:54 -07003344 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003345 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003346 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003347
Tomas Winklere7b63582008-09-03 11:26:49 +08003348 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3349 * PCI Tx retries from interfering with C3 CPU state */
3350 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3351
Tomas Winkler91238712008-04-23 17:14:53 -07003352 /* amp init */
3353 err = priv->cfg->ops->lib->apm_ops.init(priv);
3354 if (err < 0) {
Reinette Chatre808ff692009-03-11 11:18:01 -07003355 IWL_ERR(priv, "Failed to init APMG\n");
Tomas Winkler91238712008-04-23 17:14:53 -07003356 goto out_iounmap;
3357 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003358 /*****************
3359 * 4. Read EEPROM
3360 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003361 /* Read the EEPROM */
3362 err = iwl_eeprom_init(priv);
3363 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003364 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003365 goto out_iounmap;
3366 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003367 err = iwl_eeprom_check_version(priv);
3368 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08003369 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07003370
Ron Rindjunsky02883012008-05-15 13:53:53 +08003371 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003372 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003373 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003374 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3375
3376 /************************
3377 * 5. Setup HW constants
3378 ************************/
Ron Rindjunskyda154e32008-06-30 17:23:20 +08003379 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003380 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003381 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003382 }
3383
3384 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003385 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003386 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003387
Tomas Winkler6ba87952008-05-15 13:54:17 +08003388 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003389 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003390 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003391 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003392
3393 /**********************************
3394 * 7. Initialize module parameters
3395 **********************************/
3396
3397 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003398 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003399 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08003400 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003401 }
3402
Assaf Krauss316c30d2008-03-14 10:38:46 -07003403 /********************
3404 * 8. Setup services
3405 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003406 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003407 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003408 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003409
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003410 pci_enable_msi(priv->pci_dev);
3411
3412 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3413 DRV_NAME, priv);
3414 if (err) {
3415 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3416 goto out_disable_msi;
3417 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003418 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003419 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003420 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003421 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003422 }
3423
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003424 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003425 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003426
Tomas Winkler6ba87952008-05-15 13:54:17 +08003427 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003428 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003429 **********************************/
3430
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003431 /* enable interrupts if needed: hw bug w/a */
3432 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3433 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3434 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3435 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3436 }
3437
3438 iwl_enable_interrupts(priv);
3439
Tomas Winkler6ba87952008-05-15 13:54:17 +08003440 err = iwl_setup_mac(priv);
3441 if (err)
3442 goto out_remove_sysfs;
3443
3444 err = iwl_dbgfs_register(priv, DRV_NAME);
3445 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003446 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003447
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003448 /* If platform's RF_KILL switch is NOT set to KILL */
3449 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3450 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3451 else
3452 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003453
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003454 err = iwl_rfkill_init(priv);
3455 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003456 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003457 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003458 else
3459 iwl_rfkill_set_hw_state(priv);
3460
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003461 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003462 return 0;
3463
Assaf Krauss316c30d2008-03-14 10:38:46 -07003464 out_remove_sysfs:
Reinette Chatrec8f16132009-02-27 16:21:22 -08003465 destroy_workqueue(priv->workqueue);
3466 priv->workqueue = NULL;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003467 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003468 out_free_irq:
3469 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003470 out_disable_msi:
3471 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003472 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003473 out_free_eeprom:
3474 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003475 out_iounmap:
3476 pci_iounmap(pdev, priv->hw_base);
3477 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07003478 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08003479 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003480 out_pci_disable_device:
3481 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003482 out_ieee80211_free_hw:
3483 ieee80211_free_hw(priv->hw);
3484 out:
3485 return err;
3486}
3487
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003488static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003489{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003490 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003491 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003492
3493 if (!priv)
3494 return;
3495
Tomas Winklere1623442009-01-27 14:27:56 -08003496 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003497
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003498 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003499 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003500
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003501 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3502 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003503 * we need to set STATUS_EXIT_PENDING bit.
3504 */
3505 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003506 if (priv->mac80211_registered) {
3507 ieee80211_unregister_hw(priv->hw);
3508 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003509 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003510 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003511 }
3512
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003513 /* make sure we flush any pending irq or
3514 * tasklet for the driver
3515 */
3516 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003517 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003518 spin_unlock_irqrestore(&priv->lock, flags);
3519
3520 iwl_synchronize_irq(priv);
3521
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003522 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003523 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003524
3525 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003526 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003527 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003528
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08003529 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003530 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003531
Zhu Yib481de92007-09-25 17:54:57 -07003532
Mohamed Abbas948c1712007-10-25 17:15:45 +08003533 /*netif_stop_queue(dev); */
3534 flush_workqueue(priv->workqueue);
3535
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003536 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003537 * priv->workqueue... so we can't take down the workqueue
3538 * until now... */
3539 destroy_workqueue(priv->workqueue);
3540 priv->workqueue = NULL;
3541
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003542 free_irq(priv->pci_dev->irq, priv);
3543 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003544 pci_iounmap(pdev, priv->hw_base);
3545 pci_release_regions(pdev);
3546 pci_disable_device(pdev);
3547 pci_set_drvdata(pdev, NULL);
3548
Tomas Winkler6ba87952008-05-15 13:54:17 +08003549 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003550
3551 if (priv->ibss_beacon)
3552 dev_kfree_skb(priv->ibss_beacon);
3553
3554 ieee80211_free_hw(priv->hw);
3555}
3556
3557#ifdef CONFIG_PM
3558
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003559static int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07003560{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003561 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003562
Zhu Yie655b9f2008-01-24 02:19:38 -08003563 if (priv->is_open) {
3564 set_bit(STATUS_IN_SUSPEND, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003565 iwl_mac_stop(priv->hw);
Zhu Yie655b9f2008-01-24 02:19:38 -08003566 priv->is_open = 1;
3567 }
Zhu Yib481de92007-09-25 17:54:57 -07003568
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003569 pci_save_state(pdev);
3570 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003571 pci_set_power_state(pdev, PCI_D3hot);
3572
Zhu Yib481de92007-09-25 17:54:57 -07003573 return 0;
3574}
3575
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003576static int iwl_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003577{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003578 struct iwl_priv *priv = pci_get_drvdata(pdev);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003579 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003580
Zhu Yib481de92007-09-25 17:54:57 -07003581 pci_set_power_state(pdev, PCI_D0);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003582 ret = pci_enable_device(pdev);
3583 if (ret)
3584 return ret;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003585 pci_restore_state(pdev);
3586 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003587
Zhu Yie655b9f2008-01-24 02:19:38 -08003588 if (priv->is_open)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003589 iwl_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003590
Zhu Yie655b9f2008-01-24 02:19:38 -08003591 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003592 return 0;
3593}
3594
3595#endif /* CONFIG_PM */
3596
3597/*****************************************************************************
3598 *
3599 * driver and module entry point
3600 *
3601 *****************************************************************************/
3602
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003603/* Hardware specific file defines the PCI IDs table for that hardware module */
3604static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003605#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003606 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3607 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003608#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003609#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08003610 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3611 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3612 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3613 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3614 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3615 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003616 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08003617 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3618 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3619 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08003620/* 5350 WiFi/WiMax */
3621 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3622 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3623 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08003624/* 5150 Wifi/WiMax */
3625 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3626 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003627/* 6000/6050 Series */
3628 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3629 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3630 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3631 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
Jay Sternberg542cc792009-05-08 13:44:46 -07003632 {IWL_PCI_DEVICE(0x422C, PCI_ANY_ID, iwl6000_2agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003633 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
Jay Sternberg542cc792009-05-08 13:44:46 -07003634 {IWL_PCI_DEVICE(0x4239, PCI_ANY_ID, iwl6000_2agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003635 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3636 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3637 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3638 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3639 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3640 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08003641/* 1000 Series WiFi */
3642 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl1000_bgn_cfg)},
3643 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl1000_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003644#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003645
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003646 {0}
3647};
3648MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3649
3650static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003651 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003652 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003653 .probe = iwl_pci_probe,
3654 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003655#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003656 .suspend = iwl_pci_suspend,
3657 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003658#endif
3659};
3660
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003661static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003662{
3663
3664 int ret;
3665 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3666 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003667
Tomas Winklere227cea2008-07-18 13:53:05 +08003668 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003669 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003670 printk(KERN_ERR DRV_NAME
3671 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003672 return ret;
3673 }
3674
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003675 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003676 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003677 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003678 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003679 }
Zhu Yib481de92007-09-25 17:54:57 -07003680
3681 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003682
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003683error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003684 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003685 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003686}
3687
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003688static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003689{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003690 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003691 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003692}
3693
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003694module_exit(iwl_exit);
3695module_init(iwl_init);