blob: 0db3bc011ac2b76a63696995f10af5279f3bf0db [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 Ortiza8e74e272009-01-23 13:45:14 -0800496/*
497 * Tell nic where to find circular buffer of Tx Frame Descriptors for
498 * given Tx queue, and enable the DMA channel used for that queue.
499 *
500 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
501 * channels supported in hardware.
502 */
503int iwl_hw_tx_queue_init(struct iwl_priv *priv,
504 struct iwl_tx_queue *txq)
505{
506 int ret;
507 unsigned long flags;
508 int txq_id = txq->q.id;
509
510 spin_lock_irqsave(&priv->lock, flags);
511 ret = iwl_grab_nic_access(priv);
512 if (ret) {
513 spin_unlock_irqrestore(&priv->lock, flags);
514 return ret;
515 }
516
517 /* Circular buffer (TFD queue in DRAM) physical base address */
518 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
519 txq->q.dma_addr >> 8);
520
521 iwl_release_nic_access(priv);
522 spin_unlock_irqrestore(&priv->lock, flags);
523
524 return 0;
525}
526
527
Zhu Yib481de92007-09-25 17:54:57 -0700528/******************************************************************************
529 *
Zhu Yib481de92007-09-25 17:54:57 -0700530 * Misc. internal state and helper functions
531 *
532 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -0700533
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700534static void iwl_ht_conf(struct iwl_priv *priv,
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700535 struct ieee80211_bss_conf *bss_conf)
536{
Johannes Bergae5eb022008-10-14 16:58:37 +0200537 struct ieee80211_sta_ht_cap *ht_conf;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700538 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
Johannes Bergae5eb022008-10-14 16:58:37 +0200539 struct ieee80211_sta *sta;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700540
Tomas Winklere1623442009-01-27 14:27:56 -0800541 IWL_DEBUG_MAC80211(priv, "enter: \n");
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700542
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700543 if (!iwl_conf->is_ht)
544 return;
545
Johannes Bergae5eb022008-10-14 16:58:37 +0200546
547 /*
548 * It is totally wrong to base global information on something
549 * that is valid only when associated, alas, this driver works
550 * that way and I don't know how to fix it.
551 */
552
553 rcu_read_lock();
554 sta = ieee80211_find_sta(priv->hw, priv->bssid);
555 if (!sta) {
556 rcu_read_unlock();
557 return;
558 }
559 ht_conf = &sta->ht_cap;
560
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700561 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800562 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700563 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800564 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700565
566 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
567 iwl_conf->max_amsdu_size =
568 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
569
570 iwl_conf->supported_chan_width =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200571 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
Johannes Bergae5eb022008-10-14 16:58:37 +0200572
Sujith094d05d2008-12-12 11:57:43 +0530573 /*
574 * XXX: The HT configuration needs to be moved into iwl_mac_config()
575 * to be done there correctly.
576 */
577
578 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800579 if (conf_is_ht40_minus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530580 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800581 else if (conf_is_ht40_plus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530582 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
583
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700584 /* If no above or below channel supplied disable FAT channel */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200585 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
Sujith094d05d2008-12-12 11:57:43 +0530586 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700587 iwl_conf->supported_chan_width = 0;
588
Ron Rindjunsky12837be2008-09-03 11:26:47 +0800589 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
590
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200591 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700592
Sujith094d05d2008-12-12 11:57:43 +0530593 iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700594 iwl_conf->ht_protection =
Johannes Bergae5eb022008-10-14 16:58:37 +0200595 bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700596 iwl_conf->non_GF_STA_present =
Johannes Bergae5eb022008-10-14 16:58:37 +0200597 !!(bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700598
Johannes Bergae5eb022008-10-14 16:58:37 +0200599 rcu_read_unlock();
600
Tomas Winklere1623442009-01-27 14:27:56 -0800601 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700602}
603
Zhu Yib481de92007-09-25 17:54:57 -0700604#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
672 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800673 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800674 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800675 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800676 return -EAGAIN;
677 }
678
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700679 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700680
681 return 0;
682}
683
Zhu Yib481de92007-09-25 17:54:57 -0700684/******************************************************************************
685 *
686 * Generic RX handler implementations
687 *
688 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800689static void iwl_rx_reply_alive(struct iwl_priv *priv,
690 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700691{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800692 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800693 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700694 struct delayed_work *pwork;
695
696 palive = &pkt->u.alive_frame;
697
Tomas Winklere1623442009-01-27 14:27:56 -0800698 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700699 "0x%01X 0x%01X\n",
700 palive->is_valid, palive->ver_type,
701 palive->ver_subtype);
702
703 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800704 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700705 memcpy(&priv->card_alive_init,
706 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800707 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700708 pwork = &priv->init_alive_start;
709 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800710 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700711 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800712 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700713 pwork = &priv->alive_start;
714 }
715
716 /* We delay the ALIVE response by 5ms to
717 * give the HW RF Kill time to activate... */
718 if (palive->is_valid == UCODE_VALID_OK)
719 queue_delayed_work(priv->workqueue, pwork,
720 msecs_to_jiffies(5));
721 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800722 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700723}
724
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700725static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700726{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700727 struct iwl_priv *priv =
728 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700729 struct sk_buff *beacon;
730
731 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200732 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700733
734 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800735 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700736 return;
737 }
738
739 mutex_lock(&priv->mutex);
740 /* new beacon skb is allocated every time; dispose previous.*/
741 if (priv->ibss_beacon)
742 dev_kfree_skb(priv->ibss_beacon);
743
744 priv->ibss_beacon = beacon;
745 mutex_unlock(&priv->mutex);
746
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700747 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700748}
749
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800750/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700751 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800752 *
753 * This callback is provided in order to send a statistics request.
754 *
755 * This timer function is continually reset to execute within
756 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
757 * was received. We need to ensure we receive the statistics in order
758 * to update the temperature used for calibrating the TXPOWER.
759 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700760static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800761{
762 struct iwl_priv *priv = (struct iwl_priv *)data;
763
764 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
765 return;
766
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700767 /* dont send host command if rf-kill is on */
768 if (!iwl_is_ready_rf(priv))
769 return;
770
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800771 iwl_send_statistics_request(priv, CMD_ASYNC);
772}
773
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700774static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800775 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700776{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700777#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800778 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800779 struct iwl4965_beacon_notif *beacon =
780 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326a2008-06-12 09:47:11 +0800781 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700782
Tomas Winklere1623442009-01-27 14:27:56 -0800783 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700784 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800785 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700786 beacon->beacon_notify_hdr.failure_frame,
787 le32_to_cpu(beacon->ibss_mgr_status),
788 le32_to_cpu(beacon->high_tsf),
789 le32_to_cpu(beacon->low_tsf), rate);
790#endif
791
Johannes Berg05c914f2008-09-11 00:01:58 +0200792 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700793 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
794 queue_work(priv->workqueue, &priv->beacon_update);
795}
796
Zhu Yib481de92007-09-25 17:54:57 -0700797/* Handle notification from uCode that card's power state is changing
798 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700799static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800800 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700801{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800802 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700803 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
804 unsigned long status = priv->status;
805
Tomas Winklere1623442009-01-27 14:27:56 -0800806 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700807 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
808 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
809
810 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
811 RF_CARD_DISABLED)) {
812
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700813 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700814 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
815
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700816 if (!iwl_grab_nic_access(priv)) {
817 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700818 priv, HBUS_TARG_MBX_C,
819 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
820
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700821 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700822 }
823
824 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700825 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700826 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700827 if (!iwl_grab_nic_access(priv)) {
828 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700829 priv, HBUS_TARG_MBX_C,
830 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
831
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700832 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700833 }
834 }
835
836 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700837 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700838 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700839 iwl_read32(priv, CSR_UCODE_DRV_GP1);
840 if (!iwl_grab_nic_access(priv))
841 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700842 }
843 }
844
845 if (flags & HW_CARD_DISABLED)
846 set_bit(STATUS_RF_KILL_HW, &priv->status);
847 else
848 clear_bit(STATUS_RF_KILL_HW, &priv->status);
849
850
851 if (flags & SW_CARD_DISABLED)
852 set_bit(STATUS_RF_KILL_SW, &priv->status);
853 else
854 clear_bit(STATUS_RF_KILL_SW, &priv->status);
855
856 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800857 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700858
859 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
860 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
861 (test_bit(STATUS_RF_KILL_SW, &status) !=
862 test_bit(STATUS_RF_KILL_SW, &priv->status)))
863 queue_work(priv->workqueue, &priv->rf_kill);
864 else
865 wake_up_interruptible(&priv->wait_command_queue);
866}
867
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700868int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800869{
870 int ret;
871 unsigned long flags;
872
873 spin_lock_irqsave(&priv->lock, flags);
874 ret = iwl_grab_nic_access(priv);
875 if (ret)
876 goto err;
877
878 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800879 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800880 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
881 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
882 ~APMG_PS_CTRL_MSK_PWR_SRC);
883 } else {
884 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
885 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
886 ~APMG_PS_CTRL_MSK_PWR_SRC);
887 }
888
889 iwl_release_nic_access(priv);
890err:
891 spin_unlock_irqrestore(&priv->lock, flags);
892 return ret;
893}
894
Zhu Yib481de92007-09-25 17:54:57 -0700895/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700896 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700897 *
898 * Setup the RX handlers for each of the reply types sent from the uCode
899 * to the host.
900 *
901 * This function chains into the hardware specific files for them to setup
902 * any hardware specific handlers as well.
903 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800904static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700905{
Tomas Winkler885ba202008-05-29 16:34:55 +0800906 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700907 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
908 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700909 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700910 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700911 iwl_rx_pm_debug_statistics_notif;
912 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700913
Ben Cahill9fbab512007-11-29 11:09:47 +0800914 /*
915 * The same handler is used for both the REPLY to a discrete
916 * statistics request from the host as well as for the periodic
917 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700918 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800919 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
920 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800921
Tomas Winkler21c339b2008-11-07 09:58:41 -0800922 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800923 iwl_setup_rx_scan_handlers(priv);
924
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800925 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700926 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700927
Tomas Winklerc1354752008-05-29 16:35:04 +0800928 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
929 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800930 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800931 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
932 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800933 /* block ack */
934 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800935 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700936 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700937}
938
Zhu Yib481de92007-09-25 17:54:57 -0700939/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800940 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700941 *
942 * Uses the priv->rx_handlers callback function array to invoke
943 * the appropriate handlers, including command responses,
944 * frame-received notifications, and other notifications.
945 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800946void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700947{
Tomas Winklera55360e2008-05-05 10:22:28 +0800948 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800949 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800950 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700951 u32 r, i;
952 int reclaim;
953 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800954 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800955 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -0700956
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800957 /* uCode's read index (stored in shared DRAM) indicates the last Rx
958 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800959 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700960 i = rxq->read;
961
962 /* Rx interrupt, but nothing sent from uCode */
963 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800964 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700965
Tomas Winklera55360e2008-05-05 10:22:28 +0800966 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800967 fill_rx = 1;
968
Zhu Yib481de92007-09-25 17:54:57 -0700969 while (i != r) {
970 rxb = rxq->queue[i];
971
Ben Cahill9fbab512007-11-29 11:09:47 +0800972 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700973 * then a bug has been introduced in the queue refilling
974 * routines -- catch it here */
975 BUG_ON(rxb == NULL);
976
977 rxq->queue[i] = NULL;
978
Johannes Berge91af0a2008-11-19 01:22:51 +0100979 dma_sync_single_range_for_cpu(
980 &priv->pci_dev->dev, rxb->real_dma_addr,
981 rxb->aligned_dma_addr - rxb->real_dma_addr,
982 priv->hw_params.rx_buf_size,
983 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +0800984 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700985
986 /* Reclaim a command buffer only if this packet is a response
987 * to a (driver-originated) command.
988 * If the packet (e.g. Rx frame) originated from uCode,
989 * there is no command buffer to reclaim.
990 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
991 * but apparently a few don't get set; catch them here. */
992 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
993 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700994 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700995 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800996 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700997 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
998 (pkt->hdr.cmd != REPLY_TX);
999
1000 /* Based on type of command response or notification,
1001 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001002 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001003 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001004 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001005 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001006 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1007 } else {
1008 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001009 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001010 "r %d i %d No handler needed for %s, 0x%02x\n",
1011 r, i, get_cmd_string(pkt->hdr.cmd),
1012 pkt->hdr.cmd);
1013 }
1014
1015 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001016 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07001017 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001018 * as we reclaim the driver command queue */
1019 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001020 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001021 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001022 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001023 }
1024
1025 /* For now we just don't re-use anything. We can tweak this
1026 * later to try and re-use notification packets and SKBs that
1027 * fail to Rx correctly */
1028 if (rxb->skb != NULL) {
1029 priv->alloc_rxb_skb--;
1030 dev_kfree_skb_any(rxb->skb);
1031 rxb->skb = NULL;
1032 }
1033
Johannes Berg40185172008-11-18 01:47:21 +01001034 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1035 priv->hw_params.rx_buf_size + 256,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02001036 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001037 spin_lock_irqsave(&rxq->lock, flags);
1038 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1039 spin_unlock_irqrestore(&rxq->lock, flags);
1040 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001041 /* If there are a lot of unused frames,
1042 * restock the Rx queue so ucode wont assert. */
1043 if (fill_rx) {
1044 count++;
1045 if (count >= 8) {
1046 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +08001047 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001048 count = 0;
1049 }
1050 }
Zhu Yib481de92007-09-25 17:54:57 -07001051 }
1052
1053 /* Backtrack one entry */
1054 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001055 iwl_rx_queue_restock(priv);
1056}
Tomas Winklera55360e2008-05-05 10:22:28 +08001057
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001058/* call this function to flush any scheduled tasklet */
1059static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1060{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001061 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001062 synchronize_irq(priv->pci_dev->irq);
1063 tasklet_kill(&priv->irq_tasklet);
1064}
1065
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001066static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001067{
1068 unsigned long flags;
1069
1070 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1071 sizeof(priv->staging_rxon));
1072 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001073 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001074
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001075 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001076
1077 spin_lock_irqsave(&priv->lock, flags);
1078 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1079 priv->error_recovering = 0;
1080 spin_unlock_irqrestore(&priv->lock, flags);
1081}
1082
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001083static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001084{
1085 u32 inta, handled = 0;
1086 u32 inta_fh;
1087 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001088#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001089 u32 inta_mask;
1090#endif
1091
1092 spin_lock_irqsave(&priv->lock, flags);
1093
1094 /* Ack/clear/reset pending uCode interrupts.
1095 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1096 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001097 inta = iwl_read32(priv, CSR_INT);
1098 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001099
1100 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1101 * Any new interrupts that happen after this, either while we're
1102 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001103 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1104 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001105
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001106#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001107 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001108 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001109 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001110 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001111 inta, inta_mask, inta_fh);
1112 }
1113#endif
1114
1115 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1116 * atomic, make sure that inta covers all the interrupts that
1117 * we've discovered, even if FH interrupt came in just after
1118 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001119 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001120 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001121 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001122 inta |= CSR_INT_BIT_FH_TX;
1123
1124 /* Now service all interrupt bits discovered above. */
1125 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001126 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001127
1128 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001129 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001130
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001131 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001132
1133 handled |= CSR_INT_BIT_HW_ERR;
1134
1135 spin_unlock_irqrestore(&priv->lock, flags);
1136
1137 return;
1138 }
1139
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001140#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001141 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001142 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001143 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001144 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001145 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001146
1147 /* Alive notification via Rx interrupt will do the real work */
1148 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001149 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001150 }
1151#endif
1152 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001153 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001154
Ben Cahill9fbab512007-11-29 11:09:47 +08001155 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001156 if (inta & CSR_INT_BIT_RF_KILL) {
1157 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001158 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001159 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1160 hw_rf_kill = 1;
1161
Tomas Winklere1623442009-01-27 14:27:56 -08001162 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001163 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001164
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001165 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001166 * the driver allows loading the ucode even if the radio
1167 * is killed. Hence update the killswitch state here. The
1168 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001169 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001170 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1171 if (hw_rf_kill)
1172 set_bit(STATUS_RF_KILL_HW, &priv->status);
1173 else
1174 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1175 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001176 }
Zhu Yib481de92007-09-25 17:54:57 -07001177
1178 handled |= CSR_INT_BIT_RF_KILL;
1179 }
1180
Ben Cahill9fbab512007-11-29 11:09:47 +08001181 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001182 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001183 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001184 handled |= CSR_INT_BIT_CT_KILL;
1185 }
1186
1187 /* Error detected by uCode */
1188 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001189 IWL_ERR(priv, "Microcode SW error detected. "
1190 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001191 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001192 handled |= CSR_INT_BIT_SW_ERR;
1193 }
1194
1195 /* uCode wakes up after power-down sleep */
1196 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001197 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001198 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001199 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1200 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1201 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1202 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1203 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1204 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001205
1206 handled |= CSR_INT_BIT_WAKEUP;
1207 }
1208
1209 /* All uCode command responses, including Tx command responses,
1210 * Rx "responses" (frame-received notification), and other
1211 * notifications from uCode come through here*/
1212 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001213 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001214 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1215 }
1216
1217 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001218 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001219 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001220 /* FH finished to write, send event */
1221 priv->ucode_write_complete = 1;
1222 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001223 }
1224
1225 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001226 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001227
1228 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001229 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001230 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001231 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001232 }
1233
1234 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001235 /* only Re-enable if diabled by irq */
1236 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001237 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001238
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001239#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001240 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001241 inta = iwl_read32(priv, CSR_INT);
1242 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1243 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001244 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001245 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1246 }
1247#endif
1248 spin_unlock_irqrestore(&priv->lock, flags);
1249}
1250
Zhu Yib481de92007-09-25 17:54:57 -07001251/******************************************************************************
1252 *
1253 * uCode download functions
1254 *
1255 ******************************************************************************/
1256
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001257static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001258{
Tomas Winkler98c92212008-01-14 17:46:20 -08001259 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1260 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1261 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1262 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1263 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1264 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001265}
1266
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001267static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001268{
1269 /* Remove all resets to allow NIC to operate */
1270 iwl_write32(priv, CSR_RESET, 0);
1271}
1272
1273
Zhu Yib481de92007-09-25 17:54:57 -07001274/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001275 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001276 *
1277 * Copy into buffers for card to fetch via bus-mastering
1278 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001279static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001280{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001281 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001282 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001283 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001284 const char *name_pre = priv->cfg->fw_name_pre;
1285 const unsigned int api_max = priv->cfg->ucode_api_max;
1286 const unsigned int api_min = priv->cfg->ucode_api_min;
1287 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001288 u8 *src;
1289 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001290 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001291
1292 /* Ask kernel firmware_class module to get the boot firmware off disk.
1293 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001294 for (index = api_max; index >= api_min; index--) {
1295 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1296 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1297 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001298 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001299 buf, ret);
1300 if (ret == -ENOENT)
1301 continue;
1302 else
1303 goto error;
1304 } else {
1305 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001306 IWL_ERR(priv, "Loaded firmware %s, "
1307 "which is deprecated. "
1308 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001309 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001310
Tomas Winklere1623442009-01-27 14:27:56 -08001311 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001312 buf, ucode_raw->size);
1313 break;
1314 }
Zhu Yib481de92007-09-25 17:54:57 -07001315 }
1316
Reinette Chatrea0987a82008-12-02 12:14:06 -08001317 if (ret < 0)
1318 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001319
1320 /* Make sure that we got at least our header! */
1321 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001322 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001323 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001324 goto err_release;
1325 }
1326
1327 /* Data from ucode file: header followed by uCode images */
1328 ucode = (void *)ucode_raw->data;
1329
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001330 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001331 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001332 inst_size = le32_to_cpu(ucode->inst_size);
1333 data_size = le32_to_cpu(ucode->data_size);
1334 init_size = le32_to_cpu(ucode->init_size);
1335 init_data_size = le32_to_cpu(ucode->init_data_size);
1336 boot_size = le32_to_cpu(ucode->boot_size);
1337
Reinette Chatrea0987a82008-12-02 12:14:06 -08001338 /* api_ver should match the api version forming part of the
1339 * firmware filename ... but we don't check for that and only rely
1340 * on the API version read from firware header from here on forward */
1341
1342 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001343 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001344 "Driver supports v%u, firmware is v%u.\n",
1345 api_max, api_ver);
1346 priv->ucode_ver = 0;
1347 ret = -EINVAL;
1348 goto err_release;
1349 }
1350 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001351 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001352 "got v%u. New firmware can be obtained "
1353 "from http://www.intellinuxwireless.org.\n",
1354 api_max, api_ver);
1355
Tomas Winkler978785a2008-12-19 10:37:31 +08001356 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1357 IWL_UCODE_MAJOR(priv->ucode_ver),
1358 IWL_UCODE_MINOR(priv->ucode_ver),
1359 IWL_UCODE_API(priv->ucode_ver),
1360 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001361
Tomas Winklere1623442009-01-27 14:27:56 -08001362 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001363 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001364 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001365 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001366 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001367 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001368 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001369 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001370 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001371 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001372 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001373 boot_size);
1374
1375 /* Verify size of file vs. image size info in file's header */
1376 if (ucode_raw->size < sizeof(*ucode) +
1377 inst_size + data_size + init_size +
1378 init_data_size + boot_size) {
1379
Tomas Winklere1623442009-01-27 14:27:56 -08001380 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
Zhu Yib481de92007-09-25 17:54:57 -07001381 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001382 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001383 goto err_release;
1384 }
1385
1386 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001387 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001388 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001389 inst_size);
1390 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001391 goto err_release;
1392 }
1393
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001394 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001395 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001396 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 (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001401 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1402 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001403 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001404 goto err_release;
1405 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001406 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001407 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001408 init_data_size);
1409 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001410 goto err_release;
1411 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001412 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001413 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1414 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001415 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001416 goto err_release;
1417 }
1418
1419 /* Allocate ucode buffers for card's bus-master loading ... */
1420
1421 /* Runtime instructions and 2 copies of data:
1422 * 1) unmodified from disk
1423 * 2) backup cache for save/restore during power-downs */
1424 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001425 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001426
1427 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001428 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001429
1430 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001431 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001432
Zhu, Yi1f304e42009-01-23 13:45:22 -08001433 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1434 !priv->ucode_data_backup.v_addr)
1435 goto err_pci_alloc;
1436
Zhu Yib481de92007-09-25 17:54:57 -07001437 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001438 if (init_size && init_data_size) {
1439 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001440 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001441
Tomas Winkler90e759d2007-11-29 11:09:41 +08001442 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001443 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001444
1445 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1446 goto err_pci_alloc;
1447 }
Zhu Yib481de92007-09-25 17:54:57 -07001448
1449 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001450 if (boot_size) {
1451 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001452 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001453
Tomas Winkler90e759d2007-11-29 11:09:41 +08001454 if (!priv->ucode_boot.v_addr)
1455 goto err_pci_alloc;
1456 }
Zhu Yib481de92007-09-25 17:54:57 -07001457
1458 /* Copy images into buffers for card's bus-master reads ... */
1459
1460 /* Runtime instructions (first block of data in file) */
1461 src = &ucode->data[0];
1462 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001463 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001464 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08001465 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001466 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1467
1468 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001469 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001470 src = &ucode->data[inst_size];
1471 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001472 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001473 memcpy(priv->ucode_data.v_addr, src, len);
1474 memcpy(priv->ucode_data_backup.v_addr, src, len);
1475
1476 /* Initialization instructions (3rd block) */
1477 if (init_size) {
1478 src = &ucode->data[inst_size + data_size];
1479 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001480 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001481 len);
Zhu Yib481de92007-09-25 17:54:57 -07001482 memcpy(priv->ucode_init.v_addr, src, len);
1483 }
1484
1485 /* Initialization data (4th block) */
1486 if (init_data_size) {
1487 src = &ucode->data[inst_size + data_size + init_size];
1488 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001489 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001490 len);
Zhu Yib481de92007-09-25 17:54:57 -07001491 memcpy(priv->ucode_init_data.v_addr, src, len);
1492 }
1493
1494 /* Bootstrap instructions (5th block) */
1495 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1496 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001497 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001498 memcpy(priv->ucode_boot.v_addr, src, len);
1499
1500 /* We have our copies now, allow OS release its copies */
1501 release_firmware(ucode_raw);
1502 return 0;
1503
1504 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001505 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001506 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001507 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001508
1509 err_release:
1510 release_firmware(ucode_raw);
1511
1512 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001513 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001514}
1515
Mohamed Abbasada17512008-11-07 09:58:34 -08001516/* temporary */
1517static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1518 struct sk_buff *skb);
1519
Zhu Yib481de92007-09-25 17:54:57 -07001520/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001521 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001522 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001523 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001524 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001525static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001526{
Tomas Winkler57aab752008-04-14 21:16:03 -07001527 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001528
Tomas Winklere1623442009-01-27 14:27:56 -08001529 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001530
1531 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1532 /* We had an error bringing up the hardware, so take it
1533 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001534 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001535 goto restart;
1536 }
1537
1538 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1539 * This is a paranoid check, because we would not have gotten the
1540 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001541 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001542 /* Runtime instruction load was bad;
1543 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001544 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001545 goto restart;
1546 }
1547
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001548 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001549 ret = priv->cfg->ops->lib->alive_notify(priv);
1550 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001551 IWL_WARN(priv,
1552 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001553 goto restart;
1554 }
1555
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001556 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001557 set_bit(STATUS_ALIVE, &priv->status);
1558
Tomas Winklerfee12472008-04-03 16:05:21 -07001559 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001560 return;
1561
Johannes Berg36d68252008-05-15 12:55:26 +02001562 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001563
1564 priv->active_rate = priv->rates_mask;
1565 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1566
Tomas Winkler3109ece2008-03-28 16:33:35 -07001567 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001568 struct iwl_rxon_cmd *active_rxon =
1569 (struct iwl_rxon_cmd *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001570
1571 memcpy(&priv->staging_rxon, &priv->active_rxon,
1572 sizeof(priv->staging_rxon));
1573 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1574 } else {
1575 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001576 iwl_connection_init_rx_config(priv, priv->iw_mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001577 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001578 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1579 }
1580
Ben Cahill9fbab512007-11-29 11:09:47 +08001581 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001582 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001583
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001584 iwl_reset_run_time_calib(priv);
1585
Zhu Yib481de92007-09-25 17:54:57 -07001586 /* Configure the adapter for unassociated operation */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001587 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001588
1589 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001590 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001591
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001592 iwl_leds_register(priv);
1593
Tomas Winklere1623442009-01-27 14:27:56 -08001594 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001595 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001596 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001597
1598 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001599 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001600
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08001601 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001602
Mohamed Abbasada17512008-11-07 09:58:34 -08001603 /* reassociate for ADHOC mode */
1604 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1605 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1606 priv->vif);
1607 if (beacon)
1608 iwl_mac_beacon_update(priv->hw, beacon);
1609 }
1610
1611
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001612 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001613 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001614
Zhu Yib481de92007-09-25 17:54:57 -07001615 return;
1616
1617 restart:
1618 queue_work(priv->workqueue, &priv->restart);
1619}
1620
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001621static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001622
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001623static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001624{
1625 unsigned long flags;
1626 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001627
Tomas Winklere1623442009-01-27 14:27:56 -08001628 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001629
Zhu Yib481de92007-09-25 17:54:57 -07001630 if (!exit_pending)
1631 set_bit(STATUS_EXIT_PENDING, &priv->status);
1632
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001633 iwl_leds_unregister(priv);
1634
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001635 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001636
1637 /* Unblock any waiting calls */
1638 wake_up_interruptible_all(&priv->wait_command_queue);
1639
Zhu Yib481de92007-09-25 17:54:57 -07001640 /* Wipe out the EXIT_PENDING status bit if we are not actually
1641 * exiting the module */
1642 if (!exit_pending)
1643 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1644
1645 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001646 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07001647
1648 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001649 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001650 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001651 spin_unlock_irqrestore(&priv->lock, flags);
1652 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001653
1654 if (priv->mac80211_registered)
1655 ieee80211_stop_queues(priv->hw);
1656
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001657 /* If we have not previously called iwl_init() then
Zhu Yib481de92007-09-25 17:54:57 -07001658 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07001659 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001660 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1661 STATUS_RF_KILL_HW |
1662 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1663 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001664 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1665 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001666 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001667 STATUS_IN_SUSPEND |
1668 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1669 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001670 goto exit;
1671 }
1672
1673 /* ...otherwise clear out all the status bits but the RF Kill and
1674 * SUSPEND bits and continue taking the NIC down. */
1675 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1676 STATUS_RF_KILL_HW |
1677 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1678 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001679 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1680 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001681 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
1682 STATUS_IN_SUSPEND |
1683 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001684 STATUS_FW_ERROR |
1685 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1686 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001687
1688 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001689 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08001690 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07001691 spin_unlock_irqrestore(&priv->lock, flags);
1692
Tomas Winklerda1bc452008-05-29 16:35:00 +08001693 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08001694 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001695
1696 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001697 if (!iwl_grab_nic_access(priv)) {
1698 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07001699 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001700 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001701 }
1702 spin_unlock_irqrestore(&priv->lock, flags);
1703
1704 udelay(5);
1705
Tomas Winkler7f066102008-05-29 16:34:57 +08001706 /* FIXME: apm_ops.suspend(priv) */
Gregory Greenmand5353112008-09-03 11:18:49 +08001707 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
1708 priv->cfg->ops->lib->apm_ops.stop(priv);
1709 else
1710 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001711 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08001712 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001713
1714 if (priv->ibss_beacon)
1715 dev_kfree_skb(priv->ibss_beacon);
1716 priv->ibss_beacon = NULL;
1717
1718 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08001719 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001720}
1721
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001722static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001723{
1724 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001725 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001726 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08001727
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001728 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001729}
1730
1731#define MAX_HW_RESTARTS 5
1732
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001733static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001734{
Tomas Winkler57aab752008-04-14 21:16:03 -07001735 int i;
1736 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001737
1738 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001739 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001740 return -EIO;
1741 }
1742
Reinette Chatree903fbd2008-01-30 22:05:15 -08001743 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001744 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08001745 return -EIO;
1746 }
1747
Zhu Yie655b9f2008-01-24 02:19:38 -08001748 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08001749 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08001750 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001751 else
Zhu Yie655b9f2008-01-24 02:19:38 -08001752 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001753
Tomas Winklerc1842d62008-08-04 16:00:43 +08001754 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001755 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001756 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001757 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08001758 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001759 }
1760
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001761 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001762
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001763 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001764 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001765 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07001766 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001767 }
1768
1769 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001770 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1771 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001772 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1773
1774 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001775 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001776 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001777
1778 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001779 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1780 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001781
1782 /* Copy original ucode data image from disk into backup cache.
1783 * This will be used to initialize the on-board processor's
1784 * data SRAM for a clean start when the runtime program first loads. */
1785 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08001786 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07001787
Zhu Yib481de92007-09-25 17:54:57 -07001788 for (i = 0; i < MAX_HW_RESTARTS; i++) {
1789
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001790 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001791
1792 /* load bootstrap state machine,
1793 * load bootstrap program into processor's memory,
1794 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07001795 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001796
Tomas Winkler57aab752008-04-14 21:16:03 -07001797 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001798 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1799 ret);
Zhu Yib481de92007-09-25 17:54:57 -07001800 continue;
1801 }
1802
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08001803 /* Clear out the uCode error bit if it is set */
1804 clear_bit(STATUS_FW_ERROR, &priv->status);
1805
Zhu Yib481de92007-09-25 17:54:57 -07001806 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001807 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001808
Tomas Winklere1623442009-01-27 14:27:56 -08001809 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001810
1811 return 0;
1812 }
1813
1814 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001815 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08001816 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001817
1818 /* tried to restart and config the device for as long as our
1819 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001820 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07001821 return -EIO;
1822}
1823
1824
1825/*****************************************************************************
1826 *
1827 * Workqueue callbacks
1828 *
1829 *****************************************************************************/
1830
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001831static void iwl_bg_init_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, init_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);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08001840 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001841 mutex_unlock(&priv->mutex);
1842}
1843
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001844static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001845{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001846 struct iwl_priv *priv =
1847 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001848
1849 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1850 return;
1851
1852 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001853 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001854 mutex_unlock(&priv->mutex);
1855}
1856
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08001857static void iwl_bg_run_time_calib_work(struct work_struct *work)
1858{
1859 struct iwl_priv *priv = container_of(work, struct iwl_priv,
1860 run_time_calib_work);
1861
1862 mutex_lock(&priv->mutex);
1863
1864 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1865 test_bit(STATUS_SCANNING, &priv->status)) {
1866 mutex_unlock(&priv->mutex);
1867 return;
1868 }
1869
1870 if (priv->start_calib) {
1871 iwl_chain_noise_calibration(priv, &priv->statistics);
1872
1873 iwl_sensitivity_calibration(priv, &priv->statistics);
1874 }
1875
1876 mutex_unlock(&priv->mutex);
1877 return;
1878}
1879
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001880static void iwl_bg_up(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, up);
Zhu Yib481de92007-09-25 17:54:57 -07001883
1884 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1885 return;
1886
1887 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001888 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001889 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02001890 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001891}
1892
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001893static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001894{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001895 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07001896
1897 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1898 return;
1899
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001900 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001901 queue_work(priv->workqueue, &priv->up);
1902}
1903
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001904static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001905{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001906 struct iwl_priv *priv =
1907 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07001908
1909 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1910 return;
1911
1912 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08001913 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001914 mutex_unlock(&priv->mutex);
1915}
1916
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001917#define IWL_DELAY_NEXT_SCAN (HZ*2)
1918
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001919static void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001920{
Zhu Yib481de92007-09-25 17:54:57 -07001921 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07001922 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001923 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07001924
Johannes Berg05c914f2008-09-11 00:01:58 +02001925 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001926 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07001927 return;
1928 }
1929
Tomas Winklere1623442009-01-27 14:27:56 -08001930 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07001931 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001932
1933
1934 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1935 return;
1936
Zhu Yib481de92007-09-25 17:54:57 -07001937
Reinette Chatre508e32e2008-04-14 21:16:13 -07001938 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08001939 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07001940
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08001941 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001942 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08001943
Zhu Yib481de92007-09-25 17:54:57 -07001944 conf = ieee80211_get_hw_conf(priv->hw);
1945
1946 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001947 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001948
Tomas Winkler3195c1f2008-10-08 09:37:30 +08001949 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07001950 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07001951 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07001952 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001953 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07001954 "Attempting to continue.\n");
1955
1956 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
1957
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08001958 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001959
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07001960 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001961 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
1962
Tomas Winklere1623442009-01-27 14:27:56 -08001963 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001964 priv->assoc_id, priv->beacon_int);
1965
1966 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
1967 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1968 else
1969 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1970
1971 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
1972 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1973 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1974 else
1975 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1976
Johannes Berg05c914f2008-09-11 00:01:58 +02001977 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001978 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1979
1980 }
1981
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001982 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001983
1984 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001985 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07001986 break;
1987
Johannes Berg05c914f2008-09-11 00:01:58 +02001988 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07001989
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001990 /* assume default assoc id */
1991 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001992
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001993 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001994 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001995
1996 break;
1997
1998 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001999 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002000 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002001 break;
2002 }
2003
Johannes Berg05c914f2008-09-11 00:01:58 +02002004 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002005 priv->assoc_station_added = 1;
2006
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002007 spin_lock_irqsave(&priv->lock, flags);
2008 iwl_activate_qos(priv, 0);
2009 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002010
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002011 /* the chain noise calibration will enabled PM upon completion
2012 * If chain noise has already been run, then we need to enable
2013 * power management here */
2014 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2015 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002016
2017 /* Enable Rx differential gain and sensitivity calibrations */
2018 iwl_chain_noise_reset(priv);
2019 priv->start_calib = 1;
2020
Reinette Chatre508e32e2008-04-14 21:16:13 -07002021}
2022
Zhu Yib481de92007-09-25 17:54:57 -07002023/*****************************************************************************
2024 *
2025 * mac80211 entry point functions
2026 *
2027 *****************************************************************************/
2028
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002029#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08002030
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002031static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002032{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002033 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002034 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002035
Tomas Winklere1623442009-01-27 14:27:56 -08002036 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002037
2038 /* we should be verifying the device is ready to be opened */
2039 mutex_lock(&priv->mutex);
2040
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002041 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08002042 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2043 * ucode filename and max sizes are card-specific. */
2044
2045 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002046 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002047 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002048 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002049 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002050 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002051 }
2052 }
2053
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002054 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002055
Zhu Yib481de92007-09-25 17:54:57 -07002056 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002057
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002058 iwl_rfkill_set_hw_state(priv);
2059
Zhu Yie655b9f2008-01-24 02:19:38 -08002060 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002061 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002062
Tomas Winklerc1842d62008-08-04 16:00:43 +08002063 if (iwl_is_rfkill(priv))
2064 goto out;
2065
Tomas Winklere1623442009-01-27 14:27:56 -08002066 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002067
2068 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2069 return 0;
2070
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002071 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08002072 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002073 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2074 test_bit(STATUS_READY, &priv->status),
2075 UCODE_READY_TIMEOUT);
2076 if (!ret) {
2077 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002078 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002079 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002080 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002081 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002082 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002083
Tomas Winklerc1842d62008-08-04 16:00:43 +08002084out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002085 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002086 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002087 return 0;
2088}
2089
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002090static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002091{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002092 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002093
Tomas Winklere1623442009-01-27 14:27:56 -08002094 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002095
Zhu Yie655b9f2008-01-24 02:19:38 -08002096 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08002097 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002098 return;
2099 }
2100
Zhu Yib481de92007-09-25 17:54:57 -07002101 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002102
Tomas Winklerfee12472008-04-03 16:05:21 -07002103 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002104 /* stop mac, cancel any scan request and clear
2105 * RXON_FILTER_ASSOC_MSK BIT
2106 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002107 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002108 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002109 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002110 }
2111
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002112 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002113
2114 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002115
2116 /* enable interrupts again in order to receive rfkill changes */
2117 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2118 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002119
Tomas Winklere1623442009-01-27 14:27:56 -08002120 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002121}
2122
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002123static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002124{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002125 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002126
Tomas Winklere1623442009-01-27 14:27:56 -08002127 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002128
Tomas Winklere1623442009-01-27 14:27:56 -08002129 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002130 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002131
Johannes Berge039fa42008-05-15 12:55:29 +02002132 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002133 dev_kfree_skb_any(skb);
2134
Tomas Winklere1623442009-01-27 14:27:56 -08002135 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002136 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002137}
2138
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002139static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002140 struct ieee80211_if_init_conf *conf)
2141{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002142 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002143 unsigned long flags;
2144
Tomas Winklere1623442009-01-27 14:27:56 -08002145 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002146
Johannes Berg32bfd352007-12-19 01:31:26 +01002147 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002148 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002149 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002150 }
2151
2152 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002153 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002154 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002155
2156 spin_unlock_irqrestore(&priv->lock, flags);
2157
2158 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002159
2160 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08002161 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002162 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2163 }
Zhu Yib481de92007-09-25 17:54:57 -07002164
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002165 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002166 /* we are not ready, will run again when ready */
2167 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002168
Zhu Yib481de92007-09-25 17:54:57 -07002169 mutex_unlock(&priv->mutex);
2170
Tomas Winklere1623442009-01-27 14:27:56 -08002171 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002172 return 0;
2173}
2174
2175/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002176 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002177 *
2178 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2179 * be set inappropriately and the driver currently sets the hardware up to
2180 * use it whenever needed.
2181 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002182static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002183{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002184 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002185 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002186 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002187 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002188 int ret = 0;
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002189 u16 channel;
Zhu Yib481de92007-09-25 17:54:57 -07002190
2191 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002192 IWL_DEBUG_MAC80211(priv, "enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002193
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002194 priv->current_ht_config.is_ht = conf_is_ht(conf);
Johannes Bergae5eb022008-10-14 16:58:37 +02002195
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002196 if (conf->radio_enabled && iwl_radio_kill_sw_enable_radio(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002197 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - waiting for uCode\n");
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002198 goto out;
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002199 }
2200
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002201 if (!conf->radio_enabled)
2202 iwl_radio_kill_sw_disable_radio(priv);
2203
Tomas Winklerfee12472008-04-03 16:05:21 -07002204 if (!iwl_is_ready(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002205 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002206 ret = -EIO;
2207 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002208 }
2209
Assaf Krauss1ea87392008-03-18 14:57:50 -07002210 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07002211 test_bit(STATUS_SCANNING, &priv->status))) {
Tomas Winklere1623442009-01-27 14:27:56 -08002212 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002213 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08002214 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002215 }
2216
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002217 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2218 ch_info = iwl_get_channel_info(priv, conf->channel->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07002219 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002220 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002221 ret = -EINVAL;
2222 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002223 }
2224
Johannes Berg05c914f2008-09-11 00:01:58 +02002225 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Assaf Krauss398f9e72008-06-12 09:47:06 +08002226 !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002227 IWL_ERR(priv, "channel %d in band %d not IBSS channel\n",
Assaf Krauss398f9e72008-06-12 09:47:06 +08002228 conf->channel->hw_value, conf->channel->band);
2229 ret = -EINVAL;
2230 goto out;
2231 }
2232
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002233 spin_lock_irqsave(&priv->lock, flags);
2234
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002235
Tomas Winkler78330fd2008-02-06 02:37:18 +02002236 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07002237 * from any ht related info since 2.4 does not
2238 * support ht */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002239 if ((le16_to_cpu(priv->staging_rxon.channel) != channel)
Zhu Yib481de92007-09-25 17:54:57 -07002240#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2241 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
2242#endif
2243 )
2244 priv->staging_rxon.flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002245
Tomas Winkler17e72782008-09-03 11:26:26 +08002246 iwl_set_rxon_channel(priv, conf->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002247
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002248 iwl_set_flags_for_band(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07002249
2250 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01002251 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07002252 * the rate mask to what mac80211 lists */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002253 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002254
2255 spin_unlock_irqrestore(&priv->lock, flags);
2256
2257#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2258 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002259 iwl_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002260 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002261 }
2262#endif
2263
Zhu Yib481de92007-09-25 17:54:57 -07002264 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08002265 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002266 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002267 }
2268
Tomas Winklerfee12472008-04-03 16:05:21 -07002269 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002270 IWL_DEBUG_MAC80211(priv, "leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002271 ret = -EIO;
2272 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002273 }
2274
Ester Kummere602cb12008-09-26 15:09:33 +08002275 if (conf->flags & IEEE80211_CONF_PS)
2276 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2277 else
2278 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2279 if (ret)
Tomas Winklere1623442009-01-27 14:27:56 -08002280 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
Ester Kummere602cb12008-09-26 15:09:33 +08002281
Tomas Winklere1623442009-01-27 14:27:56 -08002282 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002283 priv->tx_power_user_lmt, conf->power_level);
2284
2285 iwl_set_tx_power(priv, conf->power_level, false);
2286
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002287 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002288
Rick Farrington7b841722009-01-23 13:45:10 -08002289 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2290 iwl_set_rxon_chain(priv);
2291
Zhu Yib481de92007-09-25 17:54:57 -07002292 if (memcmp(&priv->active_rxon,
2293 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002294 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002295 else
Tomas Winklere1623442009-01-27 14:27:56 -08002296 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002297
Tomas Winklere1623442009-01-27 14:27:56 -08002298 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002299
Zhu Yia0646472007-12-20 14:10:01 +08002300out:
Zhu Yi5a66926a2008-01-14 17:46:18 -08002301 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002302 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002303}
2304
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002305static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002306{
Tomas Winkler857485c2008-03-21 13:53:44 -07002307 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002308 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002309
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002310 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002311 return;
2312
2313 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002314 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002315
2316 /* RXON - unassoc (to set timing command) */
2317 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002318 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002319
2320 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002321 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002322 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002323 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002324 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002325 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002326 "Attempting to continue.\n");
2327
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002328 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002329
2330 /* FIXME: what should be the assoc_id for AP? */
2331 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2332 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2333 priv->staging_rxon.flags |=
2334 RXON_FLG_SHORT_PREAMBLE_MSK;
2335 else
2336 priv->staging_rxon.flags &=
2337 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2338
2339 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2340 if (priv->assoc_capability &
2341 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2342 priv->staging_rxon.flags |=
2343 RXON_FLG_SHORT_SLOT_MSK;
2344 else
2345 priv->staging_rxon.flags &=
2346 ~RXON_FLG_SHORT_SLOT_MSK;
2347
Johannes Berg05c914f2008-09-11 00:01:58 +02002348 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002349 priv->staging_rxon.flags &=
2350 ~RXON_FLG_SHORT_SLOT_MSK;
2351 }
2352 /* restore RXON assoc */
2353 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002354 iwl_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002355 spin_lock_irqsave(&priv->lock, flags);
2356 iwl_activate_qos(priv, 1);
2357 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002358 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002359 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002360 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002361
2362 /* FIXME - we need to add code here to detect a totally new
2363 * configuration, reset the AP, unassoc, rxon timing, assoc,
2364 * clear sta table, add BCAST sta... */
2365}
2366
Johannes Berg9d139c82008-07-09 14:40:37 +02002367
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002368static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002369 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002370 struct ieee80211_if_conf *conf)
2371{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002372 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002373 int rc;
2374
2375 if (conf == NULL)
2376 return -EIO;
2377
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002378 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002379 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002380 return 0;
2381 }
2382
Johannes Berg05c914f2008-09-11 00:01:58 +02002383 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002384 conf->changed & IEEE80211_IFCC_BEACON) {
2385 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2386 if (!beacon)
2387 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002388 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002389 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002390 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002391 if (rc)
2392 return rc;
2393 }
2394
Tomas Winklerfee12472008-04-03 16:05:21 -07002395 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002396 return -EAGAIN;
2397
Zhu Yib481de92007-09-25 17:54:57 -07002398 mutex_lock(&priv->mutex);
2399
Zhu Yib481de92007-09-25 17:54:57 -07002400 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08002401 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002402
Johannes Berg4150c572007-09-17 01:29:23 -04002403/*
2404 * very dubious code was here; the probe filtering flag is never set:
2405 *
Zhu Yib481de92007-09-25 17:54:57 -07002406 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2407 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002408 */
Zhu Yib481de92007-09-25 17:54:57 -07002409
Johannes Berg05c914f2008-09-11 00:01:58 +02002410 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002411 if (!conf->bssid) {
2412 conf->bssid = priv->mac_addr;
2413 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08002414 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002415 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002416 }
2417 if (priv->ibss_beacon)
2418 dev_kfree_skb(priv->ibss_beacon);
2419
Johannes Berg9d139c82008-07-09 14:40:37 +02002420 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002421 }
2422
Tomas Winklerfee12472008-04-03 16:05:21 -07002423 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002424 goto done;
2425
Zhu Yib481de92007-09-25 17:54:57 -07002426 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2427 !is_multicast_ether_addr(conf->bssid)) {
2428 /* If there is currently a HW scan going on in the background
2429 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002430 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002431 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002432 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002433 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002434 mutex_unlock(&priv->mutex);
2435 return -EAGAIN;
2436 }
2437 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2438
2439 /* TODO: Audit driver for usage of these members and see
2440 * if mac80211 deprecates them (priv->bssid looks like it
2441 * shouldn't be there, but I haven't scanned the IBSS code
2442 * to verify) - jpk */
2443 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2444
Johannes Berg05c914f2008-09-11 00:01:58 +02002445 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002446 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002447 else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002448 rc = iwl_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002449 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002450 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002451 priv, priv->active_rxon.bssid_addr, 1);
2452 }
2453
2454 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002455 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002456 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002457 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002458 }
2459
Mohamed Abbasfde35712007-11-29 11:10:15 +08002460 done:
Tomas Winklere1623442009-01-27 14:27:56 -08002461 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002462 mutex_unlock(&priv->mutex);
2463
2464 return 0;
2465}
2466
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002467static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002468 struct ieee80211_if_init_conf *conf)
2469{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002470 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002471
Tomas Winklere1623442009-01-27 14:27:56 -08002472 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002473
2474 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002475
Tomas Winklerfee12472008-04-03 16:05:21 -07002476 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002477 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002478 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002479 iwl_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002480 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002481 if (priv->vif == conf->vif) {
2482 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002483 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002484 }
2485 mutex_unlock(&priv->mutex);
2486
Tomas Winklere1623442009-01-27 14:27:56 -08002487 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002488
2489}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002490
Tomas Winkler3109ece2008-03-28 16:33:35 -07002491#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002492static void iwl_bss_info_changed(struct ieee80211_hw *hw,
Johannes Berg471b3ef2007-12-28 14:32:58 +01002493 struct ieee80211_vif *vif,
2494 struct ieee80211_bss_conf *bss_conf,
2495 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02002496{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002497 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02002498
Tomas Winklere1623442009-01-27 14:27:56 -08002499 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002500
Johannes Berg471b3ef2007-12-28 14:32:58 +01002501 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002502 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
Tomas Winkler3109ece2008-03-28 16:33:35 -07002503 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002504 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02002505 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2506 else
2507 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2508 }
2509
Johannes Berg471b3ef2007-12-28 14:32:58 +01002510 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winklere1623442009-01-27 14:27:56 -08002511 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01002512 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02002513 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2514 else
2515 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2516 }
2517
Tomas Winkler98952d52008-03-28 16:33:33 -07002518 if (changes & BSS_CHANGED_HT) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002519 iwl_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002520 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07002521 }
2522
Johannes Berg471b3ef2007-12-28 14:32:58 +01002523 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002524 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002525 /* This should never happen as this function should
2526 * never be called from interrupt context. */
2527 if (WARN_ON_ONCE(in_interrupt()))
2528 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002529 if (bss_conf->assoc) {
2530 priv->assoc_id = bss_conf->aid;
2531 priv->beacon_int = bss_conf->beacon_int;
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002532 priv->power_data.dtim_period = bss_conf->dtim_period;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002533 priv->timestamp = bss_conf->timestamp;
2534 priv->assoc_capability = bss_conf->assoc_capability;
Tomas Winkler9ccacb82008-09-16 14:01:03 +08002535
2536 /* we have just associated, don't start scan too early
2537 * leave time for EAPOL exchange to complete
2538 */
Tomas Winkler3109ece2008-03-28 16:33:35 -07002539 priv->next_scan_jiffies = jiffies +
2540 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002541 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002542 iwl_post_associate(priv);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002543 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002544 } else {
2545 priv->assoc_id = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08002546 IWL_DEBUG_MAC80211(priv, "DISASSOC %d\n", bss_conf->assoc);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002547 }
2548 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
Tomas Winklere1623442009-01-27 14:27:56 -08002549 IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07002550 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002551 }
2552
Tomas Winkler220173b2007-10-16 00:50:25 +02002553}
Zhu Yib481de92007-09-25 17:54:57 -07002554
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002555static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002556 struct ieee80211_key_conf *keyconf, const u8 *addr,
2557 u32 iv32, u16 *phase1key)
2558{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002559
Tomas Winkler9f586712008-11-12 13:14:05 -08002560 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002561 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002562
Tomas Winkler9f586712008-11-12 13:14:05 -08002563 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002564
Tomas Winklere1623442009-01-27 14:27:56 -08002565 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002566}
2567
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002568static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002569 struct ieee80211_vif *vif,
2570 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002571 struct ieee80211_key_conf *key)
2572{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002573 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002574 const u8 *addr;
2575 int ret;
2576 u8 sta_id;
2577 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002578
Tomas Winklere1623442009-01-27 14:27:56 -08002579 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002580
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002581 if (priv->hw_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002582 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002583 return -EOPNOTSUPP;
2584 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002585 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07002586 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002587 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002588 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002589 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002590 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002591
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002592 }
Zhu Yib481de92007-09-25 17:54:57 -07002593
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002594 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002595 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002596 mutex_unlock(&priv->mutex);
2597
2598 /* If we are getting WEP group key and we didn't receive any key mapping
2599 * so far, we are in legacy wep mode (group key only), otherwise we are
2600 * in 1X mode.
2601 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002602 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002603 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002604 if (cmd == SET_KEY)
2605 is_default_wep_key = !priv->key_mapping_key;
2606 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002607 is_default_wep_key =
2608 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002609 }
mabbas052c4b92007-10-25 17:15:43 +08002610
Zhu Yib481de92007-09-25 17:54:57 -07002611 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002612 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002613 if (is_default_wep_key)
2614 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002615 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002616 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002617
Tomas Winklere1623442009-01-27 14:27:56 -08002618 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002619 break;
2620 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002621 if (is_default_wep_key)
2622 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002623 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002624 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002625
Tomas Winklere1623442009-01-27 14:27:56 -08002626 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002627 break;
2628 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002629 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002630 }
2631
Tomas Winklere1623442009-01-27 14:27:56 -08002632 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002633
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002634 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002635}
2636
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002637static int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07002638 const struct ieee80211_tx_queue_params *params)
2639{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002640 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002641 unsigned long flags;
2642 int q;
Zhu Yib481de92007-09-25 17:54:57 -07002643
Tomas Winklere1623442009-01-27 14:27:56 -08002644 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002645
Tomas Winklerfee12472008-04-03 16:05:21 -07002646 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002647 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002648 return -EIO;
2649 }
2650
2651 if (queue >= AC_NUM) {
Tomas Winklere1623442009-01-27 14:27:56 -08002652 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
Zhu Yib481de92007-09-25 17:54:57 -07002653 return 0;
2654 }
2655
Zhu Yib481de92007-09-25 17:54:57 -07002656 q = AC_NUM - 1 - queue;
2657
2658 spin_lock_irqsave(&priv->lock, flags);
2659
2660 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2661 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2662 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2663 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01002664 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07002665
2666 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2667 priv->qos_data.qos_active = 1;
2668
Johannes Berg05c914f2008-09-11 00:01:58 +02002669 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002670 iwl_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002671 else if (priv->assoc_id && iwl_is_associated(priv))
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002672 iwl_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002673
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002674 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002675
Tomas Winklere1623442009-01-27 14:27:56 -08002676 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002677 return 0;
2678}
2679
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002680static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08002681 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002682 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002683{
2684 struct iwl_priv *priv = hw->priv;
Tomas Winklerd783b062008-07-18 13:53:02 +08002685
Tomas Winklere1623442009-01-27 14:27:56 -08002686 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002687 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002688
2689 if (!(priv->cfg->sku & IWL_SKU_N))
2690 return -EACCES;
2691
2692 switch (action) {
2693 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002694 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002695 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002696 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002697 IWL_DEBUG_HT(priv, "stop Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002698 return iwl_sta_rx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002699 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002700 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002701 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002702 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002703 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002704 return iwl_tx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002705 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002706 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002707 return -EINVAL;
2708 break;
2709 }
2710 return 0;
2711}
Tomas Winkler9f586712008-11-12 13:14:05 -08002712
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002713static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002714 struct ieee80211_tx_queue_stats *stats)
2715{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002716 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002717 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08002718 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002719 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07002720 unsigned long flags;
2721
Tomas Winklere1623442009-01-27 14:27:56 -08002722 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002723
Tomas Winklerfee12472008-04-03 16:05:21 -07002724 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002725 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002726 return -EIO;
2727 }
2728
2729 spin_lock_irqsave(&priv->lock, flags);
2730
2731 for (i = 0; i < AC_NUM; i++) {
2732 txq = &priv->txq[i];
2733 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002734 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07002735
Johannes Berg57ffc582008-04-29 17:18:59 +02002736 stats[i].len = q->n_window - avail;
2737 stats[i].limit = q->n_window - q->high_mark;
2738 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07002739
2740 }
2741 spin_unlock_irqrestore(&priv->lock, flags);
2742
Tomas Winklere1623442009-01-27 14:27:56 -08002743 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002744
2745 return 0;
2746}
2747
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002748static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002749 struct ieee80211_low_level_stats *stats)
2750{
Ester Kummerbf403db2008-05-05 10:22:40 +08002751 struct iwl_priv *priv = hw->priv;
2752
2753 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002754 IWL_DEBUG_MAC80211(priv, "enter\n");
2755 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002756
2757 return 0;
2758}
2759
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002760static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002761{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002762 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002763 unsigned long flags;
2764
2765 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002766 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002767
Zhu Yib481de92007-09-25 17:54:57 -07002768 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02002769 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07002770 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002771
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002772 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002773
Zhu Yib481de92007-09-25 17:54:57 -07002774 spin_lock_irqsave(&priv->lock, flags);
2775 priv->assoc_id = 0;
2776 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002777 priv->assoc_station_added = 0;
2778
2779 /* new association get rid of ibss beacon skb */
2780 if (priv->ibss_beacon)
2781 dev_kfree_skb(priv->ibss_beacon);
2782
2783 priv->ibss_beacon = NULL;
2784
2785 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002786 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002787 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07002788 priv->beacon_int = 0;
2789
2790 spin_unlock_irqrestore(&priv->lock, flags);
2791
Tomas Winklerfee12472008-04-03 16:05:21 -07002792 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002793 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002794 mutex_unlock(&priv->mutex);
2795 return;
2796 }
2797
mabbas052c4b92007-10-25 17:15:43 +08002798 /* we are restarting association process
2799 * clear RXON_FILTER_ASSOC_MSK bit
2800 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002801 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002802 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08002803 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002804 iwl_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08002805 }
2806
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002807 iwl_power_update_mode(priv, 0);
2808
Zhu Yib481de92007-09-25 17:54:57 -07002809 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02002810 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08002811
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002812 /* switch to CAM during association period.
2813 * the ucode will block any association/authentication
2814 * frome during assiciation period if it can not hear
2815 * the AP because of PM. the timer enable PM back is
2816 * association do not complete
2817 */
2818 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
2819 IEEE80211_CHAN_RADAR))
2820 iwl_power_disable_management(priv, 3000);
2821
Tomas Winklere1623442009-01-27 14:27:56 -08002822 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002823 mutex_unlock(&priv->mutex);
2824 return;
2825 }
2826
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002827 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002828
2829 mutex_unlock(&priv->mutex);
2830
Tomas Winklere1623442009-01-27 14:27:56 -08002831 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002832}
2833
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002834static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002835{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002836 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002837 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08002838 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07002839
Tomas Winklere1623442009-01-27 14:27:56 -08002840 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002841
Tomas Winklerfee12472008-04-03 16:05:21 -07002842 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002843 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002844 return -EIO;
2845 }
2846
Johannes Berg05c914f2008-09-11 00:01:58 +02002847 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002848 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002849 return -EIO;
2850 }
2851
2852 spin_lock_irqsave(&priv->lock, flags);
2853
2854 if (priv->ibss_beacon)
2855 dev_kfree_skb(priv->ibss_beacon);
2856
2857 priv->ibss_beacon = skb;
2858
2859 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08002860 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08002861 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07002862
Tomas Winklere1623442009-01-27 14:27:56 -08002863 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002864 spin_unlock_irqrestore(&priv->lock, flags);
2865
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002866 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002867
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002868 iwl_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002869
Zhu Yib481de92007-09-25 17:54:57 -07002870
2871 return 0;
2872}
2873
Zhu Yib481de92007-09-25 17:54:57 -07002874/*****************************************************************************
2875 *
2876 * sysfs attributes
2877 *
2878 *****************************************************************************/
2879
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002880#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002881
2882/*
2883 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08002884 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07002885 * used for controlling the debug level.
2886 *
2887 * See the level definitions in iwl for details.
2888 */
2889
Ester Kummer8cf769c2008-05-06 11:05:11 +08002890static ssize_t show_debug_level(struct device *d,
2891 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07002892{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002893 struct iwl_priv *priv = d->driver_data;
2894
2895 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07002896}
Ester Kummer8cf769c2008-05-06 11:05:11 +08002897static ssize_t store_debug_level(struct device *d,
2898 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07002899 const char *buf, size_t count)
2900{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002901 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002902 unsigned long val;
2903 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002904
Tomas Winkler9257746f2008-09-03 11:26:32 +08002905 ret = strict_strtoul(buf, 0, &val);
2906 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002907 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002908 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08002909 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07002910
2911 return strnlen(buf, count);
2912}
2913
Ester Kummer8cf769c2008-05-06 11:05:11 +08002914static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
2915 show_debug_level, store_debug_level);
2916
Zhu Yib481de92007-09-25 17:54:57 -07002917
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002918#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07002919
Zhu Yib481de92007-09-25 17:54:57 -07002920
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002921static ssize_t show_version(struct device *d,
2922 struct device_attribute *attr, char *buf)
2923{
2924 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08002925 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08002926 ssize_t pos = 0;
2927 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002928
2929 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08002930 pos += sprintf(buf + pos,
2931 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
2932 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002933 palive->ucode_major, palive->ucode_minor,
2934 palive->sw_rev[0], palive->sw_rev[1],
2935 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002936 else
Tomas Winklerf236a262008-06-30 17:23:02 +08002937 pos += sprintf(buf + pos, "fw not loaded\n");
2938
2939 if (priv->eeprom) {
2940 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
2941 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
2942 eeprom_ver);
2943 } else {
2944 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
2945 }
2946
2947 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002948}
2949
2950static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
2951
Zhu Yib481de92007-09-25 17:54:57 -07002952static ssize_t show_temperature(struct device *d,
2953 struct device_attribute *attr, char *buf)
2954{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002955 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002956
Tomas Winklerfee12472008-04-03 16:05:21 -07002957 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002958 return -EAGAIN;
2959
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08002960 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07002961}
2962
2963static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
2964
Zhu Yib481de92007-09-25 17:54:57 -07002965static ssize_t show_tx_power(struct device *d,
2966 struct device_attribute *attr, char *buf)
2967{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002968 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08002969
2970 if (!iwl_is_ready_rf(priv))
2971 return sprintf(buf, "off\n");
2972 else
2973 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07002974}
2975
2976static ssize_t store_tx_power(struct device *d,
2977 struct device_attribute *attr,
2978 const char *buf, size_t count)
2979{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002980 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002981 unsigned long val;
2982 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002983
Tomas Winkler9257746f2008-09-03 11:26:32 +08002984 ret = strict_strtoul(buf, 10, &val);
2985 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002986 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002987 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002988 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07002989
2990 return count;
2991}
2992
2993static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
2994
2995static ssize_t show_flags(struct device *d,
2996 struct device_attribute *attr, char *buf)
2997{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002998 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002999
3000 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3001}
3002
3003static ssize_t store_flags(struct device *d,
3004 struct device_attribute *attr,
3005 const char *buf, size_t count)
3006{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003007 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003008 unsigned long val;
3009 u32 flags;
3010 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003011 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003012 return ret;
3013 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003014
3015 mutex_lock(&priv->mutex);
3016 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3017 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003018 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003019 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003020 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003021 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07003022 priv->staging_rxon.flags = cpu_to_le32(flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003023 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003024 }
3025 }
3026 mutex_unlock(&priv->mutex);
3027
3028 return count;
3029}
3030
3031static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3032
3033static ssize_t show_filter_flags(struct device *d,
3034 struct device_attribute *attr, char *buf)
3035{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003036 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003037
3038 return sprintf(buf, "0x%04X\n",
3039 le32_to_cpu(priv->active_rxon.filter_flags));
3040}
3041
3042static ssize_t store_filter_flags(struct device *d,
3043 struct device_attribute *attr,
3044 const char *buf, size_t count)
3045{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003046 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003047 unsigned long val;
3048 u32 filter_flags;
3049 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003050 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003051 return ret;
3052 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003053
3054 mutex_lock(&priv->mutex);
3055 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3056 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003057 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003058 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003059 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003060 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003061 "0x%04X\n", filter_flags);
3062 priv->staging_rxon.filter_flags =
3063 cpu_to_le32(filter_flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003064 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003065 }
3066 }
3067 mutex_unlock(&priv->mutex);
3068
3069 return count;
3070}
3071
3072static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3073 store_filter_flags);
3074
Zhu Yib481de92007-09-25 17:54:57 -07003075static ssize_t store_power_level(struct device *d,
3076 struct device_attribute *attr,
3077 const char *buf, size_t count)
3078{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003079 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003080 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003081 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003082
Tomas Winkler9257746f2008-09-03 11:26:32 +08003083
Zhu Yib481de92007-09-25 17:54:57 -07003084 mutex_lock(&priv->mutex);
3085
Tomas Winklerfee12472008-04-03 16:05:21 -07003086 if (!iwl_is_ready(priv)) {
Esti Kummer298df1f2008-07-18 13:52:58 +08003087 ret = -EAGAIN;
Zhu Yib481de92007-09-25 17:54:57 -07003088 goto out;
3089 }
3090
Tomas Winkler9257746f2008-09-03 11:26:32 +08003091 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003092 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003093 goto out;
3094
Esti Kummer298df1f2008-07-18 13:52:58 +08003095 ret = iwl_power_set_user_mode(priv, mode);
3096 if (ret) {
Tomas Winklere1623442009-01-27 14:27:56 -08003097 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003098 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003099 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003100 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003101
3102 out:
3103 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08003104 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003105}
3106
Zhu Yib481de92007-09-25 17:54:57 -07003107static ssize_t show_power_level(struct device *d,
3108 struct device_attribute *attr, char *buf)
3109{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003110 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003111 int mode = priv->power_data.user_power_setting;
3112 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003113 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07003114 char *p = buf;
3115
Esti Kummer298df1f2008-07-18 13:52:58 +08003116 switch (system) {
3117 case IWL_POWER_SYS_AUTO:
3118 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07003119 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003120 case IWL_POWER_SYS_AC:
3121 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07003122 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003123 case IWL_POWER_SYS_BATTERY:
3124 p += sprintf(p, "SYSTEM:battery");
3125 break;
Zhu Yib481de92007-09-25 17:54:57 -07003126 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003127
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003128 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3129 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08003130 p += sprintf(p, "\tINDEX:%d", level);
3131 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003132 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07003133}
3134
3135static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3136 store_power_level);
3137
Zhu Yib481de92007-09-25 17:54:57 -07003138
3139static ssize_t show_statistics(struct device *d,
3140 struct device_attribute *attr, char *buf)
3141{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003142 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003143 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003144 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003145 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003146 int rc = 0;
3147
Tomas Winklerfee12472008-04-03 16:05:21 -07003148 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003149 return -EAGAIN;
3150
3151 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07003152 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003153 mutex_unlock(&priv->mutex);
3154
3155 if (rc) {
3156 len = sprintf(buf,
3157 "Error sending statistics request: 0x%08X\n", rc);
3158 return len;
3159 }
3160
3161 while (size && (PAGE_SIZE - len)) {
3162 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3163 PAGE_SIZE - len, 1);
3164 len = strlen(buf);
3165 if (PAGE_SIZE - len)
3166 buf[len++] = '\n';
3167
3168 ofs += 16;
3169 size -= min(size, 16U);
3170 }
3171
3172 return len;
3173}
3174
3175static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3176
Zhu Yib481de92007-09-25 17:54:57 -07003177
Zhu Yib481de92007-09-25 17:54:57 -07003178/*****************************************************************************
3179 *
3180 * driver setup and teardown
3181 *
3182 *****************************************************************************/
3183
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003184static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003185{
Reinette Chatred21050c2009-02-13 11:51:18 -08003186 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003187
3188 init_waitqueue_head(&priv->wait_command_queue);
3189
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003190 INIT_WORK(&priv->up, iwl_bg_up);
3191 INIT_WORK(&priv->restart, iwl_bg_restart);
3192 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3193 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3194 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003195 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003196 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3197 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003198
Tomas Winkler2a421b92008-06-12 09:47:10 +08003199 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003200 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003201
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003202 if (priv->cfg->ops->lib->setup_deferred_work)
3203 priv->cfg->ops->lib->setup_deferred_work(priv);
3204
3205 init_timer(&priv->statistics_periodic);
3206 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003207 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003208
3209 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003210 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003211}
3212
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003213static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003214{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003215 if (priv->cfg->ops->lib->cancel_deferred_work)
3216 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003217
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003218 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003219 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003220 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07003221 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003222 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003223 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003224}
3225
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003226static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003227 &dev_attr_flags.attr,
3228 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003229 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003230 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003231 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003232 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003233#ifdef CONFIG_IWLWIFI_DEBUG
3234 &dev_attr_debug_level.attr,
3235#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003236 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003237
3238 NULL
3239};
3240
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003241static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003242 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003243 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003244};
3245
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003246static struct ieee80211_ops iwl_hw_ops = {
3247 .tx = iwl_mac_tx,
3248 .start = iwl_mac_start,
3249 .stop = iwl_mac_stop,
3250 .add_interface = iwl_mac_add_interface,
3251 .remove_interface = iwl_mac_remove_interface,
3252 .config = iwl_mac_config,
3253 .config_interface = iwl_mac_config_interface,
3254 .configure_filter = iwl_configure_filter,
3255 .set_key = iwl_mac_set_key,
3256 .update_tkip_key = iwl_mac_update_tkip_key,
3257 .get_stats = iwl_mac_get_stats,
3258 .get_tx_stats = iwl_mac_get_tx_stats,
3259 .conf_tx = iwl_mac_conf_tx,
3260 .reset_tsf = iwl_mac_reset_tsf,
3261 .bss_info_changed = iwl_bss_info_changed,
3262 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003263 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003264};
3265
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003266static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003267{
3268 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003269 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003270 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003271 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003272 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003273 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003274
Assaf Krauss316c30d2008-03-14 10:38:46 -07003275 /************************
3276 * 1. Allocating HW data
3277 ************************/
3278
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003279 /* Disabling hardware scan means that mac80211 will perform scans
3280 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003281 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003282 if (cfg->mod_params->debug & IWL_DL_INFO)
3283 dev_printk(KERN_DEBUG, &(pdev->dev),
3284 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003285 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003286 }
3287
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003288 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003289 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003290 err = -ENOMEM;
3291 goto out;
3292 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003293 priv = hw->priv;
3294 /* At this point both hw and priv are allocated. */
3295
Zhu Yib481de92007-09-25 17:54:57 -07003296 SET_IEEE80211_DEV(hw, &pdev->dev);
3297
Tomas Winklere1623442009-01-27 14:27:56 -08003298 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003299 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003300 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003301
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003302#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003303 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003304 atomic_set(&priv->restrict_refcnt, 0);
3305#endif
Zhu Yib481de92007-09-25 17:54:57 -07003306
Assaf Krauss316c30d2008-03-14 10:38:46 -07003307 /**************************
3308 * 2. Initializing PCI bus
3309 **************************/
3310 if (pci_enable_device(pdev)) {
3311 err = -ENODEV;
3312 goto out_ieee80211_free_hw;
3313 }
3314
3315 pci_set_master(pdev);
3316
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003317 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003318 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003319 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003320 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003321 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003322 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003323 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003324 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003325 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003326 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003327 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003328 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003329 }
3330
3331 err = pci_request_regions(pdev, DRV_NAME);
3332 if (err)
3333 goto out_pci_disable_device;
3334
3335 pci_set_drvdata(pdev, priv);
3336
Assaf Krauss316c30d2008-03-14 10:38:46 -07003337
3338 /***********************
3339 * 3. Read REV register
3340 ***********************/
3341 priv->hw_base = pci_iomap(pdev, 0, 0);
3342 if (!priv->hw_base) {
3343 err = -ENODEV;
3344 goto out_pci_release_regions;
3345 }
3346
Tomas Winklere1623442009-01-27 14:27:56 -08003347 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003348 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003349 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003350
Tomas Winklerb661c812008-04-23 17:14:54 -07003351 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003352 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003353 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003354
Tomas Winklere7b63582008-09-03 11:26:49 +08003355 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3356 * PCI Tx retries from interfering with C3 CPU state */
3357 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3358
Tomas Winkler91238712008-04-23 17:14:53 -07003359 /* amp init */
3360 err = priv->cfg->ops->lib->apm_ops.init(priv);
3361 if (err < 0) {
Reinette Chatre808ff692009-03-11 11:18:01 -07003362 IWL_ERR(priv, "Failed to init APMG\n");
Tomas Winkler91238712008-04-23 17:14:53 -07003363 goto out_iounmap;
3364 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003365 /*****************
3366 * 4. Read EEPROM
3367 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003368 /* Read the EEPROM */
3369 err = iwl_eeprom_init(priv);
3370 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003371 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003372 goto out_iounmap;
3373 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003374 err = iwl_eeprom_check_version(priv);
3375 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08003376 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07003377
Ron Rindjunsky02883012008-05-15 13:53:53 +08003378 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003379 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003380 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003381 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3382
3383 /************************
3384 * 5. Setup HW constants
3385 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003386 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003387 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003388 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003389 }
3390
3391 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003392 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003393 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003394
Tomas Winkler6ba87952008-05-15 13:54:17 +08003395 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003396 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003397 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003398 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003399
3400 /**********************************
3401 * 7. Initialize module parameters
3402 **********************************/
3403
3404 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003405 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003406 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08003407 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003408 }
3409
Assaf Krauss316c30d2008-03-14 10:38:46 -07003410 /********************
3411 * 8. Setup services
3412 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003413 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003414 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003415 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003416
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003417 pci_enable_msi(priv->pci_dev);
3418
3419 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3420 DRV_NAME, priv);
3421 if (err) {
3422 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3423 goto out_disable_msi;
3424 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003425 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003426 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003427 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003428 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003429 }
3430
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003431 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003432 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003433
Tomas Winkler6ba87952008-05-15 13:54:17 +08003434 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003435 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003436 **********************************/
3437
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003438 /* enable interrupts if needed: hw bug w/a */
3439 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3440 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3441 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3442 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3443 }
3444
3445 iwl_enable_interrupts(priv);
3446
Tomas Winkler6ba87952008-05-15 13:54:17 +08003447 err = iwl_setup_mac(priv);
3448 if (err)
3449 goto out_remove_sysfs;
3450
3451 err = iwl_dbgfs_register(priv, DRV_NAME);
3452 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003453 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003454
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003455 /* If platform's RF_KILL switch is NOT set to KILL */
3456 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3457 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3458 else
3459 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003460
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003461 err = iwl_rfkill_init(priv);
3462 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003463 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003464 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003465 else
3466 iwl_rfkill_set_hw_state(priv);
3467
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003468 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003469 return 0;
3470
Assaf Krauss316c30d2008-03-14 10:38:46 -07003471 out_remove_sysfs:
Reinette Chatrec8f16132009-02-27 16:21:22 -08003472 destroy_workqueue(priv->workqueue);
3473 priv->workqueue = NULL;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003474 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003475 out_free_irq:
3476 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003477 out_disable_msi:
3478 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003479 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003480 out_free_eeprom:
3481 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003482 out_iounmap:
3483 pci_iounmap(pdev, priv->hw_base);
3484 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07003485 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08003486 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003487 out_pci_disable_device:
3488 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003489 out_ieee80211_free_hw:
3490 ieee80211_free_hw(priv->hw);
3491 out:
3492 return err;
3493}
3494
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003495static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003496{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003497 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003498 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003499
3500 if (!priv)
3501 return;
3502
Tomas Winklere1623442009-01-27 14:27:56 -08003503 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003504
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003505 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003506 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003507
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003508 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3509 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003510 * we need to set STATUS_EXIT_PENDING bit.
3511 */
3512 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003513 if (priv->mac80211_registered) {
3514 ieee80211_unregister_hw(priv->hw);
3515 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003516 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003517 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003518 }
3519
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003520 /* make sure we flush any pending irq or
3521 * tasklet for the driver
3522 */
3523 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003524 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003525 spin_unlock_irqrestore(&priv->lock, flags);
3526
3527 iwl_synchronize_irq(priv);
3528
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003529 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003530 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003531
3532 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003533 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003534 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003535
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08003536 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003537 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003538
Zhu Yib481de92007-09-25 17:54:57 -07003539
Mohamed Abbas948c1712007-10-25 17:15:45 +08003540 /*netif_stop_queue(dev); */
3541 flush_workqueue(priv->workqueue);
3542
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003543 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003544 * priv->workqueue... so we can't take down the workqueue
3545 * until now... */
3546 destroy_workqueue(priv->workqueue);
3547 priv->workqueue = NULL;
3548
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003549 free_irq(priv->pci_dev->irq, priv);
3550 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003551 pci_iounmap(pdev, priv->hw_base);
3552 pci_release_regions(pdev);
3553 pci_disable_device(pdev);
3554 pci_set_drvdata(pdev, NULL);
3555
Tomas Winkler6ba87952008-05-15 13:54:17 +08003556 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003557
3558 if (priv->ibss_beacon)
3559 dev_kfree_skb(priv->ibss_beacon);
3560
3561 ieee80211_free_hw(priv->hw);
3562}
3563
3564#ifdef CONFIG_PM
3565
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003566static int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07003567{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003568 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003569
Zhu Yie655b9f2008-01-24 02:19:38 -08003570 if (priv->is_open) {
3571 set_bit(STATUS_IN_SUSPEND, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003572 iwl_mac_stop(priv->hw);
Zhu Yie655b9f2008-01-24 02:19:38 -08003573 priv->is_open = 1;
3574 }
Zhu Yib481de92007-09-25 17:54:57 -07003575
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003576 pci_save_state(pdev);
3577 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003578 pci_set_power_state(pdev, PCI_D3hot);
3579
Zhu Yib481de92007-09-25 17:54:57 -07003580 return 0;
3581}
3582
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003583static int iwl_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003584{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003585 struct iwl_priv *priv = pci_get_drvdata(pdev);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003586 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003587
Zhu Yib481de92007-09-25 17:54:57 -07003588 pci_set_power_state(pdev, PCI_D0);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003589 ret = pci_enable_device(pdev);
3590 if (ret)
3591 return ret;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003592 pci_restore_state(pdev);
3593 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003594
Zhu Yie655b9f2008-01-24 02:19:38 -08003595 if (priv->is_open)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003596 iwl_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003597
Zhu Yie655b9f2008-01-24 02:19:38 -08003598 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003599 return 0;
3600}
3601
3602#endif /* CONFIG_PM */
3603
3604/*****************************************************************************
3605 *
3606 * driver and module entry point
3607 *
3608 *****************************************************************************/
3609
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003610/* Hardware specific file defines the PCI IDs table for that hardware module */
3611static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003612#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003613 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3614 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003615#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003616#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08003617 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3618 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3619 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3620 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3621 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3622 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003623 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08003624 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3625 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3626 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08003627/* 5350 WiFi/WiMax */
3628 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3629 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3630 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08003631/* 5150 Wifi/WiMax */
3632 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3633 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003634/* 6000/6050 Series */
3635 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3636 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3637 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3638 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
3639 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
3640 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3641 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3642 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3643 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3644 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3645 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08003646/* 1000 Series WiFi */
3647 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl1000_bgn_cfg)},
3648 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl1000_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003649#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003650
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003651 {0}
3652};
3653MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3654
3655static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003656 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003657 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003658 .probe = iwl_pci_probe,
3659 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003660#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003661 .suspend = iwl_pci_suspend,
3662 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003663#endif
3664};
3665
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003666static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003667{
3668
3669 int ret;
3670 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3671 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003672
Tomas Winklere227cea2008-07-18 13:53:05 +08003673 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003674 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003675 printk(KERN_ERR DRV_NAME
3676 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003677 return ret;
3678 }
3679
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003680 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003681 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003682 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003683 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003684 }
Zhu Yib481de92007-09-25 17:54:57 -07003685
3686 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003687
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003688error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003689 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003690 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003691}
3692
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003693static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003694{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003695 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003696 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003697}
3698
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003699module_exit(iwl_exit);
3700module_init(iwl_init);