blob: 5ded8983b9154f339cabfb37f6158fe2746c2dfd [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
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080054#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-3945.h"
56#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080058#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070059
Zhu Yib481de92007-09-25 17:54:57 -070060/*
61 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070062 */
63
64#define DRV_DESCRIPTION \
65"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
66
Samuel Ortizd08853a2009-01-23 13:45:17 -080067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070068#define VD "d"
69#else
70#define VD
71#endif
72
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080073#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070074#define VS "s"
75#else
76#define VS
77#endif
78
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080079#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatre01f81622009-01-08 10:20:02 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080082#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
89
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080090 /* module parameters */
91struct iwl_mod_params iwl3945_mod_params = {
Reinette Chatre5905a1a2009-07-09 10:33:40 -070092 .num_of_queues = IWL39_NUM_QUEUES, /* Not used */
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080093 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080094 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080095 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -080099 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
100 * @priv: eeprom and antenna fields are used to determine antenna flags
101 *
102 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
103 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
104 *
105 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
106 * IWL_ANTENNA_MAIN - Force MAIN antenna
107 * IWL_ANTENNA_AUX - Force AUX antenna
108 */
109__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
110{
111 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
112
113 switch (iwl3945_mod_params.antenna) {
114 case IWL_ANTENNA_DIVERSITY:
115 return 0;
116
117 case IWL_ANTENNA_MAIN:
118 if (eeprom->antenna_switch_type)
119 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
120 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
121
122 case IWL_ANTENNA_AUX:
123 if (eeprom->antenna_switch_type)
124 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
125 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
126 }
127
128 /* bad antenna selector value */
129 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
130 iwl3945_mod_params.antenna);
131
132 return 0; /* "diversity" is default if error */
133}
134
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800135static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700136 struct ieee80211_key_conf *keyconf,
137 u8 sta_id)
138{
139 unsigned long flags;
140 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800141 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700142
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800143 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
144 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
145
146 if (sta_id == priv->hw_params.bcast_sta_id)
147 key_flags |= STA_KEY_MULTICAST_MSK;
148
149 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
150 keyconf->hw_key_idx = keyconf->keyidx;
151 key_flags &= ~STA_KEY_FLG_INVALID;
152
Zhu Yib481de92007-09-25 17:54:57 -0700153 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700154 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
155 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
156 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700157 keyconf->keylen);
158
Tomas Winklerc587de02009-06-03 11:44:07 -0700159 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700160 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800161
Tomas Winklerc587de02009-06-03 11:44:07 -0700162 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800163 == STA_KEY_FLG_NO_ENC)
Tomas Winklerc587de02009-06-03 11:44:07 -0700164 priv->stations[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800165 iwl_get_free_ucode_key_index(priv);
166 /* else, we are overriding an existing key => no need to allocated room
167 * in uCode. */
168
Tomas Winklerc587de02009-06-03 11:44:07 -0700169 WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800170 "no space for a new key");
171
Tomas Winklerc587de02009-06-03 11:44:07 -0700172 priv->stations[sta_id].sta.key.key_flags = key_flags;
173 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
174 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700175
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800176 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
177
Tomas Winklerc587de02009-06-03 11:44:07 -0700178 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800179
Zhu Yib481de92007-09-25 17:54:57 -0700180 spin_unlock_irqrestore(&priv->sta_lock, flags);
181
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800182 return ret;
183}
184
185static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
186 struct ieee80211_key_conf *keyconf,
187 u8 sta_id)
188{
189 return -EOPNOTSUPP;
190}
191
192static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
193 struct ieee80211_key_conf *keyconf,
194 u8 sta_id)
195{
196 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700197}
198
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800199static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700200{
201 unsigned long flags;
202
203 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700204 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
205 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800206 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700207 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
208 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
209 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700210 spin_unlock_irqrestore(&priv->sta_lock, flags);
211
Tomas Winklere1623442009-01-27 14:27:56 -0800212 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Tomas Winklerc587de02009-06-03 11:44:07 -0700213 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700214 return 0;
215}
216
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700217static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800218 struct ieee80211_key_conf *keyconf, u8 sta_id)
219{
220 int ret = 0;
221
222 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
223
224 switch (keyconf->alg) {
225 case ALG_CCMP:
226 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
227 break;
228 case ALG_TKIP:
229 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
230 break;
231 case ALG_WEP:
232 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
233 break;
234 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700235 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800236 ret = -EINVAL;
237 }
238
239 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
240 keyconf->alg, keyconf->keylen, keyconf->keyidx,
241 sta_id, ret);
242
243 return ret;
244}
245
246static int iwl3945_remove_static_key(struct iwl_priv *priv)
247{
248 int ret = -EOPNOTSUPP;
249
250 return ret;
251}
252
253static int iwl3945_set_static_key(struct iwl_priv *priv,
254 struct ieee80211_key_conf *key)
255{
256 if (key->alg == ALG_WEP)
257 return -EOPNOTSUPP;
258
259 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
260 return -EINVAL;
261}
262
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800263static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700264{
265 struct list_head *element;
266
Tomas Winklere1623442009-01-27 14:27:56 -0800267 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700268 priv->frames_count);
269
270 while (!list_empty(&priv->free_frames)) {
271 element = priv->free_frames.next;
272 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800273 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700274 priv->frames_count--;
275 }
276
277 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800278 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700279 priv->frames_count);
280 priv->frames_count = 0;
281 }
282}
283
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800284static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700285{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700287 struct list_head *element;
288 if (list_empty(&priv->free_frames)) {
289 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
290 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800291 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700292 return NULL;
293 }
294
295 priv->frames_count++;
296 return frame;
297 }
298
299 element = priv->free_frames.next;
300 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800301 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700302}
303
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800304static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700305{
306 memset(frame, 0, sizeof(*frame));
307 list_add(&frame->list, &priv->free_frames);
308}
309
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800310unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700311 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200312 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700313{
314
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800315 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200316 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
317 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700318 return 0;
319
320 if (priv->ibss_beacon->len > left)
321 return 0;
322
323 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
324
325 return priv->ibss_beacon->len;
326}
327
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800328static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700329{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800330 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700331 unsigned int frame_size;
332 int rc;
333 u8 rate;
334
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800335 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700336
337 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800338 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700339 "command.\n");
340 return -ENOMEM;
341 }
342
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800343 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700344
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800345 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700346
Samuel Ortiz518099a2009-01-19 15:30:27 -0800347 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700348 &frame->u.cmd[0]);
349
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800350 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700351
352 return rc;
353}
354
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800355static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700356{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800357 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700358 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800359 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800360 priv->shared_virt,
361 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700362}
363
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800364static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200365 struct ieee80211_tx_info *info,
Johannes Bergc2acea82009-07-24 11:13:05 -0700366 struct iwl_device_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700367 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800368 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700369{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800370 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerc587de02009-06-03 11:44:07 -0700371 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700372
373 switch (keyinfo->alg) {
374 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800375 tx->sec_ctl = TX_CMD_SEC_CCM;
376 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800377 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700378 break;
379
380 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700381 break;
382
383 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800384 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200385 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700386
387 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800388 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700389
Winkler, Tomase52119c2008-12-22 11:31:19 +0800390 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700391
Tomas Winklere1623442009-01-27 14:27:56 -0800392 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200393 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700394 break;
395
Zhu Yib481de92007-09-25 17:54:57 -0700396 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800397 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700398 break;
399 }
400}
401
402/*
403 * handle build REPLY_TX command notification.
404 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800405static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Johannes Bergc2acea82009-07-24 11:13:05 -0700406 struct iwl_device_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200407 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800408 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700409{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800410 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
411 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700412 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200413 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -0700414
Winkler, Tomase52119c2008-12-22 11:31:19 +0800415 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200416 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700417 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700418 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700419 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700420 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700421 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
422 tx_flags |= TX_CMD_FLG_TSF_MSK;
423 } else {
424 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
425 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
426 }
427
Winkler, Tomase52119c2008-12-22 11:31:19 +0800428 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700429 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700430 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
431
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700432 if (ieee80211_is_data_qos(fc)) {
433 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800434 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700435 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800436 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700437 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800438 }
Zhu Yib481de92007-09-25 17:54:57 -0700439
Johannes Berge6a98542008-10-21 12:40:02 +0200440 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -0700441 tx_flags |= TX_CMD_FLG_RTS_MSK;
442 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +0200443 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -0700444 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
445 tx_flags |= TX_CMD_FLG_CTS_MSK;
446 }
447
448 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
449 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
450
451 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700452 if (ieee80211_is_mgmt(fc)) {
453 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +0800454 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700455 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800456 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700457 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +0800458 tx->timeout.pm_frame_timeout = 0;
Abhijeet Kolekar5c8df2d2009-03-11 11:17:55 -0700459#ifdef CONFIG_IWLWIFI_LEDS
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700460 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
461#endif
462 }
Zhu Yib481de92007-09-25 17:54:57 -0700463
Winkler, Tomase52119c2008-12-22 11:31:19 +0800464 tx->driver_txop = 0;
465 tx->tx_flags = tx_flags;
466 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700467}
468
Zhu Yib481de92007-09-25 17:54:57 -0700469/*
470 * start REPLY_TX command process
471 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800472static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700473{
474 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200475 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800476 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800477 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800478 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700479 struct iwl_device_cmd *out_cmd;
480 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700481 dma_addr_t phys_addr;
482 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800483 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700484 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800485 u8 id;
486 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700487 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800488 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700489 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700490 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700491 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800492 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700493 unsigned long flags;
494 int rc;
495
496 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800497 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800498 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700499 goto drop_unlock;
500 }
501
Johannes Berge039fa42008-05-15 12:55:29 +0200502 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800503 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700504 goto drop_unlock;
505 }
506
507 unicast = !is_multicast_ether_addr(hdr->addr1);
508 id = 0;
509
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700510 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700511
Samuel Ortizd08853a2009-01-23 13:45:17 -0800512#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700513 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800514 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700515 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800516 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700517 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800518 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700519#endif
520
Mohamed Abbas7878a5a2007-11-29 11:10:13 +0800521 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800522 if (ieee80211_is_data(fc) &&
Wey-Yi Guy279b05d2009-04-20 14:37:00 -0700523 (!iwl_is_monitor_mode(priv)) && /* packet injection */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800524 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200525 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800526 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700527 goto drop_unlock;
528 }
529
530 spin_unlock_irqrestore(&priv->lock, flags);
531
Harvey Harrison7294ec92008-07-15 18:43:59 -0700532 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800533
534 /* Find (or create) index into station table for destination station */
Abhijeet Kolekarf5d30262009-04-08 11:26:43 -0700535 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700536 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800537 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700538 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700539 goto drop;
540 }
541
Tomas Winklere1623442009-01-27 14:27:56 -0800542 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700543
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700544 if (ieee80211_is_data_qos(fc)) {
545 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700546 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Tomas Winklerc587de02009-06-03 11:44:07 -0700547 seq_number = priv->stations[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700548 IEEE80211_SCTL_SEQ;
549 hdr->seq_ctrl = cpu_to_le16(seq_number) |
550 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800551 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700552 seq_number += 0x10;
553 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800554
555 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800556 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700557 q = &txq->q;
558
559 spin_lock_irqsave(&priv->lock, flags);
560
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800561 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700562
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800563 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800564 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800565 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800566
567 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800568 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700569 out_meta = &txq->meta[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +0800570 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700571 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +0800572 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800573
574 /*
575 * Set up the Tx-command (not MAC!) header.
576 * Store the chosen Tx queue and TFD index within the sequence field;
577 * after Tx, uCode's Tx response will return this value so driver can
578 * locate the frame within the tx queue and do post-tx processing.
579 */
Zhu Yib481de92007-09-25 17:54:57 -0700580 out_cmd->hdr.cmd = REPLY_TX;
581 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800582 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800583
584 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800585 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700586
Reinette Chatredf833b12009-04-21 10:55:48 -0700587
588 if (info->control.hw_key)
589 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
590
591 /* TODO need this for burst mode later on */
592 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
593
594 /* set is_hcca to 0; it probably will never be implemented */
595 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
596
597 /* Total # bytes to be transmitted */
598 len = (u16)skb->len;
599 tx->len = cpu_to_le16(len);
600
601
602 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
603 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
604
605 if (!ieee80211_has_morefrags(hdr->frame_control)) {
606 txq->need_update = 1;
607 if (qc)
Tomas Winklerc587de02009-06-03 11:44:07 -0700608 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Reinette Chatredf833b12009-04-21 10:55:48 -0700609 } else {
610 wait_write_ptr = 1;
611 txq->need_update = 0;
612 }
613
614 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
615 le16_to_cpu(out_cmd->hdr.sequence));
616 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags));
Reinette Chatrea562a9d2009-07-17 09:30:24 -0700617 iwl_print_hex_dump(IWL_DL_TX, tx, sizeof(*tx));
618 iwl_print_hex_dump(IWL_DL_TX, (u8 *)tx->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700619 ieee80211_hdrlen(fc));
620
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800621 /*
622 * Use the first empty entry in this queue's command buffer array
623 * to contain the Tx command and MAC header concatenated together
624 * (payload data will be in another buffer).
625 * Size of this varies, due to varying MAC header length.
626 * If end is not dword aligned, we'll have 2 extra bytes at the end
627 * of the MAC header (device reads on dword boundaries).
628 * We'll tell device about this padding later.
629 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800630 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800631 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700632
633 len_org = len;
634 len = (len + 3) & ~3;
635
636 if (len_org != len)
637 len_org = 1;
638 else
639 len_org = 0;
640
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800641 /* Physical address of this Tx command's header (not MAC header!),
642 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700643 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
644 len, PCI_DMA_TODEVICE);
645 /* we do not map meta data ... so we can safely access address to
646 * provide to unmap command*/
Johannes Bergc2acea82009-07-24 11:13:05 -0700647 pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
648 pci_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700649
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800650 /* Add buffer containing Tx command and MAC(!) header to TFD's
651 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800652 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
653 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700654
Zhu Yib481de92007-09-25 17:54:57 -0700655
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800656 /* Set up TFD's 2nd entry to point directly to remainder of skb,
657 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700658 len = skb->len - hdr_len;
659 if (len) {
660 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
661 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800662 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
663 phys_addr, len,
664 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700665 }
666
Zhu Yib481de92007-09-25 17:54:57 -0700667
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800668 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800669 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800670 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700671 spin_unlock_irqrestore(&priv->lock, flags);
672
673 if (rc)
674 return rc;
675
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800676 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700677 && priv->mac80211_registered) {
678 if (wait_write_ptr) {
679 spin_lock_irqsave(&priv->lock, flags);
680 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800681 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700682 spin_unlock_irqrestore(&priv->lock, flags);
683 }
684
Johannes Berge4e72fb2009-03-23 17:28:42 +0100685 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700686 }
687
688 return 0;
689
690drop_unlock:
691 spin_unlock_irqrestore(&priv->lock, flags);
692drop:
693 return -1;
694}
695
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800696#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700697
698#include "iwl-spectrum.h"
699
700#define BEACON_TIME_MASK_LOW 0x00FFFFFF
701#define BEACON_TIME_MASK_HIGH 0xFF000000
702#define TIME_UNIT 1024
703
704/*
705 * extended beacon time format
706 * time in usec will be changed into a 32-bit value in 8:24 format
707 * the high 1 byte is the beacon counts
708 * the lower 3 bytes is the time in usec within one beacon interval
709 */
710
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800711static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700712{
713 u32 quot;
714 u32 rem;
715 u32 interval = beacon_interval * 1024;
716
717 if (!interval || !usec)
718 return 0;
719
720 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
721 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
722
723 return (quot << 24) + rem;
724}
725
726/* base is usually what we get from ucode with each received frame,
727 * the same as HW timer counter counting down
728 */
729
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800730static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700731{
732 u32 base_low = base & BEACON_TIME_MASK_LOW;
733 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
734 u32 interval = beacon_interval * TIME_UNIT;
735 u32 res = (base & BEACON_TIME_MASK_HIGH) +
736 (addon & BEACON_TIME_MASK_HIGH);
737
738 if (base_low > addon_low)
739 res += base_low - addon_low;
740 else if (base_low < addon_low) {
741 res += interval + base_low - addon_low;
742 res += (1 << 24);
743 } else
744 res += (1 << 24);
745
746 return cpu_to_le32(res);
747}
748
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800749static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700750 struct ieee80211_measurement_params *params,
751 u8 type)
752{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800753 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800754 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800755 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700756 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
757 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700758 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700759 };
760 u32 add_time = le64_to_cpu(params->start_time);
761 int rc;
762 int spectrum_resp_status;
763 int duration = le16_to_cpu(params->duration);
764
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800765 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700766 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800767 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700768 le64_to_cpu(params->start_time) - priv->last_tsf,
769 le16_to_cpu(priv->rxon_timing.beacon_interval));
770
771 memset(&spectrum, 0, sizeof(spectrum));
772
773 spectrum.channel_count = cpu_to_le16(1);
774 spectrum.flags =
775 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
776 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
777 cmd.len = sizeof(spectrum);
778 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
779
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800780 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700781 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800782 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700783 add_time,
784 le16_to_cpu(priv->rxon_timing.beacon_interval));
785 else
786 spectrum.start_time = 0;
787
788 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
789 spectrum.channels[0].channel = params->channel;
790 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800791 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700792 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
793 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
794
Samuel Ortiz518099a2009-01-19 15:30:27 -0800795 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700796 if (rc)
797 return rc;
798
Johannes Bergc2acea82009-07-24 11:13:05 -0700799 res = (struct iwl_rx_packet *)cmd.reply_skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700800 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800801 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700802 rc = -EIO;
803 }
804
805 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
806 switch (spectrum_resp_status) {
807 case 0: /* Command will be handled */
808 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800809 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +0800810 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700811 priv->measurement_status &= ~MEASUREMENT_READY;
812 }
813 priv->measurement_status |= MEASUREMENT_ACTIVE;
814 rc = 0;
815 break;
816
817 case 1: /* Command will not be handled */
818 rc = -EAGAIN;
819 break;
820 }
821
Johannes Bergc2acea82009-07-24 11:13:05 -0700822 dev_kfree_skb_any(cmd.reply_skb);
Zhu Yib481de92007-09-25 17:54:57 -0700823
824 return rc;
825}
826#endif
827
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800828static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800829 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700830{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800831 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
832 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700833 struct delayed_work *pwork;
834
835 palive = &pkt->u.alive_frame;
836
Tomas Winklere1623442009-01-27 14:27:56 -0800837 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700838 "0x%01X 0x%01X\n",
839 palive->is_valid, palive->ver_type,
840 palive->ver_subtype);
841
842 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800843 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800844 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
845 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700846 pwork = &priv->init_alive_start;
847 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800848 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700849 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800850 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700851 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800852 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700853 }
854
855 /* We delay the ALIVE response by 5ms to
856 * give the HW RF Kill time to activate... */
857 if (palive->is_valid == UCODE_VALID_OK)
858 queue_delayed_work(priv->workqueue, pwork,
859 msecs_to_jiffies(5));
860 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800861 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700862}
863
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800864static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800865 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700866{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100867#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800868 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +0100869#endif
Zhu Yib481de92007-09-25 17:54:57 -0700870
Tomas Winklere1623442009-01-27 14:27:56 -0800871 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700872 return;
873}
874
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800875static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700876{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800877 struct iwl_priv *priv =
878 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700879 struct sk_buff *beacon;
880
881 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200882 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700883
884 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800885 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700886 return;
887 }
888
889 mutex_lock(&priv->mutex);
890 /* new beacon skb is allocated every time; dispose previous.*/
891 if (priv->ibss_beacon)
892 dev_kfree_skb(priv->ibss_beacon);
893
894 priv->ibss_beacon = beacon;
895 mutex_unlock(&priv->mutex);
896
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800897 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700898}
899
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800900static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800901 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700902{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800903#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800904 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800905 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700906 u8 rate = beacon->beacon_notify_hdr.rate;
907
Tomas Winklere1623442009-01-27 14:27:56 -0800908 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700909 "tsf %d %d rate %d\n",
910 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
911 beacon->beacon_notify_hdr.failure_frame,
912 le32_to_cpu(beacon->ibss_mgr_status),
913 le32_to_cpu(beacon->high_tsf),
914 le32_to_cpu(beacon->low_tsf), rate);
915#endif
916
Johannes Berg05c914f2008-09-11 00:01:58 +0200917 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700918 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
919 queue_work(priv->workqueue, &priv->beacon_update);
920}
921
Zhu Yib481de92007-09-25 17:54:57 -0700922/* Handle notification from uCode that card's power state is changing
923 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800924static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800925 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700926{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800927 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700928 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
929 unsigned long status = priv->status;
930
Reinette Chatre4c423a22009-07-17 09:30:26 -0700931 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700932 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
933 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
934
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800935 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700936 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
937
938 if (flags & HW_CARD_DISABLED)
939 set_bit(STATUS_RF_KILL_HW, &priv->status);
940 else
941 clear_bit(STATUS_RF_KILL_HW, &priv->status);
942
943
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800944 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700945
946 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200947 test_bit(STATUS_RF_KILL_HW, &priv->status)))
948 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
949 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700950 else
951 wake_up_interruptible(&priv->wait_command_queue);
952}
953
954/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800955 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700956 *
957 * Setup the RX handlers for each of the reply types sent from the uCode
958 * to the host.
959 *
960 * This function chains into the hardware specific files for them to setup
961 * any hardware specific handlers as well.
962 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800963static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700964{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800965 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
966 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800967 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800968 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800969 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700970 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800971 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800972 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700973
Ben Cahill9fbab512007-11-29 11:09:47 +0800974 /*
975 * The same handler is used for both the REPLY to a discrete
976 * statistics request from the host as well as for the periodic
977 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700978 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800979 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
980 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700981
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800982 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800983 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800984 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700985
Ben Cahill9fbab512007-11-29 11:09:47 +0800986 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800987 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700988}
989
Zhu Yib481de92007-09-25 17:54:57 -0700990/************************** RX-FUNCTIONS ****************************/
991/*
992 * Rx theory of operation
993 *
994 * The host allocates 32 DMA target addresses and passes the host address
995 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
996 * 0 to 31
997 *
998 * Rx Queue Indexes
999 * The host/firmware share two index registers for managing the Rx buffers.
1000 *
1001 * The READ index maps to the first position that the firmware may be writing
1002 * to -- the driver can read up to (but not including) this position and get
1003 * good data.
1004 * The READ index is managed by the firmware once the card is enabled.
1005 *
1006 * The WRITE index maps to the last position the driver has read from -- the
1007 * position preceding WRITE is the last slot the firmware can place a packet.
1008 *
1009 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1010 * WRITE = READ.
1011 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001012 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001013 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1014 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001015 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001016 * and fire the RX interrupt. The driver can then query the READ index and
1017 * process as many packets as possible, moving the WRITE index forward as it
1018 * resets the Rx queue buffers with new memory.
1019 *
1020 * The management in the driver is as follows:
1021 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1022 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001023 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001024 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001025 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1026 * 'processed' and 'read' driver indexes as well)
1027 * + A received packet is processed and handed to the kernel network stack,
1028 * detached from the iwl->rxq. The driver 'processed' index is updated.
1029 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1030 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1031 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1032 * were enough free buffers and RX_STALLED is set it is cleared.
1033 *
1034 *
1035 * Driver sequence:
1036 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001037 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001038 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001039 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001040 * queue, updates firmware pointers, and updates
1041 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001042 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001043 *
1044 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001045 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001046 * READ INDEX, detaching the SKB from the pool.
1047 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001048 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001049 * slots.
1050 * ...
1051 *
1052 */
1053
1054/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001055 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001056 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001057static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001058 dma_addr_t dma_addr)
1059{
1060 return cpu_to_le32((u32)dma_addr);
1061}
1062
1063/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001064 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001065 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001066 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001067 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001068 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001069 *
1070 * This moves the 'write' index forward to catch up with 'processed', and
1071 * also updates the memory address in the firmware to reference the new
1072 * target buffer.
1073 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001074static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001075{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001076 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001077 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001078 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001079 unsigned long flags;
1080 int write, rc;
1081
1082 spin_lock_irqsave(&rxq->lock, flags);
1083 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001084 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001085 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001086 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001087 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001088 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001089
1090 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001091 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001092 rxq->queue[rxq->write] = rxb;
1093 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1094 rxq->free_count--;
1095 }
1096 spin_unlock_irqrestore(&rxq->lock, flags);
1097 /* If the pre-allocated buffer pool is dropping low, schedule to
1098 * refill it */
1099 if (rxq->free_count <= RX_LOW_WATERMARK)
1100 queue_work(priv->workqueue, &priv->rx_replenish);
1101
1102
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001103 /* If we've added more space for the firmware to place data, tell it.
1104 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001105 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001106 || (abs(rxq->write - rxq->read) > 7)) {
1107 spin_lock_irqsave(&rxq->lock, flags);
1108 rxq->need_update = 1;
1109 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001110 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001111 if (rc)
1112 return rc;
1113 }
1114
1115 return 0;
1116}
1117
1118/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001119 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001120 *
1121 * When moving to rx_free an SKB is allocated for the slot.
1122 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001123 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001124 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001125 */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001126static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001127{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001128 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001129 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001130 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001131 unsigned long flags;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001132
1133 while (1) {
1134 spin_lock_irqsave(&rxq->lock, flags);
1135
1136 if (list_empty(&rxq->rx_used)) {
1137 spin_unlock_irqrestore(&rxq->lock, flags);
1138 return;
1139 }
1140
Zhu Yib481de92007-09-25 17:54:57 -07001141 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001142 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001143 list_del(element);
1144 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001145
1146 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001147 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001148 alloc_skb(priv->hw_params.rx_buf_size,
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001149 priority);
Zhu Yib481de92007-09-25 17:54:57 -07001150 if (!rxb->skb) {
1151 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001152 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001153 /* We don't reschedule replenish work here -- we will
1154 * call the restock method and if it still needs
1155 * more buffers it will schedule replenish */
1156 break;
1157 }
Zhu Yi12342c42007-12-20 11:27:32 +08001158
1159 /* If radiotap head is required, reserve some headroom here.
1160 * The physical head count is a variable rx_stats->phy_count.
1161 * We reserve 4 bytes here. Plus these extra bytes, the
1162 * headroom of the physical head should be enough for the
1163 * radiotap head that iwl3945 supported. See iwl3945_rt.
1164 */
1165 skb_reserve(rxb->skb, 4);
1166
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001167 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001168 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1169 rxb->skb->data,
1170 priv->hw_params.rx_buf_size,
1171 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001172
1173 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001174 list_add_tail(&rxb->list, &rxq->rx_free);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001175 priv->alloc_rxb_skb++;
Zhu Yib481de92007-09-25 17:54:57 -07001176 rxq->free_count++;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001177 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001178 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001179}
1180
Reinette Chatredf833b12009-04-21 10:55:48 -07001181void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1182{
1183 unsigned long flags;
1184 int i;
1185 spin_lock_irqsave(&rxq->lock, flags);
1186 INIT_LIST_HEAD(&rxq->rx_free);
1187 INIT_LIST_HEAD(&rxq->rx_used);
1188 /* Fill the rx_used queue with _all_ of the Rx buffers */
1189 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1190 /* In the reset function, these buffers may have been allocated
1191 * to an SKB, so we need to unmap and free potential storage */
1192 if (rxq->pool[i].skb != NULL) {
1193 pci_unmap_single(priv->pci_dev,
1194 rxq->pool[i].real_dma_addr,
1195 priv->hw_params.rx_buf_size,
1196 PCI_DMA_FROMDEVICE);
1197 priv->alloc_rxb_skb--;
1198 dev_kfree_skb(rxq->pool[i].skb);
1199 rxq->pool[i].skb = NULL;
1200 }
1201 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1202 }
1203
1204 /* Set us so that we have processed and used all buffers, but have
1205 * not restocked the Rx queue with fresh buffers */
1206 rxq->read = rxq->write = 0;
1207 rxq->free_count = 0;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001208 rxq->write_actual = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001209 spin_unlock_irqrestore(&rxq->lock, flags);
1210}
Reinette Chatredf833b12009-04-21 10:55:48 -07001211
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001212void iwl3945_rx_replenish(void *data)
1213{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001214 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001215 unsigned long flags;
1216
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001217 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001218
1219 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001220 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001221 spin_unlock_irqrestore(&priv->lock, flags);
1222}
1223
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001224static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1225{
1226 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1227
1228 iwl3945_rx_queue_restock(priv);
1229}
1230
1231
Reinette Chatredf833b12009-04-21 10:55:48 -07001232/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1233 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1234 * This free routine walks the list of POOL entries and if SKB is set to
1235 * non NULL it is unmapped and freed
1236 */
1237static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1238{
1239 int i;
1240 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1241 if (rxq->pool[i].skb != NULL) {
1242 pci_unmap_single(priv->pci_dev,
1243 rxq->pool[i].real_dma_addr,
1244 priv->hw_params.rx_buf_size,
1245 PCI_DMA_FROMDEVICE);
1246 dev_kfree_skb(rxq->pool[i].skb);
1247 }
1248 }
1249
1250 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1251 rxq->dma_addr);
1252 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1253 rxq->rb_stts, rxq->rb_stts_dma);
1254 rxq->bd = NULL;
1255 rxq->rb_stts = NULL;
1256}
Reinette Chatredf833b12009-04-21 10:55:48 -07001257
1258
Zhu Yib481de92007-09-25 17:54:57 -07001259/* Convert linear signal-to-noise ratio into dB */
1260static u8 ratio2dB[100] = {
1261/* 0 1 2 3 4 5 6 7 8 9 */
1262 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1263 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1264 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1265 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1266 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1267 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1268 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1269 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1270 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1271 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1272};
1273
1274/* Calculates a relative dB value from a ratio of linear
1275 * (i.e. not dB) signal levels.
1276 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001277int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001278{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001279 /* 1000:1 or higher just report as 60 dB */
1280 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001281 return 60;
1282
Adrian Bunk221c80c2008-02-02 23:19:01 +02001283 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001284 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001285 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001286 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001287
1288 /* We shouldn't see this */
1289 if (sig_ratio < 1)
1290 return 0;
1291
1292 /* Use table for ratios 1:1 - 99:1 */
1293 return (int)ratio2dB[sig_ratio];
1294}
1295
1296#define PERFECT_RSSI (-20) /* dBm */
1297#define WORST_RSSI (-95) /* dBm */
1298#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1299
1300/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1301 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1302 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001303int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001304{
1305 int sig_qual;
1306 int degradation = PERFECT_RSSI - rssi_dbm;
1307
1308 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1309 * as indicator; formula is (signal dbm - noise dbm).
1310 * SNR at or above 40 is a great signal (100%).
1311 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1312 * Weakest usable signal is usually 10 - 15 dB SNR. */
1313 if (noise_dbm) {
1314 if (rssi_dbm - noise_dbm >= 40)
1315 return 100;
1316 else if (rssi_dbm < noise_dbm)
1317 return 0;
1318 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1319
1320 /* Else use just the signal level.
1321 * This formula is a least squares fit of data points collected and
1322 * compared with a reference system that had a percentage (%) display
1323 * for signal quality. */
1324 } else
1325 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1326 (15 * RSSI_RANGE + 62 * degradation)) /
1327 (RSSI_RANGE * RSSI_RANGE);
1328
1329 if (sig_qual > 100)
1330 sig_qual = 100;
1331 else if (sig_qual < 1)
1332 sig_qual = 0;
1333
1334 return sig_qual;
1335}
1336
1337/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001338 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001339 *
1340 * Uses the priv->rx_handlers callback function array to invoke
1341 * the appropriate handlers, including command responses,
1342 * frame-received notifications, and other notifications.
1343 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001344static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001345{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001346 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001347 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001348 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001349 u32 r, i;
1350 int reclaim;
1351 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001352 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001353 u32 count = 8;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001354 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001355
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001356 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1357 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001358 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001359 i = rxq->read;
1360
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001361 /* calculate total frames need to be restock after handling RX */
1362 total_empty = r - priv->rxq.write_actual;
1363 if (total_empty < 0)
1364 total_empty += RX_QUEUE_SIZE;
1365
1366 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001367 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001368 /* Rx interrupt, but nothing sent from uCode */
1369 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001370 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001371
1372 while (i != r) {
1373 rxb = rxq->queue[i];
1374
Ben Cahill9fbab512007-11-29 11:09:47 +08001375 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001376 * then a bug has been introduced in the queue refilling
1377 * routines -- catch it here */
1378 BUG_ON(rxb == NULL);
1379
1380 rxq->queue[i] = NULL;
1381
Reinette Chatredf833b12009-04-21 10:55:48 -07001382 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1383 priv->hw_params.rx_buf_size,
1384 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001385 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001386
1387 /* Reclaim a command buffer only if this packet is a response
1388 * to a (driver-originated) command.
1389 * If the packet (e.g. Rx frame) originated from uCode,
1390 * there is no command buffer to reclaim.
1391 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1392 * but apparently a few don't get set; catch them here. */
1393 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1394 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1395 (pkt->hdr.cmd != REPLY_TX);
1396
1397 /* Based on type of command response or notification,
1398 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001399 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001400 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001401 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001402 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1403 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1404 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001405 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yib481de92007-09-25 17:54:57 -07001406 } else {
1407 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001408 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001409 "r %d i %d No handler needed for %s, 0x%02x\n",
1410 r, i, get_cmd_string(pkt->hdr.cmd),
1411 pkt->hdr.cmd);
1412 }
1413
1414 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001415 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001416 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001417 * as we reclaim the driver command queue */
1418 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001419 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001420 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001421 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001422 }
1423
1424 /* For now we just don't re-use anything. We can tweak this
1425 * later to try and re-use notification packets and SKBs that
1426 * fail to Rx correctly */
1427 if (rxb->skb != NULL) {
1428 priv->alloc_rxb_skb--;
1429 dev_kfree_skb_any(rxb->skb);
1430 rxb->skb = NULL;
1431 }
1432
Zhu Yib481de92007-09-25 17:54:57 -07001433 spin_lock_irqsave(&rxq->lock, flags);
1434 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1435 spin_unlock_irqrestore(&rxq->lock, flags);
1436 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001437 /* If there are a lot of unused frames,
1438 * restock the Rx queue so ucode won't assert. */
1439 if (fill_rx) {
1440 count++;
1441 if (count >= 8) {
1442 priv->rxq.read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001443 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001444 count = 0;
1445 }
1446 }
Zhu Yib481de92007-09-25 17:54:57 -07001447 }
1448
1449 /* Backtrack one entry */
1450 priv->rxq.read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001451 if (fill_rx)
1452 iwl3945_rx_replenish_now(priv);
1453 else
1454 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001455}
1456
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001457/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001458static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001459{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001460 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001461 synchronize_irq(priv->pci_dev->irq);
1462 tasklet_kill(&priv->irq_tasklet);
1463}
1464
Zhu Yib481de92007-09-25 17:54:57 -07001465static const char *desc_lookup(int i)
1466{
1467 switch (i) {
1468 case 1:
1469 return "FAIL";
1470 case 2:
1471 return "BAD_PARAM";
1472 case 3:
1473 return "BAD_CHECKSUM";
1474 case 4:
1475 return "NMI_INTERRUPT";
1476 case 5:
1477 return "SYSASSERT";
1478 case 6:
1479 return "FATAL_ERROR";
1480 }
1481
1482 return "UNKNOWN";
1483}
1484
1485#define ERROR_START_OFFSET (1 * sizeof(u32))
1486#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1487
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001488static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001489{
1490 u32 i;
1491 u32 desc, time, count, base, data1;
1492 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001493
1494 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1495
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001496 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001497 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001498 return;
1499 }
1500
Zhu Yib481de92007-09-25 17:54:57 -07001501
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001502 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001503
1504 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001505 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1506 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1507 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001508 }
1509
Winkler, Tomas15b16872008-12-19 10:37:33 +08001510 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001511 "ilink1 nmiPC Line\n");
1512 for (i = ERROR_START_OFFSET;
1513 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1514 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001515 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001516 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001517 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001518 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001519 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001520 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001521 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001522 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001523 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001524 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001525 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001526 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001527 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001528
Winkler, Tomas15b16872008-12-19 10:37:33 +08001529 IWL_ERR(priv,
1530 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1531 desc_lookup(desc), desc, time, blink1, blink2,
1532 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001533 }
1534
Zhu Yib481de92007-09-25 17:54:57 -07001535}
1536
Ben Cahillf58177b2007-11-29 11:09:43 +08001537#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001538
1539/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001540 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001541 *
Zhu Yib481de92007-09-25 17:54:57 -07001542 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001543static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001544 u32 num_events, u32 mode)
1545{
1546 u32 i;
1547 u32 base; /* SRAM byte address of event log header */
1548 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1549 u32 ptr; /* SRAM byte address of log data */
1550 u32 ev, time, data; /* event log data */
1551
1552 if (num_events == 0)
1553 return;
1554
1555 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1556
1557 if (mode == 0)
1558 event_size = 2 * sizeof(u32);
1559 else
1560 event_size = 3 * sizeof(u32);
1561
1562 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1563
1564 /* "time" is actually "data" for mode 0 (no timestamp).
1565 * place event id # at far right for easier visual parsing. */
1566 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001567 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001568 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001569 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001570 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001571 if (mode == 0) {
1572 /* data, ev */
1573 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1574 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001575 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001576 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001577 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001578 }
1579 }
1580}
1581
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001582static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001583{
Zhu Yib481de92007-09-25 17:54:57 -07001584 u32 base; /* SRAM byte address of event log header */
1585 u32 capacity; /* event log capacity in # entries */
1586 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1587 u32 num_wraps; /* # times uCode wrapped to top of log */
1588 u32 next_entry; /* index of next entry to be written by uCode */
1589 u32 size; /* # entries that we'll print */
1590
1591 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001592 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001593 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001594 return;
1595 }
1596
Zhu Yib481de92007-09-25 17:54:57 -07001597 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001598 capacity = iwl_read_targ_mem(priv, base);
1599 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1600 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1601 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001602
1603 size = num_wraps ? capacity : next_entry;
1604
1605 /* bail out if nothing in log */
1606 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001607 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Zhu Yib481de92007-09-25 17:54:57 -07001608 return;
1609 }
1610
Winkler, Tomas15b16872008-12-19 10:37:33 +08001611 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001612 size, num_wraps);
1613
1614 /* if uCode has wrapped back to top of log, start at the oldest entry,
1615 * i.e the next one that uCode would fill. */
1616 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001617 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001618 capacity - next_entry, mode);
1619
1620 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001621 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001622
Zhu Yib481de92007-09-25 17:54:57 -07001623}
1624
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001625static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001626{
1627 u32 inta, handled = 0;
1628 u32 inta_fh;
1629 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001630#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001631 u32 inta_mask;
1632#endif
1633
1634 spin_lock_irqsave(&priv->lock, flags);
1635
1636 /* Ack/clear/reset pending uCode interrupts.
1637 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1638 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001639 inta = iwl_read32(priv, CSR_INT);
1640 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001641
1642 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1643 * Any new interrupts that happen after this, either while we're
1644 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001645 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1646 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001647
Samuel Ortizd08853a2009-01-23 13:45:17 -08001648#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatrea562a9d2009-07-17 09:30:24 -07001649 if (iwl_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001650 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001651 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001652 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001653 inta, inta_mask, inta_fh);
1654 }
1655#endif
1656
1657 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1658 * atomic, make sure that inta covers all the interrupts that
1659 * we've discovered, even if FH interrupt came in just after
1660 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001661 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001662 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001663 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001664 inta |= CSR_INT_BIT_FH_TX;
1665
1666 /* Now service all interrupt bits discovered above. */
1667 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001668 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001669
1670 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001671 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001672
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001673 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001674 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001675
1676 handled |= CSR_INT_BIT_HW_ERR;
1677
1678 spin_unlock_irqrestore(&priv->lock, flags);
1679
1680 return;
1681 }
1682
Samuel Ortizd08853a2009-01-23 13:45:17 -08001683#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatrea562a9d2009-07-17 09:30:24 -07001684 if (iwl_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001685 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001686 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001687 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001688 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001689 priv->isr_stats.sch++;
1690 }
Zhu Yib481de92007-09-25 17:54:57 -07001691
1692 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001693 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001694 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001695 priv->isr_stats.alive++;
1696 }
Zhu Yib481de92007-09-25 17:54:57 -07001697 }
1698#endif
1699 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001700 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001701
Zhu Yib481de92007-09-25 17:54:57 -07001702 /* Error detected by uCode */
1703 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001704 IWL_ERR(priv, "Microcode SW error detected. "
1705 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001706 priv->isr_stats.sw++;
1707 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001708 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001709 handled |= CSR_INT_BIT_SW_ERR;
1710 }
1711
1712 /* uCode wakes up after power-down sleep */
1713 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001714 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001715 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001716 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1717 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1718 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1719 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1720 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1721 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001722
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001723 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001724 handled |= CSR_INT_BIT_WAKEUP;
1725 }
1726
1727 /* All uCode command responses, including Tx command responses,
1728 * Rx "responses" (frame-received notification), and other
1729 * notifications from uCode come through here*/
1730 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001731 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001732 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001733 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1734 }
1735
1736 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001737 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001738 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001739
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001740 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001741 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1742 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001743 handled |= CSR_INT_BIT_FH_TX;
1744 }
1745
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001746 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001747 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001748 priv->isr_stats.unhandled++;
1749 }
Zhu Yib481de92007-09-25 17:54:57 -07001750
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001751 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001752 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001753 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001754 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001755 }
1756
1757 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001758 /* only Re-enable if disabled by irq */
1759 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001760 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001761
Samuel Ortizd08853a2009-01-23 13:45:17 -08001762#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatrea562a9d2009-07-17 09:30:24 -07001763 if (iwl_debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001764 inta = iwl_read32(priv, CSR_INT);
1765 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1766 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001767 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001768 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1769 }
1770#endif
1771 spin_unlock_irqrestore(&priv->lock, flags);
1772}
1773
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001774static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001775 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001776 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001777 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001778{
Johannes Berg4e05c232009-06-19 13:52:44 -07001779 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001780 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001781 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001782 u16 passive_dwell = 0;
1783 u16 active_dwell = 0;
1784 int added, i;
1785
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001786 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001787 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001788 return 0;
1789
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001790 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1791 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001792
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001793 if (passive_dwell <= active_dwell)
1794 passive_dwell = active_dwell + 1;
1795
Johannes Berg4e05c232009-06-19 13:52:44 -07001796 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1797 chan = priv->scan_request->channels[i];
1798
1799 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001800 continue;
1801
Johannes Berg4e05c232009-06-19 13:52:44 -07001802 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001803
Samuel Ortize6148912009-01-23 13:45:15 -08001804 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001805 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001806 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001807 scan_ch->channel);
1808 continue;
1809 }
1810
Zhu Yib481de92007-09-25 17:54:57 -07001811 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1812 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001813 /* If passive , set up for auto-switch
1814 * and use long active_dwell time.
1815 */
1816 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001817 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001818 scan_ch->type = 0; /* passive */
1819 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1820 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1821 } else {
1822 scan_ch->type = 1; /* active */
1823 }
1824
1825 /* Set direct probe bits. These may be used both for active
1826 * scan channels (probes gets sent right away),
1827 * or for passive channels (probes get se sent only after
1828 * hearing clear Rx packet).*/
1829 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1830 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001831 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001832 } else {
1833 /* uCode v1 does not allow setting direct probe bits on
1834 * passive channel. */
1835 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001836 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001837 }
Zhu Yib481de92007-09-25 17:54:57 -07001838
Ben Cahill9fbab512007-11-29 11:09:47 +08001839 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001840 scan_ch->tpc.dsp_atten = 110;
1841 /* scan_pwr_info->tpc.dsp_atten; */
1842
1843 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001844 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001845 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1846 else {
1847 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1848 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001849 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001850 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001851 */
1852 }
1853
Tomas Winklere1623442009-01-27 14:27:56 -08001854 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001855 scan_ch->channel,
1856 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1857 (scan_ch->type & 1) ?
1858 active_dwell : passive_dwell);
1859
1860 scan_ch++;
1861 added++;
1862 }
1863
Tomas Winklere1623442009-01-27 14:27:56 -08001864 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001865 return added;
1866}
1867
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001868static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001869 struct ieee80211_rate *rates)
1870{
1871 int i;
1872
1873 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001874 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1875 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1876 rates[i].hw_value_short = i;
1877 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001878 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001879 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001880 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001881 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001882 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001883 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001884 }
Zhu Yib481de92007-09-25 17:54:57 -07001885 }
1886}
1887
Zhu Yib481de92007-09-25 17:54:57 -07001888/******************************************************************************
1889 *
1890 * uCode download functions
1891 *
1892 ******************************************************************************/
1893
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001894static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001895{
Tomas Winkler98c92212008-01-14 17:46:20 -08001896 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1897 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1898 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1899 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1900 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1901 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001902}
1903
1904/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001905 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001906 * looking at all data.
1907 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001908static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001909{
1910 u32 val;
1911 u32 save_len = len;
1912 int rc = 0;
1913 u32 errcnt;
1914
Tomas Winklere1623442009-01-27 14:27:56 -08001915 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001916
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001917 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001918 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07001919
1920 errcnt = 0;
1921 for (; len > 0; len -= sizeof(u32), image++) {
1922 /* read data comes through single port, auto-incr addr */
1923 /* NOTE: Use the debugless read so we don't flood kernel log
1924 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001925 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001926 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001927 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001928 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1929 save_len - len, val, le32_to_cpu(*image));
1930 rc = -EIO;
1931 errcnt++;
1932 if (errcnt >= 20)
1933 break;
1934 }
1935 }
1936
Zhu Yib481de92007-09-25 17:54:57 -07001937
1938 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08001939 IWL_DEBUG_INFO(priv,
1940 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07001941
1942 return rc;
1943}
1944
1945
1946/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001947 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001948 * using sample data 100 bytes apart. If these sample points are good,
1949 * it's a pretty good bet that everything between them is good, too.
1950 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001951static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001952{
1953 u32 val;
1954 int rc = 0;
1955 u32 errcnt = 0;
1956 u32 i;
1957
Tomas Winklere1623442009-01-27 14:27:56 -08001958 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001959
Zhu Yib481de92007-09-25 17:54:57 -07001960 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
1961 /* read data comes through single port, auto-incr addr */
1962 /* NOTE: Use the debugless read so we don't flood kernel log
1963 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001964 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001965 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001966 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001967 if (val != le32_to_cpu(*image)) {
1968#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001969 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001970 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1971 i, val, *image);
1972#endif
1973 rc = -EIO;
1974 errcnt++;
1975 if (errcnt >= 3)
1976 break;
1977 }
1978 }
1979
Zhu Yib481de92007-09-25 17:54:57 -07001980 return rc;
1981}
1982
1983
1984/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001985 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07001986 * and verify its contents
1987 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001988static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001989{
1990 __le32 *image;
1991 u32 len;
1992 int rc = 0;
1993
1994 /* Try bootstrap */
1995 image = (__le32 *)priv->ucode_boot.v_addr;
1996 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001997 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07001998 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08001999 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002000 return 0;
2001 }
2002
2003 /* Try initialize */
2004 image = (__le32 *)priv->ucode_init.v_addr;
2005 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002006 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002007 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002008 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002009 return 0;
2010 }
2011
2012 /* Try runtime/protocol */
2013 image = (__le32 *)priv->ucode_code.v_addr;
2014 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002015 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002016 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002017 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002018 return 0;
2019 }
2020
Winkler, Tomas15b16872008-12-19 10:37:33 +08002021 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002022
Ben Cahill9fbab512007-11-29 11:09:47 +08002023 /* Since nothing seems to match, show first several data entries in
2024 * instruction SRAM, so maybe visual inspection will give a clue.
2025 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002026 image = (__le32 *)priv->ucode_boot.v_addr;
2027 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002028 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002029
2030 return rc;
2031}
2032
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002033static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002034{
2035 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002036 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002037}
2038
2039/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002040 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002041 *
2042 * Copy into buffers for card to fetch via bus-mastering
2043 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002044static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002045{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002046 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002047 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002048 const struct firmware *ucode_raw;
2049 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002050 const char *name_pre = priv->cfg->fw_name_pre;
2051 const unsigned int api_max = priv->cfg->ucode_api_max;
2052 const unsigned int api_min = priv->cfg->ucode_api_min;
2053 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002054 u8 *src;
2055 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002056 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002057
2058 /* Ask kernel firmware_class module to get the boot firmware off disk.
2059 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002060 for (index = api_max; index >= api_min; index--) {
2061 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2062 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2063 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002064 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002065 buf, ret);
2066 if (ret == -ENOENT)
2067 continue;
2068 else
2069 goto error;
2070 } else {
2071 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002072 IWL_ERR(priv, "Loaded firmware %s, "
2073 "which is deprecated. "
2074 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002075 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002076 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2077 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002078 buf, ucode_raw->size);
2079 break;
2080 }
Zhu Yib481de92007-09-25 17:54:57 -07002081 }
2082
Reinette Chatrea0987a82008-12-02 12:14:06 -08002083 if (ret < 0)
2084 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002085
2086 /* Make sure that we got at least our header! */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002087 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002088 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002089 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002090 goto err_release;
2091 }
2092
2093 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002094 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002095
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002096 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002097 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002098 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2099 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2100 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2101 init_data_size =
2102 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2103 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2104 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002105
Reinette Chatrea0987a82008-12-02 12:14:06 -08002106 /* api_ver should match the api version forming part of the
2107 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002108 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002109
2110 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002111 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002112 "Driver supports v%u, firmware is v%u.\n",
2113 api_max, api_ver);
2114 priv->ucode_ver = 0;
2115 ret = -EINVAL;
2116 goto err_release;
2117 }
2118 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002119 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002120 "got %u. New firmware can be obtained "
2121 "from http://www.intellinuxwireless.org.\n",
2122 api_max, api_ver);
2123
Tomas Winkler978785a2008-12-19 10:37:31 +08002124 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2125 IWL_UCODE_MAJOR(priv->ucode_ver),
2126 IWL_UCODE_MINOR(priv->ucode_ver),
2127 IWL_UCODE_API(priv->ucode_ver),
2128 IWL_UCODE_SERIAL(priv->ucode_ver));
2129
Tomas Winklere1623442009-01-27 14:27:56 -08002130 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002131 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002132 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2133 inst_size);
2134 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2135 data_size);
2136 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2137 init_size);
2138 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2139 init_data_size);
2140 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2141 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002142
Reinette Chatrea0987a82008-12-02 12:14:06 -08002143
Zhu Yib481de92007-09-25 17:54:57 -07002144 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002145 if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002146 inst_size + data_size + init_size +
2147 init_data_size + boot_size) {
2148
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002149 IWL_DEBUG_INFO(priv,
2150 "uCode file size %zd does not match expected size\n",
2151 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002152 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002153 goto err_release;
2154 }
2155
2156 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002157 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002158 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002159 inst_size);
2160 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002161 goto err_release;
2162 }
2163
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002164 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002165 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002166 data_size);
2167 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002168 goto err_release;
2169 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002170 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002171 IWL_DEBUG_INFO(priv,
2172 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002173 init_size);
2174 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002175 goto err_release;
2176 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002177 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002178 IWL_DEBUG_INFO(priv,
2179 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002180 init_data_size);
2181 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002182 goto err_release;
2183 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002184 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002185 IWL_DEBUG_INFO(priv,
2186 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002187 boot_size);
2188 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002189 goto err_release;
2190 }
2191
2192 /* Allocate ucode buffers for card's bus-master loading ... */
2193
2194 /* Runtime instructions and 2 copies of data:
2195 * 1) unmodified from disk
2196 * 2) backup cache for save/restore during power-downs */
2197 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002198 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002199
2200 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002201 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002202
2203 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002204 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002205
2206 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002207 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002208 goto err_pci_alloc;
2209
Tomas Winkler90e759d2007-11-29 11:09:41 +08002210 /* Initialization instructions and data */
2211 if (init_size && init_data_size) {
2212 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002213 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002214
2215 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002216 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002217
2218 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2219 goto err_pci_alloc;
2220 }
2221
2222 /* Bootstrap (instructions only, no data) */
2223 if (boot_size) {
2224 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002225 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002226
2227 if (!priv->ucode_boot.v_addr)
2228 goto err_pci_alloc;
2229 }
2230
Zhu Yib481de92007-09-25 17:54:57 -07002231 /* Copy images into buffers for card's bus-master reads ... */
2232
2233 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002234 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002235 IWL_DEBUG_INFO(priv,
2236 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002237 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002238 src += len;
2239
Tomas Winklere1623442009-01-27 14:27:56 -08002240 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002241 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2242
2243 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002244 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002245 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002246 IWL_DEBUG_INFO(priv,
2247 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002248 memcpy(priv->ucode_data.v_addr, src, len);
2249 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002250 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002251
2252 /* Initialization instructions (3rd block) */
2253 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002254 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002255 IWL_DEBUG_INFO(priv,
2256 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002257 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002258 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002259 }
2260
2261 /* Initialization data (4th block) */
2262 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002263 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002264 IWL_DEBUG_INFO(priv,
2265 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002266 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002267 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002268 }
2269
2270 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002271 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002272 IWL_DEBUG_INFO(priv,
2273 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002274 memcpy(priv->ucode_boot.v_addr, src, len);
2275
2276 /* We have our copies now, allow OS release its copies */
2277 release_firmware(ucode_raw);
2278 return 0;
2279
2280 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002281 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002282 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002283 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002284
2285 err_release:
2286 release_firmware(ucode_raw);
2287
2288 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002289 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002290}
2291
2292
2293/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002294 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002295 *
2296 * Tell initialization uCode where to find runtime uCode.
2297 *
2298 * BSM registers initially contain pointers to initialization uCode.
2299 * We need to replace them to load runtime uCode inst and data,
2300 * and to save runtime data when powering down.
2301 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002302static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002303{
2304 dma_addr_t pinst;
2305 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002306
2307 /* bits 31:0 for 3945 */
2308 pinst = priv->ucode_code.p_addr;
2309 pdata = priv->ucode_data_backup.p_addr;
2310
Zhu Yib481de92007-09-25 17:54:57 -07002311 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002312 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2313 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2314 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002315 priv->ucode_data.len);
2316
Tomas Winklera96a27f2008-10-23 23:48:56 -07002317 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002318 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002319 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002320 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2321
Tomas Winklere1623442009-01-27 14:27:56 -08002322 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002323
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002324 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002325}
2326
2327/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002328 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002329 *
2330 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2331 *
Zhu Yib481de92007-09-25 17:54:57 -07002332 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002333 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002334static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002335{
2336 /* Check alive response for "valid" sign from uCode */
2337 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2338 /* We had an error bringing up the hardware, so take it
2339 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002340 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002341 goto restart;
2342 }
2343
2344 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2345 * This is a paranoid check, because we would not have gotten the
2346 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002347 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002348 /* Runtime instruction load was bad;
2349 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002350 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002351 goto restart;
2352 }
2353
2354 /* Send pointers to protocol/runtime uCode image ... init code will
2355 * load and launch runtime uCode, which will send us another "Alive"
2356 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002357 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002358 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002359 /* Runtime instruction load won't happen;
2360 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002361 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002362 goto restart;
2363 }
2364 return;
2365
2366 restart:
2367 queue_work(priv->workqueue, &priv->restart);
2368}
2369
Zhu Yib481de92007-09-25 17:54:57 -07002370/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002371 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002372 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002373 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002374 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002375static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002376{
Zhu Yib481de92007-09-25 17:54:57 -07002377 int thermal_spin = 0;
2378 u32 rfkill;
2379
Tomas Winklere1623442009-01-27 14:27:56 -08002380 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002381
2382 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2383 /* We had an error bringing up the hardware, so take it
2384 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002385 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002386 goto restart;
2387 }
2388
2389 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2390 * This is a paranoid check, because we would not have gotten the
2391 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002392 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002393 /* Runtime instruction load was bad;
2394 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002395 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002396 goto restart;
2397 }
2398
Tomas Winklerc587de02009-06-03 11:44:07 -07002399 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002400
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002401 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002402 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002403
2404 if (rfkill & 0x1) {
2405 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002406 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002407 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002408 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002409 thermal_spin++;
2410 udelay(10);
2411 }
2412
2413 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002414 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002415 thermal_spin * 10);
2416 } else
2417 set_bit(STATUS_RF_KILL_HW, &priv->status);
2418
Ben Cahill9fbab512007-11-29 11:09:47 +08002419 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002420 set_bit(STATUS_ALIVE, &priv->status);
2421
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002422 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002423 return;
2424
Johannes Berg36d68252008-05-15 12:55:26 +02002425 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002426
2427 priv->active_rate = priv->rates_mask;
2428 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2429
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002430 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002431
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002432 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002433 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002434 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002435
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002436 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002437 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2438 } else {
2439 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002440 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002441 }
2442
Ben Cahill9fbab512007-11-29 11:09:47 +08002443 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002444 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002445
2446 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002447 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002448
Zhu Yib481de92007-09-25 17:54:57 -07002449 iwl3945_reg_txpower_periodic(priv);
2450
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002451 iwl3945_led_register(priv);
2452
Tomas Winklere1623442009-01-27 14:27:56 -08002453 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002454 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002455 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002456
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002457 /* reassociate for ADHOC mode */
2458 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2459 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2460 priv->vif);
2461 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002462 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002463 }
2464
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002465 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002466 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002467
Zhu Yib481de92007-09-25 17:54:57 -07002468 return;
2469
2470 restart:
2471 queue_work(priv->workqueue, &priv->restart);
2472}
2473
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002474static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002475
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002476static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002477{
2478 unsigned long flags;
2479 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2480 struct ieee80211_conf *conf = NULL;
2481
Tomas Winklere1623442009-01-27 14:27:56 -08002482 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002483
2484 conf = ieee80211_get_hw_conf(priv->hw);
2485
2486 if (!exit_pending)
2487 set_bit(STATUS_EXIT_PENDING, &priv->status);
2488
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002489 iwl3945_led_unregister(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07002490 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002491
2492 /* Unblock any waiting calls */
2493 wake_up_interruptible_all(&priv->wait_command_queue);
2494
Zhu Yib481de92007-09-25 17:54:57 -07002495 /* Wipe out the EXIT_PENDING status bit if we are not actually
2496 * exiting the module */
2497 if (!exit_pending)
2498 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2499
2500 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002501 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002502
2503 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002504 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002505 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002506 spin_unlock_irqrestore(&priv->lock, flags);
2507 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002508
2509 if (priv->mac80211_registered)
2510 ieee80211_stop_queues(priv->hw);
2511
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002512 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002513 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002514 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002515 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2516 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002517 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2518 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002519 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2520 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002521 goto exit;
2522 }
2523
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002524 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002525 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002526 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2527 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002528 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2529 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002530 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002531 STATUS_FW_ERROR |
2532 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2533 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002534
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002535 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002536 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002537 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002538 spin_unlock_irqrestore(&priv->lock, flags);
2539
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002540 iwl3945_hw_txq_ctx_stop(priv);
2541 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002542
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002543 iwl_write_prph(priv, APMG_CLK_DIS_REG,
2544 APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002545
2546 udelay(5);
2547
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002548 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002549 priv->cfg->ops->lib->apm_ops.stop(priv);
2550 else
2551 priv->cfg->ops->lib->apm_ops.reset(priv);
2552
Zhu Yib481de92007-09-25 17:54:57 -07002553 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002554 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002555
2556 if (priv->ibss_beacon)
2557 dev_kfree_skb(priv->ibss_beacon);
2558 priv->ibss_beacon = NULL;
2559
2560 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002561 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002562}
2563
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002564static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002565{
2566 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002567 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002568 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002569
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002570 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002571}
2572
2573#define MAX_HW_RESTARTS 5
2574
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002575static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002576{
2577 int rc, i;
2578
2579 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002580 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002581 return -EIO;
2582 }
2583
Reinette Chatree903fbd2008-01-30 22:05:15 -08002584 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002585 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002586 return -EIO;
2587 }
2588
Zhu Yie655b9f2008-01-24 02:19:38 -08002589 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002590 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002591 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2592 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2593 else {
2594 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002595 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2596 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002597 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002598
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002599 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002600
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002601 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002602 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002603 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002604 return rc;
2605 }
2606
2607 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002608 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2609 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002610 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2611
2612 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002613 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002614 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002615
2616 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002617 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2618 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002619
2620 /* Copy original ucode data image from disk into backup cache.
2621 * This will be used to initialize the on-board processor's
2622 * data SRAM for a clean start when the runtime program first loads. */
2623 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002624 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002625
Zhu Yie655b9f2008-01-24 02:19:38 -08002626 /* We return success when we resume from suspend and rf_kill is on. */
2627 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2628 return 0;
2629
Zhu Yib481de92007-09-25 17:54:57 -07002630 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2631
Tomas Winklerc587de02009-06-03 11:44:07 -07002632 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002633
2634 /* load bootstrap state machine,
2635 * load bootstrap program into processor's memory,
2636 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002637 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002638
2639 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002640 IWL_ERR(priv,
2641 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002642 continue;
2643 }
2644
2645 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002646 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002647
Tomas Winklere1623442009-01-27 14:27:56 -08002648 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002649
2650 return 0;
2651 }
2652
2653 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002654 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002655 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002656
2657 /* tried to restart and config the device for as long as our
2658 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002659 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002660 return -EIO;
2661}
2662
2663
2664/*****************************************************************************
2665 *
2666 * Workqueue callbacks
2667 *
2668 *****************************************************************************/
2669
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002670static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002671{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002672 struct iwl_priv *priv =
2673 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002674
2675 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2676 return;
2677
2678 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002679 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002680 mutex_unlock(&priv->mutex);
2681}
2682
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002683static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002684{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002685 struct iwl_priv *priv =
2686 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002687
2688 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2689 return;
2690
2691 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002692 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002693 mutex_unlock(&priv->mutex);
2694}
2695
Helmut Schaa26635162009-01-15 09:38:44 +01002696static void iwl3945_rfkill_poll(struct work_struct *data)
2697{
2698 struct iwl_priv *priv =
2699 container_of(data, struct iwl_priv, rfkill_poll.work);
Helmut Schaa26635162009-01-15 09:38:44 +01002700
2701 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2702 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2703 else
2704 set_bit(STATUS_RF_KILL_HW, &priv->status);
2705
Johannes Berga60e77e2009-06-04 18:26:06 +02002706 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
2707 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa26635162009-01-15 09:38:44 +01002708
2709 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2710 round_jiffies_relative(2 * HZ));
2711
2712}
2713
Zhu Yib481de92007-09-25 17:54:57 -07002714#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002715static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002716{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002717 struct iwl_priv *priv =
2718 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002719 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002720 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002721 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002722 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002723 };
2724 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002725 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002726 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002727 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002728 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002729 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002730
2731 conf = ieee80211_get_hw_conf(priv->hw);
2732
2733 mutex_lock(&priv->mutex);
2734
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002735 cancel_delayed_work(&priv->scan_check);
2736
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002737 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002738 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002739 goto done;
2740 }
2741
Tomas Winklera96a27f2008-10-23 23:48:56 -07002742 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002743 * was given the chance to run... */
2744 if (!test_bit(STATUS_SCANNING, &priv->status))
2745 goto done;
2746
2747 /* This should never be called or scheduled if there is currently
2748 * a scan active in the hardware. */
2749 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002750 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2751 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002752 rc = -EIO;
2753 goto done;
2754 }
2755
2756 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002757 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002758 goto done;
2759 }
2760
2761 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002762 IWL_DEBUG_HC(priv,
2763 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002764 goto done;
2765 }
2766
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002767 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002768 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002769 goto done;
2770 }
2771
2772 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002773 IWL_DEBUG_HC(priv,
2774 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002775 goto done;
2776 }
2777
2778 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002779 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002780 goto done;
2781 }
2782
Winkler, Tomas805cee52009-01-19 15:30:28 -08002783 if (!priv->scan) {
2784 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07002785 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08002786 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07002787 rc = -ENOMEM;
2788 goto done;
2789 }
2790 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08002791 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002792 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002793
2794 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2795 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2796
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002797 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002798 u16 interval = 0;
2799 u32 extra;
2800 u32 suspend_time = 100;
2801 u32 scan_suspend_time = 100;
2802 unsigned long flags;
2803
Tomas Winklere1623442009-01-27 14:27:56 -08002804 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002805
2806 spin_lock_irqsave(&priv->lock, flags);
2807 interval = priv->beacon_int;
2808 spin_unlock_irqrestore(&priv->lock, flags);
2809
2810 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002811 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002812 if (!interval)
2813 interval = suspend_time;
2814 /*
2815 * suspend time format:
2816 * 0-19: beacon interval in usec (time before exec.)
2817 * 20-23: 0
2818 * 24-31: number of beacons (suspend between channels)
2819 */
2820
2821 extra = (suspend_time / interval) << 24;
2822 scan_suspend_time = 0xFF0FFFFF &
2823 (extra | ((suspend_time % interval) * 1024));
2824
2825 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002826 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002827 scan_suspend_time, interval);
2828 }
2829
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002830 if (priv->scan_request->n_ssids) {
2831 int i, p = 0;
2832 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2833 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2834 /* always does wildcard anyway */
2835 if (!priv->scan_request->ssids[i].ssid_len)
2836 continue;
2837 scan->direct_scan[p].id = WLAN_EID_SSID;
2838 scan->direct_scan[p].len =
2839 priv->scan_request->ssids[i].ssid_len;
2840 memcpy(scan->direct_scan[p].ssid,
2841 priv->scan_request->ssids[i].ssid,
2842 priv->scan_request->ssids[i].ssid_len);
2843 n_probes++;
2844 p++;
2845 }
2846 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002847 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002848 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002849
2850 /* We don't build a direct scan probe request; the uCode will do
2851 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002852 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002853 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002854 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2855
2856 /* flags + rate selection */
2857
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002858 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002859 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2860 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2861 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002862 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002863 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002864 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002865 /*
2866 * If active scaning is requested but a certain channel
2867 * is marked passive, we can do active scanning if we
2868 * detect transmissions.
2869 */
2870 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002871 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002872 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002873 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07002874 goto done;
2875 }
2876
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002877 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002878 iwl_fill_probe_req(priv,
2879 (struct ieee80211_mgmt *)scan->data,
2880 priv->scan_request->ie,
2881 priv->scan_request->ie_len,
2882 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002883
Zhu Yib481de92007-09-25 17:54:57 -07002884 /* select Rx antennas */
2885 scan->flags |= iwl3945_get_antenna_flags(priv);
2886
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07002887 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002888 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2889
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002890 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002891 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002892 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07002893
Reinette Chatre14b54332008-11-04 12:21:35 -08002894 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002895 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002896 goto done;
2897 }
2898
Zhu Yib481de92007-09-25 17:54:57 -07002899 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002900 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07002901 cmd.data = scan;
2902 scan->len = cpu_to_le16(cmd.len);
2903
2904 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08002905 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002906 if (rc)
2907 goto done;
2908
2909 queue_delayed_work(priv->workqueue, &priv->scan_check,
2910 IWL_SCAN_CHECK_WATCHDOG);
2911
2912 mutex_unlock(&priv->mutex);
2913 return;
2914
2915 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08002916 /* can not perform scan make sure we clear scanning
2917 * bits from status so next scan request can be performed.
2918 * if we dont clear scanning status bit here all next scan
2919 * will fail
2920 */
2921 clear_bit(STATUS_SCAN_HW, &priv->status);
2922 clear_bit(STATUS_SCANNING, &priv->status);
2923
Ian Schram01ebd062007-10-25 17:15:22 +08002924 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07002925 queue_work(priv->workqueue, &priv->scan_completed);
2926 mutex_unlock(&priv->mutex);
2927}
2928
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002929static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002930{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002931 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002932
2933 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2934 return;
2935
2936 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002937 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002938 mutex_unlock(&priv->mutex);
2939}
2940
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002941static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002942{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002943 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002944
2945 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2946 return;
2947
Johannes Berg19cc1082009-05-08 13:44:36 -07002948 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
2949 mutex_lock(&priv->mutex);
2950 priv->vif = NULL;
2951 priv->is_open = 0;
2952 mutex_unlock(&priv->mutex);
2953 iwl3945_down(priv);
2954 ieee80211_restart_hw(priv->hw);
2955 } else {
2956 iwl3945_down(priv);
2957 queue_work(priv->workqueue, &priv->up);
2958 }
Zhu Yib481de92007-09-25 17:54:57 -07002959}
2960
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002961static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002962{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002963 struct iwl_priv *priv =
2964 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002965
2966 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2967 return;
2968
2969 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002970 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002971 mutex_unlock(&priv->mutex);
2972}
2973
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002974#define IWL_DELAY_NEXT_SCAN (HZ*2)
2975
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002976void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002977{
Zhu Yib481de92007-09-25 17:54:57 -07002978 int rc = 0;
2979 struct ieee80211_conf *conf = NULL;
2980
Johannes Berg05c914f2008-09-11 00:01:58 +02002981 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002982 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002983 return;
2984 }
2985
2986
Tomas Winklere1623442009-01-27 14:27:56 -08002987 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002988 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002989
2990 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2991 return;
2992
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002993 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08002994 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002995
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08002996 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002997
Zhu Yib481de92007-09-25 17:54:57 -07002998 conf = ieee80211_get_hw_conf(priv->hw);
2999
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003000 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003001 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003002
Tomas Winkler28afaf92008-12-19 10:37:06 +08003003 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003004 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003005 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003006 sizeof(priv->rxon_timing), &priv->rxon_timing);
3007 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003008 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003009 "Attempting to continue.\n");
3010
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003011 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003012
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003013 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003014
Tomas Winklere1623442009-01-27 14:27:56 -08003015 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003016 priv->assoc_id, priv->beacon_int);
3017
3018 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003019 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003020 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003021 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003022
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003023 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003024 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003025 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003026 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003027 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003028
Johannes Berg05c914f2008-09-11 00:01:58 +02003029 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003030 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003031
3032 }
3033
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003034 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003035
3036 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003037 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003038 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003039 break;
3040
Johannes Berg05c914f2008-09-11 00:01:58 +02003041 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003042
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003043 priv->assoc_id = 1;
Tomas Winklerc587de02009-06-03 11:44:07 -07003044 iwl_add_station(priv, priv->bssid, 0, CMD_SYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003045 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003046 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003047 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3048 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003049 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3050 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003051
3052 break;
3053
3054 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003055 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003056 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003057 break;
3058 }
3059
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003060 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003061
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003062 /* we have just associated, don't start scan too early */
3063 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003064}
3065
Zhu Yib481de92007-09-25 17:54:57 -07003066/*****************************************************************************
3067 *
3068 * mac80211 entry point functions
3069 *
3070 *****************************************************************************/
3071
Zhu Yi5a669262008-01-14 17:46:18 -08003072#define UCODE_READY_TIMEOUT (2 * HZ)
3073
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003074static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003075{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003076 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003077 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003078
Tomas Winklere1623442009-01-27 14:27:56 -08003079 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003080
3081 /* we should be verifying the device is ready to be opened */
3082 mutex_lock(&priv->mutex);
3083
Zhu Yi5a669262008-01-14 17:46:18 -08003084 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3085 * ucode filename and max sizes are card-specific. */
3086
3087 if (!priv->ucode_code.len) {
3088 ret = iwl3945_read_ucode(priv);
3089 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003090 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003091 mutex_unlock(&priv->mutex);
3092 goto out_release_irq;
3093 }
3094 }
3095
Zhu Yie655b9f2008-01-24 02:19:38 -08003096 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003097
Zhu Yib481de92007-09-25 17:54:57 -07003098 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003099
Zhu Yie655b9f2008-01-24 02:19:38 -08003100 if (ret)
3101 goto out_release_irq;
3102
Tomas Winklere1623442009-01-27 14:27:56 -08003103 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003104
Zhu Yi5a669262008-01-14 17:46:18 -08003105 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3106 * mac80211 will not be run successfully. */
3107 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3108 test_bit(STATUS_READY, &priv->status),
3109 UCODE_READY_TIMEOUT);
3110 if (!ret) {
3111 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003112 IWL_ERR(priv,
3113 "Wait for START_ALIVE timeout after %dms.\n",
3114 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003115 ret = -ETIMEDOUT;
3116 goto out_release_irq;
3117 }
3118 }
3119
Helmut Schaa26635162009-01-15 09:38:44 +01003120 /* ucode is running and will send rfkill notifications,
3121 * no need to poll the killswitch state anymore */
3122 cancel_delayed_work(&priv->rfkill_poll);
3123
Zhu Yie655b9f2008-01-24 02:19:38 -08003124 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003125 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003126 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003127
3128out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003129 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003130 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003131 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003132}
3133
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003134static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003135{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003136 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003137
Tomas Winklere1623442009-01-27 14:27:56 -08003138 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003139
Zhu Yie655b9f2008-01-24 02:19:38 -08003140 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003141 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003142 return;
3143 }
3144
Zhu Yib481de92007-09-25 17:54:57 -07003145 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003146
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003147 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003148 /* stop mac, cancel any scan request and clear
3149 * RXON_FILTER_ASSOC_MSK BIT
3150 */
Zhu Yi5a669262008-01-14 17:46:18 -08003151 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003152 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003153 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003154 }
3155
Zhu Yi5a669262008-01-14 17:46:18 -08003156 iwl3945_down(priv);
3157
3158 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003159
3160 /* start polling the killswitch state again */
3161 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3162 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003163
Tomas Winklere1623442009-01-27 14:27:56 -08003164 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003165}
3166
Johannes Berge039fa42008-05-15 12:55:29 +02003167static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003168{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003169 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003170
Tomas Winklere1623442009-01-27 14:27:56 -08003171 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003172
Tomas Winklere1623442009-01-27 14:27:56 -08003173 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003174 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003175
Johannes Berge039fa42008-05-15 12:55:29 +02003176 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003177 dev_kfree_skb_any(skb);
3178
Tomas Winklere1623442009-01-27 14:27:56 -08003179 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003180 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003181}
3182
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003183void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003184{
3185 int rc = 0;
3186
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003187 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003188 return;
3189
3190 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003191 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003192
3193 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003194 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003195 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003196
3197 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003198 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003199 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003200 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3201 sizeof(priv->rxon_timing),
3202 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003203 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003204 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003205 "Attempting to continue.\n");
3206
3207 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003208 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003209 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003210 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003211 RXON_FLG_SHORT_PREAMBLE_MSK;
3212 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003213 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003214 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3215
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003216 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003217 if (priv->assoc_capability &
3218 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003219 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003220 RXON_FLG_SHORT_SLOT_MSK;
3221 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003222 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003223 ~RXON_FLG_SHORT_SLOT_MSK;
3224
Johannes Berg05c914f2008-09-11 00:01:58 +02003225 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003226 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003227 ~RXON_FLG_SHORT_SLOT_MSK;
3228 }
3229 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003230 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003231 iwlcore_commit_rxon(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07003232 iwl_add_station(priv, iwl_bcast_addr, 0, CMD_SYNC, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003233 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003234 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003235
3236 /* FIXME - we need to add code here to detect a totally new
3237 * configuration, reset the AP, unassoc, rxon timing, assoc,
3238 * clear sta table, add BCAST sta... */
3239}
3240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003241static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003242 struct ieee80211_vif *vif,
3243 struct ieee80211_sta *sta,
3244 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003245{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003246 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003247 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003248 int ret = 0;
3249 u8 sta_id = IWL_INVALID_STATION;
3250 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003251
Tomas Winklere1623442009-01-27 14:27:56 -08003252 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003253
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003254 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003255 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003256 return -EOPNOTSUPP;
3257 }
3258
Winkler, Tomas42986792009-01-19 15:30:22 -08003259 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003260 static_key = !iwl_is_associated(priv);
3261
3262 if (!static_key) {
Tomas Winklerc587de02009-06-03 11:44:07 -07003263 sta_id = iwl_find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003264 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003265 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003266 addr);
3267 return -EINVAL;
3268 }
Zhu Yib481de92007-09-25 17:54:57 -07003269 }
3270
3271 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003272 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003273 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003274
Zhu Yib481de92007-09-25 17:54:57 -07003275 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003276 case SET_KEY:
3277 if (static_key)
3278 ret = iwl3945_set_static_key(priv, key);
3279 else
3280 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3281 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003282 break;
3283 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003284 if (static_key)
3285 ret = iwl3945_remove_static_key(priv);
3286 else
3287 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3288 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003289 break;
3290 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003291 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003292 }
3293
Tomas Winklere1623442009-01-27 14:27:56 -08003294 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003295
Winkler, Tomas42986792009-01-19 15:30:22 -08003296 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003297}
3298
Zhu Yib481de92007-09-25 17:54:57 -07003299/*****************************************************************************
3300 *
3301 * sysfs attributes
3302 *
3303 *****************************************************************************/
3304
Samuel Ortizd08853a2009-01-23 13:45:17 -08003305#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003306
3307/*
3308 * The following adds a new attribute to the sysfs representation
3309 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3310 * used for controlling the debug level.
3311 *
3312 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003313 *
3314 * FIXME This file can be deprecated as the module parameter is
3315 * writable and users can thus also change the debug level
3316 * using the /sys/module/iwl3945/parameters/debug file.
Zhu Yib481de92007-09-25 17:54:57 -07003317 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003318static ssize_t show_debug_level(struct device *d,
3319 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003320{
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003321 return sprintf(buf, "0x%08X\n", iwl_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003322}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003323static ssize_t store_debug_level(struct device *d,
3324 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003325 const char *buf, size_t count)
3326{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003327 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003328 unsigned long val;
3329 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003330
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003331 ret = strict_strtoul(buf, 0, &val);
3332 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003333 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003334 else
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003335 iwl_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003336
3337 return strnlen(buf, count);
3338}
3339
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003340static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3341 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003342
Samuel Ortizd08853a2009-01-23 13:45:17 -08003343#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003344
Zhu Yib481de92007-09-25 17:54:57 -07003345static ssize_t show_temperature(struct device *d,
3346 struct device_attribute *attr, char *buf)
3347{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003348 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003349
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003350 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003351 return -EAGAIN;
3352
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003353 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003354}
3355
3356static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3357
Zhu Yib481de92007-09-25 17:54:57 -07003358static ssize_t show_tx_power(struct device *d,
3359 struct device_attribute *attr, char *buf)
3360{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003361 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003362 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003363}
3364
3365static ssize_t store_tx_power(struct device *d,
3366 struct device_attribute *attr,
3367 const char *buf, size_t count)
3368{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003369 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003370 char *p = (char *)buf;
3371 u32 val;
3372
3373 val = simple_strtoul(p, &p, 10);
3374 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003375 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003376 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003377 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003378
3379 return count;
3380}
3381
3382static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3383
3384static ssize_t show_flags(struct device *d,
3385 struct device_attribute *attr, char *buf)
3386{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003387 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003388
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003389 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003390}
3391
3392static ssize_t store_flags(struct device *d,
3393 struct device_attribute *attr,
3394 const char *buf, size_t count)
3395{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003396 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003397 u32 flags = simple_strtoul(buf, NULL, 0);
3398
3399 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003400 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003401 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003402 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003403 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003404 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003405 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003406 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003407 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003408 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003409 }
3410 }
3411 mutex_unlock(&priv->mutex);
3412
3413 return count;
3414}
3415
3416static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3417
3418static ssize_t show_filter_flags(struct device *d,
3419 struct device_attribute *attr, char *buf)
3420{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003421 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003422
3423 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003424 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003425}
3426
3427static ssize_t store_filter_flags(struct device *d,
3428 struct device_attribute *attr,
3429 const char *buf, size_t count)
3430{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003431 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003432 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3433
3434 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003435 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003436 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003437 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003438 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003439 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003440 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003441 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003442 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003443 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003444 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003445 }
3446 }
3447 mutex_unlock(&priv->mutex);
3448
3449 return count;
3450}
3451
3452static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3453 store_filter_flags);
3454
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003455#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003456
3457static ssize_t show_measurement(struct device *d,
3458 struct device_attribute *attr, char *buf)
3459{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003460 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003461 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003462 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003463 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003464 unsigned long flags;
3465
3466 spin_lock_irqsave(&priv->lock, flags);
3467 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3468 spin_unlock_irqrestore(&priv->lock, flags);
3469 return 0;
3470 }
3471 memcpy(&measure_report, &priv->measure_report, size);
3472 priv->measurement_status = 0;
3473 spin_unlock_irqrestore(&priv->lock, flags);
3474
3475 while (size && (PAGE_SIZE - len)) {
3476 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3477 PAGE_SIZE - len, 1);
3478 len = strlen(buf);
3479 if (PAGE_SIZE - len)
3480 buf[len++] = '\n';
3481
3482 ofs += 16;
3483 size -= min(size, 16U);
3484 }
3485
3486 return len;
3487}
3488
3489static ssize_t store_measurement(struct device *d,
3490 struct device_attribute *attr,
3491 const char *buf, size_t count)
3492{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003493 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003494 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003495 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003496 .start_time = cpu_to_le64(priv->last_tsf),
3497 .duration = cpu_to_le16(1),
3498 };
3499 u8 type = IWL_MEASURE_BASIC;
3500 u8 buffer[32];
3501 u8 channel;
3502
3503 if (count) {
3504 char *p = buffer;
3505 strncpy(buffer, buf, min(sizeof(buffer), count));
3506 channel = simple_strtoul(p, NULL, 0);
3507 if (channel)
3508 params.channel = channel;
3509
3510 p = buffer;
3511 while (*p && *p != ' ')
3512 p++;
3513 if (*p)
3514 type = simple_strtoul(p + 1, NULL, 0);
3515 }
3516
Tomas Winklere1623442009-01-27 14:27:56 -08003517 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003518 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003519 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003520
3521 return count;
3522}
3523
3524static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3525 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003526#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003527
Zhu Yib481de92007-09-25 17:54:57 -07003528static ssize_t store_retry_rate(struct device *d,
3529 struct device_attribute *attr,
3530 const char *buf, size_t count)
3531{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003532 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003533
3534 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3535 if (priv->retry_rate <= 0)
3536 priv->retry_rate = 1;
3537
3538 return count;
3539}
3540
3541static ssize_t show_retry_rate(struct device *d,
3542 struct device_attribute *attr, char *buf)
3543{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003544 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003545 return sprintf(buf, "%d", priv->retry_rate);
3546}
3547
3548static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3549 store_retry_rate);
3550
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003551
Zhu Yib481de92007-09-25 17:54:57 -07003552static ssize_t store_power_level(struct device *d,
3553 struct device_attribute *attr,
3554 const char *buf, size_t count)
3555{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003556 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003557 int ret;
3558 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003559
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003560
Zhu Yib481de92007-09-25 17:54:57 -07003561 mutex_lock(&priv->mutex);
3562
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003563 ret = strict_strtoul(buf, 10, &mode);
3564 if (ret)
3565 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003566
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003567 ret = iwl_power_set_user_mode(priv, mode);
3568 if (ret) {
3569 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
3570 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003571 }
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003572 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003573
3574 out:
3575 mutex_unlock(&priv->mutex);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003576 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003577}
3578
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003579static ssize_t show_power_level(struct device *d,
3580 struct device_attribute *attr, char *buf)
3581{
3582 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003583 int level = priv->power_data.power_mode;
3584 char *p = buf;
3585
Reinette Chatre872ed192009-07-09 10:33:37 -07003586 p += sprintf(p, "%d\n", level);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003587 return p - buf + 1;
3588}
3589
3590static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR,
3591 show_power_level, store_power_level);
3592
Zhu Yib481de92007-09-25 17:54:57 -07003593#define MAX_WX_STRING 80
3594
3595/* Values are in microsecond */
3596static const s32 timeout_duration[] = {
3597 350000,
3598 250000,
3599 75000,
3600 37000,
3601 25000,
3602};
3603static const s32 period_duration[] = {
3604 400000,
3605 700000,
3606 1000000,
3607 1000000,
3608 1000000
3609};
3610
Zhu Yib481de92007-09-25 17:54:57 -07003611static ssize_t show_channels(struct device *d,
3612 struct device_attribute *attr, char *buf)
3613{
Johannes Berg8318d782008-01-24 19:38:38 +01003614 /* all this shit doesn't belong into sysfs anyway */
3615 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003616}
3617
3618static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3619
3620static ssize_t show_statistics(struct device *d,
3621 struct device_attribute *attr, char *buf)
3622{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003623 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003624 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003625 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003626 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003627 int rc = 0;
3628
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003629 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003630 return -EAGAIN;
3631
3632 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003633 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003634 mutex_unlock(&priv->mutex);
3635
3636 if (rc) {
3637 len = sprintf(buf,
3638 "Error sending statistics request: 0x%08X\n", rc);
3639 return len;
3640 }
3641
3642 while (size && (PAGE_SIZE - len)) {
3643 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3644 PAGE_SIZE - len, 1);
3645 len = strlen(buf);
3646 if (PAGE_SIZE - len)
3647 buf[len++] = '\n';
3648
3649 ofs += 16;
3650 size -= min(size, 16U);
3651 }
3652
3653 return len;
3654}
3655
3656static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3657
3658static ssize_t show_antenna(struct device *d,
3659 struct device_attribute *attr, char *buf)
3660{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003661 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003662
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003663 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003664 return -EAGAIN;
3665
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003666 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003667}
3668
3669static ssize_t store_antenna(struct device *d,
3670 struct device_attribute *attr,
3671 const char *buf, size_t count)
3672{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003673 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003674 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003675
3676 if (count == 0)
3677 return 0;
3678
3679 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003680 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003681 return count;
3682 }
3683
3684 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003685 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003686 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003687 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003688 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003689
3690
3691 return count;
3692}
3693
3694static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3695
3696static ssize_t show_status(struct device *d,
3697 struct device_attribute *attr, char *buf)
3698{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003699 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003700 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003701 return -EAGAIN;
3702 return sprintf(buf, "0x%08x\n", (int)priv->status);
3703}
3704
3705static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3706
3707static ssize_t dump_error_log(struct device *d,
3708 struct device_attribute *attr,
3709 const char *buf, size_t count)
3710{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003711 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003712 char *p = (char *)buf;
3713
3714 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003715 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003716
3717 return strnlen(buf, count);
3718}
3719
3720static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3721
3722static ssize_t dump_event_log(struct device *d,
3723 struct device_attribute *attr,
3724 const char *buf, size_t count)
3725{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003726 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003727 char *p = (char *)buf;
3728
3729 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003730 iwl3945_dump_nic_event_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003731
3732 return strnlen(buf, count);
3733}
3734
3735static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
3736
3737/*****************************************************************************
3738 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003739 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003740 *
3741 *****************************************************************************/
3742
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003743static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003744{
Reinette Chatred21050c2009-02-13 11:51:18 -08003745 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003746
3747 init_waitqueue_head(&priv->wait_command_queue);
3748
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003749 INIT_WORK(&priv->up, iwl3945_bg_up);
3750 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3751 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003752 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003753 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3754 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003755 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003756 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3757 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3758 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3759 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003760
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003761 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003762
3763 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003764 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003765}
3766
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003767static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003768{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003769 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003770
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003771 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003772 cancel_delayed_work(&priv->scan_check);
3773 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003774 cancel_work_sync(&priv->beacon_update);
3775}
3776
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003777static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003778 &dev_attr_antenna.attr,
3779 &dev_attr_channels.attr,
3780 &dev_attr_dump_errors.attr,
3781 &dev_attr_dump_events.attr,
3782 &dev_attr_flags.attr,
3783 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003784#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003785 &dev_attr_measurement.attr,
3786#endif
3787 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003788 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003789 &dev_attr_statistics.attr,
3790 &dev_attr_status.attr,
3791 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003792 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003793#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003794 &dev_attr_debug_level.attr,
3795#endif
Zhu Yib481de92007-09-25 17:54:57 -07003796 NULL
3797};
3798
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003799static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003800 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003801 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003802};
3803
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003804static struct ieee80211_ops iwl3945_hw_ops = {
3805 .tx = iwl3945_mac_tx,
3806 .start = iwl3945_mac_start,
3807 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003808 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003809 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003810 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003811 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003812 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07003813 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003814 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003815 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003816 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08003817 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003818};
3819
Winkler, Tomase52119c2008-12-22 11:31:19 +08003820static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003821{
3822 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003823 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003824
3825 priv->retry_rate = 1;
3826 priv->ibss_beacon = NULL;
3827
3828 spin_lock_init(&priv->lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003829 spin_lock_init(&priv->sta_lock);
3830 spin_lock_init(&priv->hcmd_lock);
3831
3832 INIT_LIST_HEAD(&priv->free_frames);
3833
3834 mutex_init(&priv->mutex);
3835
3836 /* Clear the driver's (not device's) station table */
Tomas Winklerc587de02009-06-03 11:44:07 -07003837 iwl_clear_stations_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003838
3839 priv->data_retry_limit = -1;
3840 priv->ieee_channels = NULL;
3841 priv->ieee_rates = NULL;
3842 priv->band = IEEE80211_BAND_2GHZ;
3843
3844 priv->iw_mode = NL80211_IFTYPE_STATION;
3845
3846 iwl_reset_qos(priv);
3847
3848 priv->qos_data.qos_active = 0;
3849 priv->qos_data.qos_cap.val = 0;
3850
3851 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003852 /* If power management is turned on, default to CAM mode */
3853 priv->power_mode = IWL_POWER_MODE_CAM;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003854 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003855
Samuel Ortize6148912009-01-23 13:45:15 -08003856 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3857 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3858 eeprom->version);
3859 ret = -EINVAL;
3860 goto err;
3861 }
3862 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003863 if (ret) {
3864 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3865 goto err;
3866 }
3867
Samuel Ortize6148912009-01-23 13:45:15 -08003868 /* Set up txpower settings in driver for all channels */
3869 if (iwl3945_txpower_set_from_eeprom(priv)) {
3870 ret = -EIO;
3871 goto err_free_channel_map;
3872 }
3873
Samuel Ortiz534166d2009-01-23 13:45:16 -08003874 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003875 if (ret) {
3876 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3877 goto err_free_channel_map;
3878 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003879 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3880
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003881 return 0;
3882
3883err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003884 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003885err:
3886 return ret;
3887}
3888
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003889static int iwl3945_setup_mac(struct iwl_priv *priv)
3890{
3891 int ret;
3892 struct ieee80211_hw *hw = priv->hw;
3893
3894 hw->rate_control_algorithm = "iwl-3945-rs";
3895 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3896
3897 /* Tell mac80211 our characteristics */
3898 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07003899 IEEE80211_HW_NOISE_DBM |
3900 IEEE80211_HW_SPECTRUM_MGMT;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003901
3902 hw->wiphy->interface_modes =
3903 BIT(NL80211_IFTYPE_STATION) |
3904 BIT(NL80211_IFTYPE_ADHOC);
3905
3906 hw->wiphy->custom_regulatory = true;
3907
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003908 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3909 /* we create the 802.11 header and a zero-length SSID element */
3910 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003911
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003912 /* Default value; 4 EDCA QOS priorities */
3913 hw->queues = 4;
3914
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003915 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3916 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3917 &priv->bands[IEEE80211_BAND_2GHZ];
3918
3919 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3920 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3921 &priv->bands[IEEE80211_BAND_5GHZ];
3922
3923 ret = ieee80211_register_hw(priv->hw);
3924 if (ret) {
3925 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3926 return ret;
3927 }
3928 priv->mac80211_registered = 1;
3929
3930 return 0;
3931}
3932
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003933static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003934{
3935 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003936 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003937 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003938 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003939 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003940 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003941
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003942 /***********************
3943 * 1. Allocating HW data
3944 * ********************/
3945
Zhu Yib481de92007-09-25 17:54:57 -07003946 /* mac80211 allocates memory for this device instance, including
3947 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003948 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003949 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003950 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003951 err = -ENOMEM;
3952 goto out;
3953 }
Zhu Yib481de92007-09-25 17:54:57 -07003954 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003955 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003956
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003957 /*
3958 * Disabling hardware scan means that mac80211 will perform scans
3959 * "the hard way", rather than using device's scan.
3960 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003961 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003962 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003963 iwl3945_hw_ops.hw_scan = NULL;
3964 }
3965
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003966
Tomas Winklere1623442009-01-27 14:27:56 -08003967 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003968 priv->cfg = cfg;
3969 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003970 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003971
Samuel Ortizd08853a2009-01-23 13:45:17 -08003972#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003973 atomic_set(&priv->restrict_refcnt, 0);
3974#endif
Zhu Yib481de92007-09-25 17:54:57 -07003975
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003976 /***************************
3977 * 2. Initializing PCI bus
3978 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07003979 if (pci_enable_device(pdev)) {
3980 err = -ENODEV;
3981 goto out_ieee80211_free_hw;
3982 }
3983
3984 pci_set_master(pdev);
3985
Yang Hongyang284901a2009-04-06 19:01:15 -07003986 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003987 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07003988 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003989 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003990 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003991 goto out_pci_disable_device;
3992 }
3993
3994 pci_set_drvdata(pdev, priv);
3995 err = pci_request_regions(pdev, DRV_NAME);
3996 if (err)
3997 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003998
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003999 /***********************
4000 * 3. Read REV Register
4001 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07004002 priv->hw_base = pci_iomap(pdev, 0, 0);
4003 if (!priv->hw_base) {
4004 err = -ENODEV;
4005 goto out_pci_release_regions;
4006 }
4007
Tomas Winklere1623442009-01-27 14:27:56 -08004008 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07004009 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004010 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07004011
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004012 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4013 * PCI Tx retries from interfering with C3 CPU state */
4014 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07004015
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004016 /* this spin lock will be used in apm_ops.init and EEPROM access
4017 * we should init now
4018 */
4019 spin_lock_init(&priv->reg_lock);
4020
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004021 /* amp init */
4022 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004023 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07004024 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004025 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004026 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004027
4028 /***********************
4029 * 4. Read EEPROM
4030 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004031
Zhu Yi5a669262008-01-14 17:46:18 -08004032 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004033 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004034 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004035 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004036 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004037 }
4038 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004039 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4040 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004041 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08004042 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4043
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004044 /***********************
4045 * 5. Setup HW Constants
4046 * ********************/
4047 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004048 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004049 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004050 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004051 }
4052
4053 /***********************
4054 * 6. Setup priv
4055 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004056
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004057 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004058 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004059 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004060 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004061 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004062
Tomas Winkler978785a2008-12-19 10:37:31 +08004063 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4064 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004065
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004066 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004067 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004068 * ********************/
4069
4070 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004071 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004072 spin_unlock_irqrestore(&priv->lock, flags);
4073
Helmut Schaa26635162009-01-15 09:38:44 +01004074 pci_enable_msi(priv->pci_dev);
4075
Mohamed Abbasef850d72009-05-22 11:01:50 -07004076 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4077 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004078 if (err) {
4079 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4080 goto out_disable_msi;
4081 }
4082
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004083 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4084 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004085 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004086 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004087 }
4088
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004089 iwl_set_rxon_channel(priv,
4090 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004091 iwl3945_setup_deferred_work(priv);
4092 iwl3945_setup_rx_handlers(priv);
4093
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004094 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004095 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004096 * *******************************/
4097
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004098 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004099
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004100 err = iwl3945_setup_mac(priv);
4101 if (err)
4102 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004103
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004104 err = iwl_dbgfs_register(priv, DRV_NAME);
4105 if (err)
4106 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4107
Helmut Schaa26635162009-01-15 09:38:44 +01004108 /* Start monitoring the killswitch */
4109 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4110 2 * HZ);
4111
Zhu Yib481de92007-09-25 17:54:57 -07004112 return 0;
4113
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004114 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004115 destroy_workqueue(priv->workqueue);
4116 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004117 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4118 out_release_irq:
4119 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004120 out_disable_msi:
4121 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004122 iwlcore_free_geos(priv);
4123 iwl_free_channel_map(priv);
4124 out_unset_hw_params:
4125 iwl3945_unset_hw_params(priv);
4126 out_eeprom_free:
4127 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004128 out_iounmap:
4129 pci_iounmap(pdev, priv->hw_base);
4130 out_pci_release_regions:
4131 pci_release_regions(pdev);
4132 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004133 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004134 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004135 out_ieee80211_free_hw:
4136 ieee80211_free_hw(priv->hw);
4137 out:
4138 return err;
4139}
4140
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004141static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004142{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004143 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004144 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004145
4146 if (!priv)
4147 return;
4148
Tomas Winklere1623442009-01-27 14:27:56 -08004149 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004150
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004151 iwl_dbgfs_unregister(priv);
4152
Zhu Yib481de92007-09-25 17:54:57 -07004153 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004154
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004155 if (priv->mac80211_registered) {
4156 ieee80211_unregister_hw(priv->hw);
4157 priv->mac80211_registered = 0;
4158 } else {
4159 iwl3945_down(priv);
4160 }
Zhu Yib481de92007-09-25 17:54:57 -07004161
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004162 /* make sure we flush any pending irq or
4163 * tasklet for the driver
4164 */
4165 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004166 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004167 spin_unlock_irqrestore(&priv->lock, flags);
4168
4169 iwl_synchronize_irq(priv);
4170
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004171 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004172
Reinette Chatre71d449b2009-04-20 14:37:01 -07004173 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004174
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004175 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004176
4177 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004178 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004179 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004180
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004181 iwl3945_unset_hw_params(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07004182 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004183
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004184 /*netif_stop_queue(dev); */
4185 flush_workqueue(priv->workqueue);
4186
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004187 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004188 * priv->workqueue... so we can't take down the workqueue
4189 * until now... */
4190 destroy_workqueue(priv->workqueue);
4191 priv->workqueue = NULL;
4192
Helmut Schaa26635162009-01-15 09:38:44 +01004193 free_irq(pdev->irq, priv);
4194 pci_disable_msi(pdev);
4195
Zhu Yib481de92007-09-25 17:54:57 -07004196 pci_iounmap(pdev, priv->hw_base);
4197 pci_release_regions(pdev);
4198 pci_disable_device(pdev);
4199 pci_set_drvdata(pdev, NULL);
4200
Samuel Ortize6148912009-01-23 13:45:15 -08004201 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004202 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004203 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004204 if (priv->ibss_beacon)
4205 dev_kfree_skb(priv->ibss_beacon);
4206
4207 ieee80211_free_hw(priv->hw);
4208}
4209
Zhu Yib481de92007-09-25 17:54:57 -07004210
4211/*****************************************************************************
4212 *
4213 * driver and module entry point
4214 *
4215 *****************************************************************************/
4216
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004217static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004218 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004219 .id_table = iwl3945_hw_card_ids,
4220 .probe = iwl3945_pci_probe,
4221 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004222#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004223 .suspend = iwl_pci_suspend,
4224 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004225#endif
4226};
4227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004228static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004229{
4230
4231 int ret;
4232 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4233 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004234
4235 ret = iwl3945_rate_control_register();
4236 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004237 printk(KERN_ERR DRV_NAME
4238 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004239 return ret;
4240 }
4241
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004242 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004243 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004244 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004245 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004246 }
Zhu Yib481de92007-09-25 17:54:57 -07004247
4248 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004249
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004250error_register:
4251 iwl3945_rate_control_unregister();
4252 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004253}
4254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004255static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004256{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004257 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004258 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004259}
4260
Reinette Chatrea0987a82008-12-02 12:14:06 -08004261MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004262
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004263module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004264MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004265module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4266MODULE_PARM_DESC(swcrypto,
4267 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004268#ifdef CONFIG_IWLWIFI_DEBUG
4269module_param_named(debug, iwl_debug_level, uint, 0644);
Zhu Yib481de92007-09-25 17:54:57 -07004270MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004271#endif
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004272module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004273MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Samuel Ortizaf48d042009-01-23 13:45:19 -08004274module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4275MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4276
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004277module_exit(iwl3945_exit);
4278module_init(iwl3945_init);