blob: 34790413eadd64f0b98e254cad8536553526da60 [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
Gábor Stefanikaa065262009-08-21 20:44:09 +0200521 /* drop all non-injected data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800522 if (ieee80211_is_data(fc) &&
Gábor Stefanikaa065262009-08-21 20:44:09 +0200523 !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
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 */
Gábor Stefanikaa065262009-08-21 20:44:09 +0200535 if (info->flags & IEEE80211_TX_CTL_INJECTED)
536 sta_id = priv->hw_params.bcast_sta_id;
537 else
538 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700539 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800540 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700541 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700542 goto drop;
543 }
544
Tomas Winklere1623442009-01-27 14:27:56 -0800545 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700546
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700547 if (ieee80211_is_data_qos(fc)) {
548 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700549 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700550 if (unlikely(tid >= MAX_TID_COUNT))
551 goto drop;
Tomas Winklerc587de02009-06-03 11:44:07 -0700552 seq_number = priv->stations[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700553 IEEE80211_SCTL_SEQ;
554 hdr->seq_ctrl = cpu_to_le16(seq_number) |
555 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800556 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700557 seq_number += 0x10;
558 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800559
560 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800561 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700562 q = &txq->q;
563
564 spin_lock_irqsave(&priv->lock, flags);
565
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800566 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700567
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800568 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800569 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800570 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800571
572 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800573 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700574 out_meta = &txq->meta[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +0800575 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700576 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +0800577 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800578
579 /*
580 * Set up the Tx-command (not MAC!) header.
581 * Store the chosen Tx queue and TFD index within the sequence field;
582 * after Tx, uCode's Tx response will return this value so driver can
583 * locate the frame within the tx queue and do post-tx processing.
584 */
Zhu Yib481de92007-09-25 17:54:57 -0700585 out_cmd->hdr.cmd = REPLY_TX;
586 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800587 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800588
589 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800590 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700591
Reinette Chatredf833b12009-04-21 10:55:48 -0700592
593 if (info->control.hw_key)
594 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
595
596 /* TODO need this for burst mode later on */
597 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
598
599 /* set is_hcca to 0; it probably will never be implemented */
600 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
601
602 /* Total # bytes to be transmitted */
603 len = (u16)skb->len;
604 tx->len = cpu_to_le16(len);
605
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700606 iwl_dbg_log_tx_data_frame(priv, len, hdr);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700607 iwl_update_stats(priv, true, fc, len);
Reinette Chatredf833b12009-04-21 10:55:48 -0700608 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
609 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
610
611 if (!ieee80211_has_morefrags(hdr->frame_control)) {
612 txq->need_update = 1;
613 if (qc)
Tomas Winklerc587de02009-06-03 11:44:07 -0700614 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Reinette Chatredf833b12009-04-21 10:55:48 -0700615 } else {
616 wait_write_ptr = 1;
617 txq->need_update = 0;
618 }
619
620 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
621 le16_to_cpu(out_cmd->hdr.sequence));
622 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags));
Reinette Chatre3d816c72009-08-07 15:41:37 -0700623 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
624 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700625 ieee80211_hdrlen(fc));
626
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800627 /*
628 * Use the first empty entry in this queue's command buffer array
629 * to contain the Tx command and MAC header concatenated together
630 * (payload data will be in another buffer).
631 * Size of this varies, due to varying MAC header length.
632 * If end is not dword aligned, we'll have 2 extra bytes at the end
633 * of the MAC header (device reads on dword boundaries).
634 * We'll tell device about this padding later.
635 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800636 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800637 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700638
639 len_org = len;
640 len = (len + 3) & ~3;
641
642 if (len_org != len)
643 len_org = 1;
644 else
645 len_org = 0;
646
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800647 /* Physical address of this Tx command's header (not MAC header!),
648 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700649 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
650 len, PCI_DMA_TODEVICE);
651 /* we do not map meta data ... so we can safely access address to
652 * provide to unmap command*/
Johannes Bergc2acea82009-07-24 11:13:05 -0700653 pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
654 pci_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700655
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800656 /* Add buffer containing Tx command and MAC(!) header to TFD's
657 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800658 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
659 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700660
Zhu Yib481de92007-09-25 17:54:57 -0700661
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800662 /* Set up TFD's 2nd entry to point directly to remainder of skb,
663 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700664 len = skb->len - hdr_len;
665 if (len) {
666 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
667 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800668 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
669 phys_addr, len,
670 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700671 }
672
Zhu Yib481de92007-09-25 17:54:57 -0700673
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800674 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800675 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800676 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700677 spin_unlock_irqrestore(&priv->lock, flags);
678
679 if (rc)
680 return rc;
681
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800682 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700683 && priv->mac80211_registered) {
684 if (wait_write_ptr) {
685 spin_lock_irqsave(&priv->lock, flags);
686 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800687 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700688 spin_unlock_irqrestore(&priv->lock, flags);
689 }
690
Johannes Berge4e72fb2009-03-23 17:28:42 +0100691 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700692 }
693
694 return 0;
695
696drop_unlock:
697 spin_unlock_irqrestore(&priv->lock, flags);
698drop:
699 return -1;
700}
701
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800702#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700703
704#include "iwl-spectrum.h"
705
706#define BEACON_TIME_MASK_LOW 0x00FFFFFF
707#define BEACON_TIME_MASK_HIGH 0xFF000000
708#define TIME_UNIT 1024
709
710/*
711 * extended beacon time format
712 * time in usec will be changed into a 32-bit value in 8:24 format
713 * the high 1 byte is the beacon counts
714 * the lower 3 bytes is the time in usec within one beacon interval
715 */
716
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800717static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700718{
719 u32 quot;
720 u32 rem;
721 u32 interval = beacon_interval * 1024;
722
723 if (!interval || !usec)
724 return 0;
725
726 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
727 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
728
729 return (quot << 24) + rem;
730}
731
732/* base is usually what we get from ucode with each received frame,
733 * the same as HW timer counter counting down
734 */
735
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800736static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700737{
738 u32 base_low = base & BEACON_TIME_MASK_LOW;
739 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
740 u32 interval = beacon_interval * TIME_UNIT;
741 u32 res = (base & BEACON_TIME_MASK_HIGH) +
742 (addon & BEACON_TIME_MASK_HIGH);
743
744 if (base_low > addon_low)
745 res += base_low - addon_low;
746 else if (base_low < addon_low) {
747 res += interval + base_low - addon_low;
748 res += (1 << 24);
749 } else
750 res += (1 << 24);
751
752 return cpu_to_le32(res);
753}
754
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800755static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700756 struct ieee80211_measurement_params *params,
757 u8 type)
758{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800759 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800760 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800761 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700762 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
763 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700764 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700765 };
766 u32 add_time = le64_to_cpu(params->start_time);
767 int rc;
768 int spectrum_resp_status;
769 int duration = le16_to_cpu(params->duration);
770
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800771 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700772 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800773 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700774 le64_to_cpu(params->start_time) - priv->last_tsf,
775 le16_to_cpu(priv->rxon_timing.beacon_interval));
776
777 memset(&spectrum, 0, sizeof(spectrum));
778
779 spectrum.channel_count = cpu_to_le16(1);
780 spectrum.flags =
781 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
782 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
783 cmd.len = sizeof(spectrum);
784 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
785
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800786 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700787 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800788 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700789 add_time,
790 le16_to_cpu(priv->rxon_timing.beacon_interval));
791 else
792 spectrum.start_time = 0;
793
794 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
795 spectrum.channels[0].channel = params->channel;
796 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800797 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700798 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
799 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
800
Samuel Ortiz518099a2009-01-19 15:30:27 -0800801 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700802 if (rc)
803 return rc;
804
Johannes Bergc2acea82009-07-24 11:13:05 -0700805 res = (struct iwl_rx_packet *)cmd.reply_skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700806 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800807 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700808 rc = -EIO;
809 }
810
811 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
812 switch (spectrum_resp_status) {
813 case 0: /* Command will be handled */
814 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800815 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +0800816 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700817 priv->measurement_status &= ~MEASUREMENT_READY;
818 }
819 priv->measurement_status |= MEASUREMENT_ACTIVE;
820 rc = 0;
821 break;
822
823 case 1: /* Command will not be handled */
824 rc = -EAGAIN;
825 break;
826 }
827
Johannes Bergc2acea82009-07-24 11:13:05 -0700828 dev_kfree_skb_any(cmd.reply_skb);
Zhu Yib481de92007-09-25 17:54:57 -0700829
830 return rc;
831}
832#endif
833
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800834static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800835 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700836{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800837 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
838 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700839 struct delayed_work *pwork;
840
841 palive = &pkt->u.alive_frame;
842
Tomas Winklere1623442009-01-27 14:27:56 -0800843 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700844 "0x%01X 0x%01X\n",
845 palive->is_valid, palive->ver_type,
846 palive->ver_subtype);
847
848 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800849 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800850 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
851 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700852 pwork = &priv->init_alive_start;
853 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800854 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700855 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800856 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700857 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800858 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700859 }
860
861 /* We delay the ALIVE response by 5ms to
862 * give the HW RF Kill time to activate... */
863 if (palive->is_valid == UCODE_VALID_OK)
864 queue_delayed_work(priv->workqueue, pwork,
865 msecs_to_jiffies(5));
866 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800867 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700868}
869
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800870static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800871 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700872{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100873#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800874 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +0100875#endif
Zhu Yib481de92007-09-25 17:54:57 -0700876
Tomas Winklere1623442009-01-27 14:27:56 -0800877 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700878 return;
879}
880
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800881static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700882{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800883 struct iwl_priv *priv =
884 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700885 struct sk_buff *beacon;
886
887 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200888 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700889
890 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800891 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700892 return;
893 }
894
895 mutex_lock(&priv->mutex);
896 /* new beacon skb is allocated every time; dispose previous.*/
897 if (priv->ibss_beacon)
898 dev_kfree_skb(priv->ibss_beacon);
899
900 priv->ibss_beacon = beacon;
901 mutex_unlock(&priv->mutex);
902
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800903 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700904}
905
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800906static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800907 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700908{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800909#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800910 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800911 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700912 u8 rate = beacon->beacon_notify_hdr.rate;
913
Tomas Winklere1623442009-01-27 14:27:56 -0800914 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700915 "tsf %d %d rate %d\n",
916 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
917 beacon->beacon_notify_hdr.failure_frame,
918 le32_to_cpu(beacon->ibss_mgr_status),
919 le32_to_cpu(beacon->high_tsf),
920 le32_to_cpu(beacon->low_tsf), rate);
921#endif
922
Johannes Berg05c914f2008-09-11 00:01:58 +0200923 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700924 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
925 queue_work(priv->workqueue, &priv->beacon_update);
926}
927
Zhu Yib481de92007-09-25 17:54:57 -0700928/* Handle notification from uCode that card's power state is changing
929 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800930static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800931 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700932{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800933 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700934 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
935 unsigned long status = priv->status;
936
Reinette Chatre4c423a22009-07-17 09:30:26 -0700937 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700938 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
939 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
940
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800941 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700942 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
943
944 if (flags & HW_CARD_DISABLED)
945 set_bit(STATUS_RF_KILL_HW, &priv->status);
946 else
947 clear_bit(STATUS_RF_KILL_HW, &priv->status);
948
949
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800950 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700951
952 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200953 test_bit(STATUS_RF_KILL_HW, &priv->status)))
954 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
955 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700956 else
957 wake_up_interruptible(&priv->wait_command_queue);
958}
959
960/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800961 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700962 *
963 * Setup the RX handlers for each of the reply types sent from the uCode
964 * to the host.
965 *
966 * This function chains into the hardware specific files for them to setup
967 * any hardware specific handlers as well.
968 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800969static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700970{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800971 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
972 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800973 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800974 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800975 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700976 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800977 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800978 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700979
Ben Cahill9fbab512007-11-29 11:09:47 +0800980 /*
981 * The same handler is used for both the REPLY to a discrete
982 * statistics request from the host as well as for the periodic
983 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700984 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800985 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
986 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700987
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800988 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800989 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800990 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700991
Ben Cahill9fbab512007-11-29 11:09:47 +0800992 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800993 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700994}
995
Zhu Yib481de92007-09-25 17:54:57 -0700996/************************** RX-FUNCTIONS ****************************/
997/*
998 * Rx theory of operation
999 *
1000 * The host allocates 32 DMA target addresses and passes the host address
1001 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
1002 * 0 to 31
1003 *
1004 * Rx Queue Indexes
1005 * The host/firmware share two index registers for managing the Rx buffers.
1006 *
1007 * The READ index maps to the first position that the firmware may be writing
1008 * to -- the driver can read up to (but not including) this position and get
1009 * good data.
1010 * The READ index is managed by the firmware once the card is enabled.
1011 *
1012 * The WRITE index maps to the last position the driver has read from -- the
1013 * position preceding WRITE is the last slot the firmware can place a packet.
1014 *
1015 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1016 * WRITE = READ.
1017 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001018 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001019 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1020 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001021 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001022 * and fire the RX interrupt. The driver can then query the READ index and
1023 * process as many packets as possible, moving the WRITE index forward as it
1024 * resets the Rx queue buffers with new memory.
1025 *
1026 * The management in the driver is as follows:
1027 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1028 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001029 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001030 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001031 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1032 * 'processed' and 'read' driver indexes as well)
1033 * + A received packet is processed and handed to the kernel network stack,
1034 * detached from the iwl->rxq. The driver 'processed' index is updated.
1035 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1036 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1037 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1038 * were enough free buffers and RX_STALLED is set it is cleared.
1039 *
1040 *
1041 * Driver sequence:
1042 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001043 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001044 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001045 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001046 * queue, updates firmware pointers, and updates
1047 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001048 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001049 *
1050 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001051 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001052 * READ INDEX, detaching the SKB from the pool.
1053 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001054 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001055 * slots.
1056 * ...
1057 *
1058 */
1059
1060/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001061 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001062 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001063static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001064 dma_addr_t dma_addr)
1065{
1066 return cpu_to_le32((u32)dma_addr);
1067}
1068
1069/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001070 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001071 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001072 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001073 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001074 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001075 *
1076 * This moves the 'write' index forward to catch up with 'processed', and
1077 * also updates the memory address in the firmware to reference the new
1078 * target buffer.
1079 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001080static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001081{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001082 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001083 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001084 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001085 unsigned long flags;
1086 int write, rc;
1087
1088 spin_lock_irqsave(&rxq->lock, flags);
1089 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001090 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001091 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001092 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001093 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001094 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001095
1096 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001097 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001098 rxq->queue[rxq->write] = rxb;
1099 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1100 rxq->free_count--;
1101 }
1102 spin_unlock_irqrestore(&rxq->lock, flags);
1103 /* If the pre-allocated buffer pool is dropping low, schedule to
1104 * refill it */
1105 if (rxq->free_count <= RX_LOW_WATERMARK)
1106 queue_work(priv->workqueue, &priv->rx_replenish);
1107
1108
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001109 /* If we've added more space for the firmware to place data, tell it.
1110 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001111 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001112 || (abs(rxq->write - rxq->read) > 7)) {
1113 spin_lock_irqsave(&rxq->lock, flags);
1114 rxq->need_update = 1;
1115 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001116 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001117 if (rc)
1118 return rc;
1119 }
1120
1121 return 0;
1122}
1123
1124/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001125 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001126 *
1127 * When moving to rx_free an SKB is allocated for the slot.
1128 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001129 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001130 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001131 */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001132static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001133{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001134 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001135 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001136 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001137 unsigned long flags;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001138
1139 while (1) {
1140 spin_lock_irqsave(&rxq->lock, flags);
1141
1142 if (list_empty(&rxq->rx_used)) {
1143 spin_unlock_irqrestore(&rxq->lock, flags);
1144 return;
1145 }
1146
Zhu Yib481de92007-09-25 17:54:57 -07001147 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001148 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001149 list_del(element);
1150 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001151
1152 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001153 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001154 alloc_skb(priv->hw_params.rx_buf_size,
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001155 priority);
Zhu Yib481de92007-09-25 17:54:57 -07001156 if (!rxb->skb) {
1157 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001158 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001159 /* We don't reschedule replenish work here -- we will
1160 * call the restock method and if it still needs
1161 * more buffers it will schedule replenish */
1162 break;
1163 }
Zhu Yi12342c42007-12-20 11:27:32 +08001164
1165 /* If radiotap head is required, reserve some headroom here.
1166 * The physical head count is a variable rx_stats->phy_count.
1167 * We reserve 4 bytes here. Plus these extra bytes, the
1168 * headroom of the physical head should be enough for the
1169 * radiotap head that iwl3945 supported. See iwl3945_rt.
1170 */
1171 skb_reserve(rxb->skb, 4);
1172
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001173 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001174 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1175 rxb->skb->data,
1176 priv->hw_params.rx_buf_size,
1177 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001178
1179 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001180 list_add_tail(&rxb->list, &rxq->rx_free);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001181 priv->alloc_rxb_skb++;
Zhu Yib481de92007-09-25 17:54:57 -07001182 rxq->free_count++;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001183 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001184 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001185}
1186
Reinette Chatredf833b12009-04-21 10:55:48 -07001187void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1188{
1189 unsigned long flags;
1190 int i;
1191 spin_lock_irqsave(&rxq->lock, flags);
1192 INIT_LIST_HEAD(&rxq->rx_free);
1193 INIT_LIST_HEAD(&rxq->rx_used);
1194 /* Fill the rx_used queue with _all_ of the Rx buffers */
1195 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1196 /* In the reset function, these buffers may have been allocated
1197 * to an SKB, so we need to unmap and free potential storage */
1198 if (rxq->pool[i].skb != NULL) {
1199 pci_unmap_single(priv->pci_dev,
1200 rxq->pool[i].real_dma_addr,
1201 priv->hw_params.rx_buf_size,
1202 PCI_DMA_FROMDEVICE);
1203 priv->alloc_rxb_skb--;
1204 dev_kfree_skb(rxq->pool[i].skb);
1205 rxq->pool[i].skb = NULL;
1206 }
1207 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1208 }
1209
1210 /* Set us so that we have processed and used all buffers, but have
1211 * not restocked the Rx queue with fresh buffers */
1212 rxq->read = rxq->write = 0;
1213 rxq->free_count = 0;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001214 rxq->write_actual = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001215 spin_unlock_irqrestore(&rxq->lock, flags);
1216}
Reinette Chatredf833b12009-04-21 10:55:48 -07001217
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001218void iwl3945_rx_replenish(void *data)
1219{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001220 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001221 unsigned long flags;
1222
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001223 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001224
1225 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001226 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001227 spin_unlock_irqrestore(&priv->lock, flags);
1228}
1229
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001230static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1231{
1232 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1233
1234 iwl3945_rx_queue_restock(priv);
1235}
1236
1237
Reinette Chatredf833b12009-04-21 10:55:48 -07001238/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1239 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1240 * This free routine walks the list of POOL entries and if SKB is set to
1241 * non NULL it is unmapped and freed
1242 */
1243static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1244{
1245 int i;
1246 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1247 if (rxq->pool[i].skb != NULL) {
1248 pci_unmap_single(priv->pci_dev,
1249 rxq->pool[i].real_dma_addr,
1250 priv->hw_params.rx_buf_size,
1251 PCI_DMA_FROMDEVICE);
1252 dev_kfree_skb(rxq->pool[i].skb);
1253 }
1254 }
1255
1256 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1257 rxq->dma_addr);
1258 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1259 rxq->rb_stts, rxq->rb_stts_dma);
1260 rxq->bd = NULL;
1261 rxq->rb_stts = NULL;
1262}
Reinette Chatredf833b12009-04-21 10:55:48 -07001263
1264
Zhu Yib481de92007-09-25 17:54:57 -07001265/* Convert linear signal-to-noise ratio into dB */
1266static u8 ratio2dB[100] = {
1267/* 0 1 2 3 4 5 6 7 8 9 */
1268 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1269 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1270 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1271 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1272 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1273 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1274 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1275 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1276 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1277 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1278};
1279
1280/* Calculates a relative dB value from a ratio of linear
1281 * (i.e. not dB) signal levels.
1282 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001283int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001284{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001285 /* 1000:1 or higher just report as 60 dB */
1286 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001287 return 60;
1288
Adrian Bunk221c80c2008-02-02 23:19:01 +02001289 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001290 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001291 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001292 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001293
1294 /* We shouldn't see this */
1295 if (sig_ratio < 1)
1296 return 0;
1297
1298 /* Use table for ratios 1:1 - 99:1 */
1299 return (int)ratio2dB[sig_ratio];
1300}
1301
1302#define PERFECT_RSSI (-20) /* dBm */
1303#define WORST_RSSI (-95) /* dBm */
1304#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1305
1306/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1307 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1308 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001309int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001310{
1311 int sig_qual;
1312 int degradation = PERFECT_RSSI - rssi_dbm;
1313
1314 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1315 * as indicator; formula is (signal dbm - noise dbm).
1316 * SNR at or above 40 is a great signal (100%).
1317 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1318 * Weakest usable signal is usually 10 - 15 dB SNR. */
1319 if (noise_dbm) {
1320 if (rssi_dbm - noise_dbm >= 40)
1321 return 100;
1322 else if (rssi_dbm < noise_dbm)
1323 return 0;
1324 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1325
1326 /* Else use just the signal level.
1327 * This formula is a least squares fit of data points collected and
1328 * compared with a reference system that had a percentage (%) display
1329 * for signal quality. */
1330 } else
1331 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1332 (15 * RSSI_RANGE + 62 * degradation)) /
1333 (RSSI_RANGE * RSSI_RANGE);
1334
1335 if (sig_qual > 100)
1336 sig_qual = 100;
1337 else if (sig_qual < 1)
1338 sig_qual = 0;
1339
1340 return sig_qual;
1341}
1342
1343/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001344 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001345 *
1346 * Uses the priv->rx_handlers callback function array to invoke
1347 * the appropriate handlers, including command responses,
1348 * frame-received notifications, and other notifications.
1349 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001350static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001351{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001352 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001353 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001354 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001355 u32 r, i;
1356 int reclaim;
1357 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001358 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001359 u32 count = 8;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001360 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001361
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001362 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1363 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001364 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001365 i = rxq->read;
1366
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001367 /* calculate total frames need to be restock after handling RX */
1368 total_empty = r - priv->rxq.write_actual;
1369 if (total_empty < 0)
1370 total_empty += RX_QUEUE_SIZE;
1371
1372 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001373 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001374 /* Rx interrupt, but nothing sent from uCode */
1375 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001376 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001377
1378 while (i != r) {
1379 rxb = rxq->queue[i];
1380
Ben Cahill9fbab512007-11-29 11:09:47 +08001381 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001382 * then a bug has been introduced in the queue refilling
1383 * routines -- catch it here */
1384 BUG_ON(rxb == NULL);
1385
1386 rxq->queue[i] = NULL;
1387
Reinette Chatredf833b12009-04-21 10:55:48 -07001388 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1389 priv->hw_params.rx_buf_size,
1390 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001391 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001392
1393 /* Reclaim a command buffer only if this packet is a response
1394 * to a (driver-originated) command.
1395 * If the packet (e.g. Rx frame) originated from uCode,
1396 * there is no command buffer to reclaim.
1397 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1398 * but apparently a few don't get set; catch them here. */
1399 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1400 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1401 (pkt->hdr.cmd != REPLY_TX);
1402
1403 /* Based on type of command response or notification,
1404 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001405 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001406 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001407 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001408 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1409 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1410 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001411 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yib481de92007-09-25 17:54:57 -07001412 } else {
1413 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001414 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001415 "r %d i %d No handler needed for %s, 0x%02x\n",
1416 r, i, get_cmd_string(pkt->hdr.cmd),
1417 pkt->hdr.cmd);
1418 }
1419
1420 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001421 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001422 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001423 * as we reclaim the driver command queue */
1424 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001425 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001426 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001427 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001428 }
1429
1430 /* For now we just don't re-use anything. We can tweak this
1431 * later to try and re-use notification packets and SKBs that
1432 * fail to Rx correctly */
1433 if (rxb->skb != NULL) {
1434 priv->alloc_rxb_skb--;
1435 dev_kfree_skb_any(rxb->skb);
1436 rxb->skb = NULL;
1437 }
1438
Zhu Yib481de92007-09-25 17:54:57 -07001439 spin_lock_irqsave(&rxq->lock, flags);
1440 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1441 spin_unlock_irqrestore(&rxq->lock, flags);
1442 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001443 /* If there are a lot of unused frames,
1444 * restock the Rx queue so ucode won't assert. */
1445 if (fill_rx) {
1446 count++;
1447 if (count >= 8) {
1448 priv->rxq.read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001449 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001450 count = 0;
1451 }
1452 }
Zhu Yib481de92007-09-25 17:54:57 -07001453 }
1454
1455 /* Backtrack one entry */
1456 priv->rxq.read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001457 if (fill_rx)
1458 iwl3945_rx_replenish_now(priv);
1459 else
1460 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001461}
1462
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001463/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001464static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001465{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001466 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001467 synchronize_irq(priv->pci_dev->irq);
1468 tasklet_kill(&priv->irq_tasklet);
1469}
1470
Zhu Yib481de92007-09-25 17:54:57 -07001471static const char *desc_lookup(int i)
1472{
1473 switch (i) {
1474 case 1:
1475 return "FAIL";
1476 case 2:
1477 return "BAD_PARAM";
1478 case 3:
1479 return "BAD_CHECKSUM";
1480 case 4:
1481 return "NMI_INTERRUPT";
1482 case 5:
1483 return "SYSASSERT";
1484 case 6:
1485 return "FATAL_ERROR";
1486 }
1487
1488 return "UNKNOWN";
1489}
1490
1491#define ERROR_START_OFFSET (1 * sizeof(u32))
1492#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1493
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001494static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001495{
1496 u32 i;
1497 u32 desc, time, count, base, data1;
1498 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001499
1500 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1501
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001502 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001503 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001504 return;
1505 }
1506
Zhu Yib481de92007-09-25 17:54:57 -07001507
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001508 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001509
1510 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001511 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1512 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1513 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001514 }
1515
Winkler, Tomas15b16872008-12-19 10:37:33 +08001516 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001517 "ilink1 nmiPC Line\n");
1518 for (i = ERROR_START_OFFSET;
1519 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1520 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001521 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001522 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001523 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001524 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001525 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001526 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001527 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001528 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001529 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001530 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001531 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001532 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001533 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001534
Winkler, Tomas15b16872008-12-19 10:37:33 +08001535 IWL_ERR(priv,
1536 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1537 desc_lookup(desc), desc, time, blink1, blink2,
1538 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001539 }
1540
Zhu Yib481de92007-09-25 17:54:57 -07001541}
1542
Ben Cahillf58177b2007-11-29 11:09:43 +08001543#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001544
1545/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001546 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001547 *
Zhu Yib481de92007-09-25 17:54:57 -07001548 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001549static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001550 u32 num_events, u32 mode)
1551{
1552 u32 i;
1553 u32 base; /* SRAM byte address of event log header */
1554 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1555 u32 ptr; /* SRAM byte address of log data */
1556 u32 ev, time, data; /* event log data */
1557
1558 if (num_events == 0)
1559 return;
1560
1561 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1562
1563 if (mode == 0)
1564 event_size = 2 * sizeof(u32);
1565 else
1566 event_size = 3 * sizeof(u32);
1567
1568 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1569
1570 /* "time" is actually "data" for mode 0 (no timestamp).
1571 * place event id # at far right for easier visual parsing. */
1572 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001573 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001574 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001575 time = 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 if (mode == 0) {
1578 /* data, ev */
1579 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1580 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001581 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001582 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001583 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001584 }
1585 }
1586}
1587
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001588static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001589{
Zhu Yib481de92007-09-25 17:54:57 -07001590 u32 base; /* SRAM byte address of event log header */
1591 u32 capacity; /* event log capacity in # entries */
1592 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1593 u32 num_wraps; /* # times uCode wrapped to top of log */
1594 u32 next_entry; /* index of next entry to be written by uCode */
1595 u32 size; /* # entries that we'll print */
1596
1597 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001598 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001599 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001600 return;
1601 }
1602
Zhu Yib481de92007-09-25 17:54:57 -07001603 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001604 capacity = iwl_read_targ_mem(priv, base);
1605 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1606 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1607 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001608
1609 size = num_wraps ? capacity : next_entry;
1610
1611 /* bail out if nothing in log */
1612 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001613 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Zhu Yib481de92007-09-25 17:54:57 -07001614 return;
1615 }
1616
Winkler, Tomas15b16872008-12-19 10:37:33 +08001617 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001618 size, num_wraps);
1619
1620 /* if uCode has wrapped back to top of log, start at the oldest entry,
1621 * i.e the next one that uCode would fill. */
1622 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001623 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001624 capacity - next_entry, mode);
1625
1626 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001627 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001628
Zhu Yib481de92007-09-25 17:54:57 -07001629}
1630
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001631static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001632{
1633 u32 inta, handled = 0;
1634 u32 inta_fh;
1635 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001636#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001637 u32 inta_mask;
1638#endif
1639
1640 spin_lock_irqsave(&priv->lock, flags);
1641
1642 /* Ack/clear/reset pending uCode interrupts.
1643 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1644 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001645 inta = iwl_read32(priv, CSR_INT);
1646 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001647
1648 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1649 * Any new interrupts that happen after this, either while we're
1650 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001651 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1652 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001653
Samuel Ortizd08853a2009-01-23 13:45:17 -08001654#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001655 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001656 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001657 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001658 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001659 inta, inta_mask, inta_fh);
1660 }
1661#endif
1662
1663 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1664 * atomic, make sure that inta covers all the interrupts that
1665 * we've discovered, even if FH interrupt came in just after
1666 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001667 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001668 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001669 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001670 inta |= CSR_INT_BIT_FH_TX;
1671
1672 /* Now service all interrupt bits discovered above. */
1673 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001674 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001675
1676 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001677 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001678
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001679 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001680 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001681
1682 handled |= CSR_INT_BIT_HW_ERR;
1683
1684 spin_unlock_irqrestore(&priv->lock, flags);
1685
1686 return;
1687 }
1688
Samuel Ortizd08853a2009-01-23 13:45:17 -08001689#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001690 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001691 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001692 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001693 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001694 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001695 priv->isr_stats.sch++;
1696 }
Zhu Yib481de92007-09-25 17:54:57 -07001697
1698 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001699 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001700 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001701 priv->isr_stats.alive++;
1702 }
Zhu Yib481de92007-09-25 17:54:57 -07001703 }
1704#endif
1705 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001706 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001707
Zhu Yib481de92007-09-25 17:54:57 -07001708 /* Error detected by uCode */
1709 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001710 IWL_ERR(priv, "Microcode SW error detected. "
1711 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001712 priv->isr_stats.sw++;
1713 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001714 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001715 handled |= CSR_INT_BIT_SW_ERR;
1716 }
1717
1718 /* uCode wakes up after power-down sleep */
1719 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001720 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001721 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001722 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1723 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1724 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1725 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1726 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1727 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001728
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001729 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001730 handled |= CSR_INT_BIT_WAKEUP;
1731 }
1732
1733 /* All uCode command responses, including Tx command responses,
1734 * Rx "responses" (frame-received notification), and other
1735 * notifications from uCode come through here*/
1736 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001737 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001738 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001739 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1740 }
1741
1742 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001743 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001744 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001745
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001746 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001747 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1748 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001749 handled |= CSR_INT_BIT_FH_TX;
1750 }
1751
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001752 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001753 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001754 priv->isr_stats.unhandled++;
1755 }
Zhu Yib481de92007-09-25 17:54:57 -07001756
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001757 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001758 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001759 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001760 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001761 }
1762
1763 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001764 /* only Re-enable if disabled by irq */
1765 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001766 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001767
Samuel Ortizd08853a2009-01-23 13:45:17 -08001768#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001769 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001770 inta = iwl_read32(priv, CSR_INT);
1771 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1772 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001773 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001774 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1775 }
1776#endif
1777 spin_unlock_irqrestore(&priv->lock, flags);
1778}
1779
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001780static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001781 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001782 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001783 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001784{
Johannes Berg4e05c232009-06-19 13:52:44 -07001785 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001786 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001787 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001788 u16 passive_dwell = 0;
1789 u16 active_dwell = 0;
1790 int added, i;
1791
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001792 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001793 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001794 return 0;
1795
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001796 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1797 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001798
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001799 if (passive_dwell <= active_dwell)
1800 passive_dwell = active_dwell + 1;
1801
Johannes Berg4e05c232009-06-19 13:52:44 -07001802 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1803 chan = priv->scan_request->channels[i];
1804
1805 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001806 continue;
1807
Johannes Berg4e05c232009-06-19 13:52:44 -07001808 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001809
Samuel Ortize6148912009-01-23 13:45:15 -08001810 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001811 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001812 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001813 scan_ch->channel);
1814 continue;
1815 }
1816
Zhu Yib481de92007-09-25 17:54:57 -07001817 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1818 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001819 /* If passive , set up for auto-switch
1820 * and use long active_dwell time.
1821 */
1822 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001823 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001824 scan_ch->type = 0; /* passive */
1825 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1826 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1827 } else {
1828 scan_ch->type = 1; /* active */
1829 }
1830
1831 /* Set direct probe bits. These may be used both for active
1832 * scan channels (probes gets sent right away),
1833 * or for passive channels (probes get se sent only after
1834 * hearing clear Rx packet).*/
1835 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1836 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001837 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001838 } else {
1839 /* uCode v1 does not allow setting direct probe bits on
1840 * passive channel. */
1841 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001842 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001843 }
Zhu Yib481de92007-09-25 17:54:57 -07001844
Ben Cahill9fbab512007-11-29 11:09:47 +08001845 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001846 scan_ch->tpc.dsp_atten = 110;
1847 /* scan_pwr_info->tpc.dsp_atten; */
1848
1849 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001850 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001851 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1852 else {
1853 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1854 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001855 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001856 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001857 */
1858 }
1859
Tomas Winklere1623442009-01-27 14:27:56 -08001860 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001861 scan_ch->channel,
1862 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1863 (scan_ch->type & 1) ?
1864 active_dwell : passive_dwell);
1865
1866 scan_ch++;
1867 added++;
1868 }
1869
Tomas Winklere1623442009-01-27 14:27:56 -08001870 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001871 return added;
1872}
1873
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001874static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001875 struct ieee80211_rate *rates)
1876{
1877 int i;
1878
1879 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001880 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1881 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1882 rates[i].hw_value_short = i;
1883 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001884 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001885 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001886 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001887 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001888 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001889 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001890 }
Zhu Yib481de92007-09-25 17:54:57 -07001891 }
1892}
1893
Zhu Yib481de92007-09-25 17:54:57 -07001894/******************************************************************************
1895 *
1896 * uCode download functions
1897 *
1898 ******************************************************************************/
1899
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001900static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001901{
Tomas Winkler98c92212008-01-14 17:46:20 -08001902 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1903 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1904 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1905 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1906 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1907 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001908}
1909
1910/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001911 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001912 * looking at all data.
1913 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001914static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001915{
1916 u32 val;
1917 u32 save_len = len;
1918 int rc = 0;
1919 u32 errcnt;
1920
Tomas Winklere1623442009-01-27 14:27:56 -08001921 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001922
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001923 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001924 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07001925
1926 errcnt = 0;
1927 for (; len > 0; len -= sizeof(u32), image++) {
1928 /* read data comes through single port, auto-incr addr */
1929 /* NOTE: Use the debugless read so we don't flood kernel log
1930 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001931 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001932 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001933 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001934 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1935 save_len - len, val, le32_to_cpu(*image));
1936 rc = -EIO;
1937 errcnt++;
1938 if (errcnt >= 20)
1939 break;
1940 }
1941 }
1942
Zhu Yib481de92007-09-25 17:54:57 -07001943
1944 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08001945 IWL_DEBUG_INFO(priv,
1946 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07001947
1948 return rc;
1949}
1950
1951
1952/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001953 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001954 * using sample data 100 bytes apart. If these sample points are good,
1955 * it's a pretty good bet that everything between them is good, too.
1956 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001957static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001958{
1959 u32 val;
1960 int rc = 0;
1961 u32 errcnt = 0;
1962 u32 i;
1963
Tomas Winklere1623442009-01-27 14:27:56 -08001964 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001965
Zhu Yib481de92007-09-25 17:54:57 -07001966 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
1967 /* read data comes through single port, auto-incr addr */
1968 /* NOTE: Use the debugless read so we don't flood kernel log
1969 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001970 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001971 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001972 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001973 if (val != le32_to_cpu(*image)) {
1974#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001975 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001976 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1977 i, val, *image);
1978#endif
1979 rc = -EIO;
1980 errcnt++;
1981 if (errcnt >= 3)
1982 break;
1983 }
1984 }
1985
Zhu Yib481de92007-09-25 17:54:57 -07001986 return rc;
1987}
1988
1989
1990/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001991 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07001992 * and verify its contents
1993 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001994static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001995{
1996 __le32 *image;
1997 u32 len;
1998 int rc = 0;
1999
2000 /* Try bootstrap */
2001 image = (__le32 *)priv->ucode_boot.v_addr;
2002 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002003 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002004 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002005 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002006 return 0;
2007 }
2008
2009 /* Try initialize */
2010 image = (__le32 *)priv->ucode_init.v_addr;
2011 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002012 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002013 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002014 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002015 return 0;
2016 }
2017
2018 /* Try runtime/protocol */
2019 image = (__le32 *)priv->ucode_code.v_addr;
2020 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002021 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002022 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002023 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002024 return 0;
2025 }
2026
Winkler, Tomas15b16872008-12-19 10:37:33 +08002027 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002028
Ben Cahill9fbab512007-11-29 11:09:47 +08002029 /* Since nothing seems to match, show first several data entries in
2030 * instruction SRAM, so maybe visual inspection will give a clue.
2031 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002032 image = (__le32 *)priv->ucode_boot.v_addr;
2033 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002034 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002035
2036 return rc;
2037}
2038
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002039static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002040{
2041 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002042 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002043}
2044
2045/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002046 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002047 *
2048 * Copy into buffers for card to fetch via bus-mastering
2049 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002050static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002051{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002052 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002053 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002054 const struct firmware *ucode_raw;
2055 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002056 const char *name_pre = priv->cfg->fw_name_pre;
2057 const unsigned int api_max = priv->cfg->ucode_api_max;
2058 const unsigned int api_min = priv->cfg->ucode_api_min;
2059 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002060 u8 *src;
2061 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002062 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002063
2064 /* Ask kernel firmware_class module to get the boot firmware off disk.
2065 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002066 for (index = api_max; index >= api_min; index--) {
2067 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2068 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2069 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002070 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002071 buf, ret);
2072 if (ret == -ENOENT)
2073 continue;
2074 else
2075 goto error;
2076 } else {
2077 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002078 IWL_ERR(priv, "Loaded firmware %s, "
2079 "which is deprecated. "
2080 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002081 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002082 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2083 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002084 buf, ucode_raw->size);
2085 break;
2086 }
Zhu Yib481de92007-09-25 17:54:57 -07002087 }
2088
Reinette Chatrea0987a82008-12-02 12:14:06 -08002089 if (ret < 0)
2090 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002091
2092 /* Make sure that we got at least our header! */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002093 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002094 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002095 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002096 goto err_release;
2097 }
2098
2099 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002100 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002101
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002102 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002103 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002104 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2105 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2106 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2107 init_data_size =
2108 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2109 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2110 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002111
Reinette Chatrea0987a82008-12-02 12:14:06 -08002112 /* api_ver should match the api version forming part of the
2113 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002114 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002115
2116 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002117 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002118 "Driver supports v%u, firmware is v%u.\n",
2119 api_max, api_ver);
2120 priv->ucode_ver = 0;
2121 ret = -EINVAL;
2122 goto err_release;
2123 }
2124 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002125 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002126 "got %u. New firmware can be obtained "
2127 "from http://www.intellinuxwireless.org.\n",
2128 api_max, api_ver);
2129
Tomas Winkler978785a2008-12-19 10:37:31 +08002130 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2131 IWL_UCODE_MAJOR(priv->ucode_ver),
2132 IWL_UCODE_MINOR(priv->ucode_ver),
2133 IWL_UCODE_API(priv->ucode_ver),
2134 IWL_UCODE_SERIAL(priv->ucode_ver));
2135
Tomas Winklere1623442009-01-27 14:27:56 -08002136 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002137 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002138 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2139 inst_size);
2140 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2141 data_size);
2142 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2143 init_size);
2144 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2145 init_data_size);
2146 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2147 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002148
Reinette Chatrea0987a82008-12-02 12:14:06 -08002149
Zhu Yib481de92007-09-25 17:54:57 -07002150 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002151 if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002152 inst_size + data_size + init_size +
2153 init_data_size + boot_size) {
2154
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002155 IWL_DEBUG_INFO(priv,
2156 "uCode file size %zd does not match expected size\n",
2157 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002158 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002159 goto err_release;
2160 }
2161
2162 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002163 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002164 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002165 inst_size);
2166 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002167 goto err_release;
2168 }
2169
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002170 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002171 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002172 data_size);
2173 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002174 goto err_release;
2175 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002176 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002177 IWL_DEBUG_INFO(priv,
2178 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002179 init_size);
2180 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002181 goto err_release;
2182 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002183 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002184 IWL_DEBUG_INFO(priv,
2185 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002186 init_data_size);
2187 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002188 goto err_release;
2189 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002190 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002191 IWL_DEBUG_INFO(priv,
2192 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002193 boot_size);
2194 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002195 goto err_release;
2196 }
2197
2198 /* Allocate ucode buffers for card's bus-master loading ... */
2199
2200 /* Runtime instructions and 2 copies of data:
2201 * 1) unmodified from disk
2202 * 2) backup cache for save/restore during power-downs */
2203 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002204 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002205
2206 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002207 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002208
2209 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002210 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002211
2212 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002213 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002214 goto err_pci_alloc;
2215
Tomas Winkler90e759d2007-11-29 11:09:41 +08002216 /* Initialization instructions and data */
2217 if (init_size && init_data_size) {
2218 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002219 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002220
2221 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002222 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002223
2224 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2225 goto err_pci_alloc;
2226 }
2227
2228 /* Bootstrap (instructions only, no data) */
2229 if (boot_size) {
2230 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002231 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002232
2233 if (!priv->ucode_boot.v_addr)
2234 goto err_pci_alloc;
2235 }
2236
Zhu Yib481de92007-09-25 17:54:57 -07002237 /* Copy images into buffers for card's bus-master reads ... */
2238
2239 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002240 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002241 IWL_DEBUG_INFO(priv,
2242 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002243 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002244 src += len;
2245
Tomas Winklere1623442009-01-27 14:27:56 -08002246 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002247 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2248
2249 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002250 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002251 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002252 IWL_DEBUG_INFO(priv,
2253 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002254 memcpy(priv->ucode_data.v_addr, src, len);
2255 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002256 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002257
2258 /* Initialization instructions (3rd block) */
2259 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002260 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002261 IWL_DEBUG_INFO(priv,
2262 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002263 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002264 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002265 }
2266
2267 /* Initialization data (4th block) */
2268 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002269 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002270 IWL_DEBUG_INFO(priv,
2271 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002272 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002273 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002274 }
2275
2276 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002277 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002278 IWL_DEBUG_INFO(priv,
2279 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002280 memcpy(priv->ucode_boot.v_addr, src, len);
2281
2282 /* We have our copies now, allow OS release its copies */
2283 release_firmware(ucode_raw);
2284 return 0;
2285
2286 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002287 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002288 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002289 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002290
2291 err_release:
2292 release_firmware(ucode_raw);
2293
2294 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002295 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002296}
2297
2298
2299/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002300 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002301 *
2302 * Tell initialization uCode where to find runtime uCode.
2303 *
2304 * BSM registers initially contain pointers to initialization uCode.
2305 * We need to replace them to load runtime uCode inst and data,
2306 * and to save runtime data when powering down.
2307 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002308static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002309{
2310 dma_addr_t pinst;
2311 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002312
2313 /* bits 31:0 for 3945 */
2314 pinst = priv->ucode_code.p_addr;
2315 pdata = priv->ucode_data_backup.p_addr;
2316
Zhu Yib481de92007-09-25 17:54:57 -07002317 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002318 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2319 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2320 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002321 priv->ucode_data.len);
2322
Tomas Winklera96a27f2008-10-23 23:48:56 -07002323 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002324 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002325 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002326 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2327
Tomas Winklere1623442009-01-27 14:27:56 -08002328 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002329
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002330 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002331}
2332
2333/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002334 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002335 *
2336 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2337 *
Zhu Yib481de92007-09-25 17:54:57 -07002338 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002339 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002340static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002341{
2342 /* Check alive response for "valid" sign from uCode */
2343 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2344 /* We had an error bringing up the hardware, so take it
2345 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002346 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002347 goto restart;
2348 }
2349
2350 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2351 * This is a paranoid check, because we would not have gotten the
2352 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002353 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002354 /* Runtime instruction load was bad;
2355 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002356 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002357 goto restart;
2358 }
2359
2360 /* Send pointers to protocol/runtime uCode image ... init code will
2361 * load and launch runtime uCode, which will send us another "Alive"
2362 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002363 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002364 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002365 /* Runtime instruction load won't happen;
2366 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002367 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002368 goto restart;
2369 }
2370 return;
2371
2372 restart:
2373 queue_work(priv->workqueue, &priv->restart);
2374}
2375
Zhu Yib481de92007-09-25 17:54:57 -07002376/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002377 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002378 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002379 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002380 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002381static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002382{
Zhu Yib481de92007-09-25 17:54:57 -07002383 int thermal_spin = 0;
2384 u32 rfkill;
2385
Tomas Winklere1623442009-01-27 14:27:56 -08002386 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002387
2388 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2389 /* We had an error bringing up the hardware, so take it
2390 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002391 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002392 goto restart;
2393 }
2394
2395 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2396 * This is a paranoid check, because we would not have gotten the
2397 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002398 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002399 /* Runtime instruction load was bad;
2400 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002401 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002402 goto restart;
2403 }
2404
Tomas Winklerc587de02009-06-03 11:44:07 -07002405 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002406
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002407 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002408 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002409
2410 if (rfkill & 0x1) {
2411 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002412 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002413 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002414 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002415 thermal_spin++;
2416 udelay(10);
2417 }
2418
2419 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002420 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002421 thermal_spin * 10);
2422 } else
2423 set_bit(STATUS_RF_KILL_HW, &priv->status);
2424
Ben Cahill9fbab512007-11-29 11:09:47 +08002425 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002426 set_bit(STATUS_ALIVE, &priv->status);
2427
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002428 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002429 return;
2430
Johannes Berg36d68252008-05-15 12:55:26 +02002431 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002432
2433 priv->active_rate = priv->rates_mask;
2434 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2435
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002436 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002437
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002438 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002439 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002440 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002441
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002442 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002443 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2444 } else {
2445 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002446 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002447 }
2448
Ben Cahill9fbab512007-11-29 11:09:47 +08002449 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002450 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002451
2452 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002453 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002454
Zhu Yib481de92007-09-25 17:54:57 -07002455 iwl3945_reg_txpower_periodic(priv);
2456
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002457 iwl3945_led_register(priv);
2458
Tomas Winklere1623442009-01-27 14:27:56 -08002459 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002460 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002461 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002462
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002463 /* reassociate for ADHOC mode */
2464 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2465 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2466 priv->vif);
2467 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002468 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002469 }
2470
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002471 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002472 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002473
Zhu Yib481de92007-09-25 17:54:57 -07002474 return;
2475
2476 restart:
2477 queue_work(priv->workqueue, &priv->restart);
2478}
2479
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002480static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002481
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002482static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002483{
2484 unsigned long flags;
2485 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2486 struct ieee80211_conf *conf = NULL;
2487
Tomas Winklere1623442009-01-27 14:27:56 -08002488 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002489
2490 conf = ieee80211_get_hw_conf(priv->hw);
2491
2492 if (!exit_pending)
2493 set_bit(STATUS_EXIT_PENDING, &priv->status);
2494
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002495 iwl3945_led_unregister(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07002496 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002497
2498 /* Unblock any waiting calls */
2499 wake_up_interruptible_all(&priv->wait_command_queue);
2500
Zhu Yib481de92007-09-25 17:54:57 -07002501 /* Wipe out the EXIT_PENDING status bit if we are not actually
2502 * exiting the module */
2503 if (!exit_pending)
2504 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2505
2506 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002507 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002508
2509 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002510 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002511 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002512 spin_unlock_irqrestore(&priv->lock, flags);
2513 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002514
2515 if (priv->mac80211_registered)
2516 ieee80211_stop_queues(priv->hw);
2517
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002518 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002519 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002520 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002521 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2522 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002523 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2524 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002525 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2526 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002527 goto exit;
2528 }
2529
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002530 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002531 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002532 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2533 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002534 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2535 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002536 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002537 STATUS_FW_ERROR |
2538 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2539 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002540
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002541 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002542 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002543 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002544 spin_unlock_irqrestore(&priv->lock, flags);
2545
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002546 iwl3945_hw_txq_ctx_stop(priv);
2547 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002548
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002549 iwl_write_prph(priv, APMG_CLK_DIS_REG,
2550 APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002551
2552 udelay(5);
2553
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002554 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002555 priv->cfg->ops->lib->apm_ops.stop(priv);
2556 else
2557 priv->cfg->ops->lib->apm_ops.reset(priv);
2558
Zhu Yib481de92007-09-25 17:54:57 -07002559 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002560 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002561
2562 if (priv->ibss_beacon)
2563 dev_kfree_skb(priv->ibss_beacon);
2564 priv->ibss_beacon = NULL;
2565
2566 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002567 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002568}
2569
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002570static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002571{
2572 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002573 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002574 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002575
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002576 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002577}
2578
2579#define MAX_HW_RESTARTS 5
2580
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002581static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002582{
2583 int rc, i;
2584
2585 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002586 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002587 return -EIO;
2588 }
2589
Reinette Chatree903fbd2008-01-30 22:05:15 -08002590 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002591 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002592 return -EIO;
2593 }
2594
Zhu Yie655b9f2008-01-24 02:19:38 -08002595 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002596 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002597 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2598 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2599 else {
2600 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002601 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2602 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002603 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002604
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002605 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002606
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002607 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002608 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002609 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002610 return rc;
2611 }
2612
2613 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002614 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2615 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002616 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2617
2618 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002619 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002620 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002621
2622 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002623 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2624 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002625
2626 /* Copy original ucode data image from disk into backup cache.
2627 * This will be used to initialize the on-board processor's
2628 * data SRAM for a clean start when the runtime program first loads. */
2629 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002630 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002631
Zhu Yie655b9f2008-01-24 02:19:38 -08002632 /* We return success when we resume from suspend and rf_kill is on. */
2633 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2634 return 0;
2635
Zhu Yib481de92007-09-25 17:54:57 -07002636 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2637
Tomas Winklerc587de02009-06-03 11:44:07 -07002638 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002639
2640 /* load bootstrap state machine,
2641 * load bootstrap program into processor's memory,
2642 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002643 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002644
2645 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002646 IWL_ERR(priv,
2647 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002648 continue;
2649 }
2650
2651 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002652 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002653
Tomas Winklere1623442009-01-27 14:27:56 -08002654 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002655
2656 return 0;
2657 }
2658
2659 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002660 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002661 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002662
2663 /* tried to restart and config the device for as long as our
2664 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002665 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002666 return -EIO;
2667}
2668
2669
2670/*****************************************************************************
2671 *
2672 * Workqueue callbacks
2673 *
2674 *****************************************************************************/
2675
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002676static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002677{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002678 struct iwl_priv *priv =
2679 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002680
2681 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2682 return;
2683
2684 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002685 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002686 mutex_unlock(&priv->mutex);
2687}
2688
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002689static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002690{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002691 struct iwl_priv *priv =
2692 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002693
2694 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2695 return;
2696
2697 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002698 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002699 mutex_unlock(&priv->mutex);
2700}
2701
Helmut Schaa26635162009-01-15 09:38:44 +01002702static void iwl3945_rfkill_poll(struct work_struct *data)
2703{
2704 struct iwl_priv *priv =
2705 container_of(data, struct iwl_priv, rfkill_poll.work);
Helmut Schaa26635162009-01-15 09:38:44 +01002706
2707 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2708 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2709 else
2710 set_bit(STATUS_RF_KILL_HW, &priv->status);
2711
Johannes Berga60e77e2009-06-04 18:26:06 +02002712 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
2713 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa26635162009-01-15 09:38:44 +01002714
2715 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2716 round_jiffies_relative(2 * HZ));
2717
2718}
2719
Zhu Yib481de92007-09-25 17:54:57 -07002720#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002721static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002722{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002723 struct iwl_priv *priv =
2724 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002725 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002726 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002727 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002728 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002729 };
2730 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002731 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002732 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002733 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002734 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002735 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002736
2737 conf = ieee80211_get_hw_conf(priv->hw);
2738
2739 mutex_lock(&priv->mutex);
2740
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002741 cancel_delayed_work(&priv->scan_check);
2742
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002743 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002744 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002745 goto done;
2746 }
2747
Tomas Winklera96a27f2008-10-23 23:48:56 -07002748 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002749 * was given the chance to run... */
2750 if (!test_bit(STATUS_SCANNING, &priv->status))
2751 goto done;
2752
2753 /* This should never be called or scheduled if there is currently
2754 * a scan active in the hardware. */
2755 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002756 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2757 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002758 rc = -EIO;
2759 goto done;
2760 }
2761
2762 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002763 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002764 goto done;
2765 }
2766
2767 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002768 IWL_DEBUG_HC(priv,
2769 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002770 goto done;
2771 }
2772
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002773 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002774 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002775 goto done;
2776 }
2777
2778 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002779 IWL_DEBUG_HC(priv,
2780 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002781 goto done;
2782 }
2783
2784 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002785 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002786 goto done;
2787 }
2788
Winkler, Tomas805cee52009-01-19 15:30:28 -08002789 if (!priv->scan) {
2790 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07002791 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08002792 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07002793 rc = -ENOMEM;
2794 goto done;
2795 }
2796 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08002797 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002798 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002799
2800 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2801 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2802
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002803 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002804 u16 interval = 0;
2805 u32 extra;
2806 u32 suspend_time = 100;
2807 u32 scan_suspend_time = 100;
2808 unsigned long flags;
2809
Tomas Winklere1623442009-01-27 14:27:56 -08002810 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002811
2812 spin_lock_irqsave(&priv->lock, flags);
2813 interval = priv->beacon_int;
2814 spin_unlock_irqrestore(&priv->lock, flags);
2815
2816 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002817 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002818 if (!interval)
2819 interval = suspend_time;
2820 /*
2821 * suspend time format:
2822 * 0-19: beacon interval in usec (time before exec.)
2823 * 20-23: 0
2824 * 24-31: number of beacons (suspend between channels)
2825 */
2826
2827 extra = (suspend_time / interval) << 24;
2828 scan_suspend_time = 0xFF0FFFFF &
2829 (extra | ((suspend_time % interval) * 1024));
2830
2831 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002832 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002833 scan_suspend_time, interval);
2834 }
2835
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002836 if (priv->scan_request->n_ssids) {
2837 int i, p = 0;
2838 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2839 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2840 /* always does wildcard anyway */
2841 if (!priv->scan_request->ssids[i].ssid_len)
2842 continue;
2843 scan->direct_scan[p].id = WLAN_EID_SSID;
2844 scan->direct_scan[p].len =
2845 priv->scan_request->ssids[i].ssid_len;
2846 memcpy(scan->direct_scan[p].ssid,
2847 priv->scan_request->ssids[i].ssid,
2848 priv->scan_request->ssids[i].ssid_len);
2849 n_probes++;
2850 p++;
2851 }
2852 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002853 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002854 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002855
2856 /* We don't build a direct scan probe request; the uCode will do
2857 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002858 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002859 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002860 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2861
2862 /* flags + rate selection */
2863
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002864 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002865 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2866 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2867 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002868 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002869 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002870 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002871 /*
2872 * If active scaning is requested but a certain channel
2873 * is marked passive, we can do active scanning if we
2874 * detect transmissions.
2875 */
2876 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002877 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002878 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002879 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07002880 goto done;
2881 }
2882
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002883 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002884 iwl_fill_probe_req(priv,
2885 (struct ieee80211_mgmt *)scan->data,
2886 priv->scan_request->ie,
2887 priv->scan_request->ie_len,
2888 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002889
Zhu Yib481de92007-09-25 17:54:57 -07002890 /* select Rx antennas */
2891 scan->flags |= iwl3945_get_antenna_flags(priv);
2892
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07002893 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002894 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2895
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002896 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002897 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002898 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07002899
Reinette Chatre14b54332008-11-04 12:21:35 -08002900 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002901 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002902 goto done;
2903 }
2904
Zhu Yib481de92007-09-25 17:54:57 -07002905 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002906 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07002907 cmd.data = scan;
2908 scan->len = cpu_to_le16(cmd.len);
2909
2910 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08002911 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002912 if (rc)
2913 goto done;
2914
2915 queue_delayed_work(priv->workqueue, &priv->scan_check,
2916 IWL_SCAN_CHECK_WATCHDOG);
2917
2918 mutex_unlock(&priv->mutex);
2919 return;
2920
2921 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08002922 /* can not perform scan make sure we clear scanning
2923 * bits from status so next scan request can be performed.
2924 * if we dont clear scanning status bit here all next scan
2925 * will fail
2926 */
2927 clear_bit(STATUS_SCAN_HW, &priv->status);
2928 clear_bit(STATUS_SCANNING, &priv->status);
2929
Ian Schram01ebd062007-10-25 17:15:22 +08002930 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07002931 queue_work(priv->workqueue, &priv->scan_completed);
2932 mutex_unlock(&priv->mutex);
2933}
2934
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002935static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002936{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002937 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002938
2939 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2940 return;
2941
2942 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002943 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002944 mutex_unlock(&priv->mutex);
2945}
2946
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002947static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002948{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002949 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002950
2951 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2952 return;
2953
Johannes Berg19cc1082009-05-08 13:44:36 -07002954 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
2955 mutex_lock(&priv->mutex);
2956 priv->vif = NULL;
2957 priv->is_open = 0;
2958 mutex_unlock(&priv->mutex);
2959 iwl3945_down(priv);
2960 ieee80211_restart_hw(priv->hw);
2961 } else {
2962 iwl3945_down(priv);
2963 queue_work(priv->workqueue, &priv->up);
2964 }
Zhu Yib481de92007-09-25 17:54:57 -07002965}
2966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002967static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002968{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002969 struct iwl_priv *priv =
2970 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002971
2972 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2973 return;
2974
2975 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002976 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002977 mutex_unlock(&priv->mutex);
2978}
2979
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002980#define IWL_DELAY_NEXT_SCAN (HZ*2)
2981
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002982void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002983{
Zhu Yib481de92007-09-25 17:54:57 -07002984 int rc = 0;
2985 struct ieee80211_conf *conf = NULL;
2986
Johannes Berg05c914f2008-09-11 00:01:58 +02002987 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002988 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002989 return;
2990 }
2991
2992
Tomas Winklere1623442009-01-27 14:27:56 -08002993 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002994 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002995
2996 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2997 return;
2998
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002999 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003000 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003001
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003002 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003003
Zhu Yib481de92007-09-25 17:54:57 -07003004 conf = ieee80211_get_hw_conf(priv->hw);
3005
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003006 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003007 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003008
Tomas Winkler28afaf92008-12-19 10:37:06 +08003009 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003010 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003011 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003012 sizeof(priv->rxon_timing), &priv->rxon_timing);
3013 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003014 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003015 "Attempting to continue.\n");
3016
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003017 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003018
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003019 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003020
Tomas Winklere1623442009-01-27 14:27:56 -08003021 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003022 priv->assoc_id, priv->beacon_int);
3023
3024 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003025 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_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_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003028
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003029 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003030 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003031 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003032 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003033 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003034
Johannes Berg05c914f2008-09-11 00:01:58 +02003035 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003036 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003037
3038 }
3039
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003040 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003041
3042 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003043 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003044 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003045 break;
3046
Johannes Berg05c914f2008-09-11 00:01:58 +02003047 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003048
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003049 priv->assoc_id = 1;
Tomas Winklerc587de02009-06-03 11:44:07 -07003050 iwl_add_station(priv, priv->bssid, 0, CMD_SYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003051 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003052 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003053 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3054 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003055 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3056 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003057
3058 break;
3059
3060 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003061 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003062 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003063 break;
3064 }
3065
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003066 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003067
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003068 /* we have just associated, don't start scan too early */
3069 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003070}
3071
Zhu Yib481de92007-09-25 17:54:57 -07003072/*****************************************************************************
3073 *
3074 * mac80211 entry point functions
3075 *
3076 *****************************************************************************/
3077
Zhu Yi5a669262008-01-14 17:46:18 -08003078#define UCODE_READY_TIMEOUT (2 * HZ)
3079
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003080static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003081{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003082 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003083 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003084
Tomas Winklere1623442009-01-27 14:27:56 -08003085 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003086
3087 /* we should be verifying the device is ready to be opened */
3088 mutex_lock(&priv->mutex);
3089
Zhu Yi5a669262008-01-14 17:46:18 -08003090 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3091 * ucode filename and max sizes are card-specific. */
3092
3093 if (!priv->ucode_code.len) {
3094 ret = iwl3945_read_ucode(priv);
3095 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003096 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003097 mutex_unlock(&priv->mutex);
3098 goto out_release_irq;
3099 }
3100 }
3101
Zhu Yie655b9f2008-01-24 02:19:38 -08003102 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003103
Zhu Yib481de92007-09-25 17:54:57 -07003104 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003105
Zhu Yie655b9f2008-01-24 02:19:38 -08003106 if (ret)
3107 goto out_release_irq;
3108
Tomas Winklere1623442009-01-27 14:27:56 -08003109 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003110
Zhu Yi5a669262008-01-14 17:46:18 -08003111 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3112 * mac80211 will not be run successfully. */
3113 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3114 test_bit(STATUS_READY, &priv->status),
3115 UCODE_READY_TIMEOUT);
3116 if (!ret) {
3117 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003118 IWL_ERR(priv,
3119 "Wait for START_ALIVE timeout after %dms.\n",
3120 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003121 ret = -ETIMEDOUT;
3122 goto out_release_irq;
3123 }
3124 }
3125
Helmut Schaa26635162009-01-15 09:38:44 +01003126 /* ucode is running and will send rfkill notifications,
3127 * no need to poll the killswitch state anymore */
3128 cancel_delayed_work(&priv->rfkill_poll);
3129
Zhu Yie655b9f2008-01-24 02:19:38 -08003130 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003131 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003132 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003133
3134out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003135 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003136 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003137 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003138}
3139
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003140static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003141{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003142 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003143
Tomas Winklere1623442009-01-27 14:27:56 -08003144 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003145
Zhu Yie655b9f2008-01-24 02:19:38 -08003146 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003147 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003148 return;
3149 }
3150
Zhu Yib481de92007-09-25 17:54:57 -07003151 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003152
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003153 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003154 /* stop mac, cancel any scan request and clear
3155 * RXON_FILTER_ASSOC_MSK BIT
3156 */
Zhu Yi5a669262008-01-14 17:46:18 -08003157 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003158 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003159 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003160 }
3161
Zhu Yi5a669262008-01-14 17:46:18 -08003162 iwl3945_down(priv);
3163
3164 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003165
3166 /* start polling the killswitch state again */
3167 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3168 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003169
Tomas Winklere1623442009-01-27 14:27:56 -08003170 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003171}
3172
Johannes Berge039fa42008-05-15 12:55:29 +02003173static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003174{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003175 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003176
Tomas Winklere1623442009-01-27 14:27:56 -08003177 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003178
Tomas Winklere1623442009-01-27 14:27:56 -08003179 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003180 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003181
Johannes Berge039fa42008-05-15 12:55:29 +02003182 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003183 dev_kfree_skb_any(skb);
3184
Tomas Winklere1623442009-01-27 14:27:56 -08003185 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003186 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003187}
3188
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003189void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003190{
3191 int rc = 0;
3192
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003193 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003194 return;
3195
3196 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003197 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003198
3199 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003200 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003201 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003202
3203 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003204 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003205 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003206 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3207 sizeof(priv->rxon_timing),
3208 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003209 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003210 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003211 "Attempting to continue.\n");
3212
3213 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003214 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003215 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003216 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003217 RXON_FLG_SHORT_PREAMBLE_MSK;
3218 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003219 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003220 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3221
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003222 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003223 if (priv->assoc_capability &
3224 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003225 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003226 RXON_FLG_SHORT_SLOT_MSK;
3227 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003228 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003229 ~RXON_FLG_SHORT_SLOT_MSK;
3230
Johannes Berg05c914f2008-09-11 00:01:58 +02003231 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003232 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003233 ~RXON_FLG_SHORT_SLOT_MSK;
3234 }
3235 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003236 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003237 iwlcore_commit_rxon(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07003238 iwl_add_station(priv, iwl_bcast_addr, 0, CMD_SYNC, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003239 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003240 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003241
3242 /* FIXME - we need to add code here to detect a totally new
3243 * configuration, reset the AP, unassoc, rxon timing, assoc,
3244 * clear sta table, add BCAST sta... */
3245}
3246
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003247static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003248 struct ieee80211_vif *vif,
3249 struct ieee80211_sta *sta,
3250 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003251{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003252 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003253 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003254 int ret = 0;
3255 u8 sta_id = IWL_INVALID_STATION;
3256 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003257
Tomas Winklere1623442009-01-27 14:27:56 -08003258 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003259
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003260 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003261 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003262 return -EOPNOTSUPP;
3263 }
3264
Winkler, Tomas42986792009-01-19 15:30:22 -08003265 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003266 static_key = !iwl_is_associated(priv);
3267
3268 if (!static_key) {
Tomas Winklerc587de02009-06-03 11:44:07 -07003269 sta_id = iwl_find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003270 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003271 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003272 addr);
3273 return -EINVAL;
3274 }
Zhu Yib481de92007-09-25 17:54:57 -07003275 }
3276
3277 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003278 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003279 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003280
Zhu Yib481de92007-09-25 17:54:57 -07003281 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003282 case SET_KEY:
3283 if (static_key)
3284 ret = iwl3945_set_static_key(priv, key);
3285 else
3286 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3287 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003288 break;
3289 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003290 if (static_key)
3291 ret = iwl3945_remove_static_key(priv);
3292 else
3293 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3294 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003295 break;
3296 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003297 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003298 }
3299
Tomas Winklere1623442009-01-27 14:27:56 -08003300 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003301
Winkler, Tomas42986792009-01-19 15:30:22 -08003302 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003303}
3304
Zhu Yib481de92007-09-25 17:54:57 -07003305/*****************************************************************************
3306 *
3307 * sysfs attributes
3308 *
3309 *****************************************************************************/
3310
Samuel Ortizd08853a2009-01-23 13:45:17 -08003311#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003312
3313/*
3314 * The following adds a new attribute to the sysfs representation
3315 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3316 * used for controlling the debug level.
3317 *
3318 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003319 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003320 * The debug_level being managed using sysfs below is a per device debug
3321 * level that is used instead of the global debug level if it (the per
3322 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003323 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003324static ssize_t show_debug_level(struct device *d,
3325 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003326{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003327 struct iwl_priv *priv = dev_get_drvdata(d);
3328 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003329}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003330static ssize_t store_debug_level(struct device *d,
3331 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003332 const char *buf, size_t count)
3333{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003334 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003335 unsigned long val;
3336 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003337
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003338 ret = strict_strtoul(buf, 0, &val);
3339 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003340 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003341 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003342 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003343 if (iwl_alloc_traffic_mem(priv))
3344 IWL_ERR(priv,
3345 "Not enough memory to generate traffic log\n");
3346 }
Zhu Yib481de92007-09-25 17:54:57 -07003347 return strnlen(buf, count);
3348}
3349
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003350static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3351 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003352
Samuel Ortizd08853a2009-01-23 13:45:17 -08003353#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003354
Zhu Yib481de92007-09-25 17:54:57 -07003355static ssize_t show_temperature(struct device *d,
3356 struct device_attribute *attr, char *buf)
3357{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003358 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003359
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003360 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003361 return -EAGAIN;
3362
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003363 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003364}
3365
3366static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3367
Zhu Yib481de92007-09-25 17:54:57 -07003368static ssize_t show_tx_power(struct device *d,
3369 struct device_attribute *attr, char *buf)
3370{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003371 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003372 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003373}
3374
3375static ssize_t store_tx_power(struct device *d,
3376 struct device_attribute *attr,
3377 const char *buf, size_t count)
3378{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003379 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003380 char *p = (char *)buf;
3381 u32 val;
3382
3383 val = simple_strtoul(p, &p, 10);
3384 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003385 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003386 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003387 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003388
3389 return count;
3390}
3391
3392static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3393
3394static ssize_t show_flags(struct device *d,
3395 struct device_attribute *attr, char *buf)
3396{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003397 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003398
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003399 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003400}
3401
3402static ssize_t store_flags(struct device *d,
3403 struct device_attribute *attr,
3404 const char *buf, size_t count)
3405{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003406 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003407 u32 flags = simple_strtoul(buf, NULL, 0);
3408
3409 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003410 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003411 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003412 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003413 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003414 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003415 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003416 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003417 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003418 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003419 }
3420 }
3421 mutex_unlock(&priv->mutex);
3422
3423 return count;
3424}
3425
3426static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3427
3428static ssize_t show_filter_flags(struct device *d,
3429 struct device_attribute *attr, char *buf)
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
3433 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003434 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003435}
3436
3437static ssize_t store_filter_flags(struct device *d,
3438 struct device_attribute *attr,
3439 const char *buf, size_t count)
3440{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003441 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003442 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3443
3444 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003445 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003446 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003447 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003448 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003449 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003450 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003451 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003452 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003453 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003454 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003455 }
3456 }
3457 mutex_unlock(&priv->mutex);
3458
3459 return count;
3460}
3461
3462static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3463 store_filter_flags);
3464
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003465#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003466
3467static ssize_t show_measurement(struct device *d,
3468 struct device_attribute *attr, char *buf)
3469{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003470 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003471 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003472 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003473 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003474 unsigned long flags;
3475
3476 spin_lock_irqsave(&priv->lock, flags);
3477 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3478 spin_unlock_irqrestore(&priv->lock, flags);
3479 return 0;
3480 }
3481 memcpy(&measure_report, &priv->measure_report, size);
3482 priv->measurement_status = 0;
3483 spin_unlock_irqrestore(&priv->lock, flags);
3484
3485 while (size && (PAGE_SIZE - len)) {
3486 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3487 PAGE_SIZE - len, 1);
3488 len = strlen(buf);
3489 if (PAGE_SIZE - len)
3490 buf[len++] = '\n';
3491
3492 ofs += 16;
3493 size -= min(size, 16U);
3494 }
3495
3496 return len;
3497}
3498
3499static ssize_t store_measurement(struct device *d,
3500 struct device_attribute *attr,
3501 const char *buf, size_t count)
3502{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003503 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003504 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003505 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003506 .start_time = cpu_to_le64(priv->last_tsf),
3507 .duration = cpu_to_le16(1),
3508 };
3509 u8 type = IWL_MEASURE_BASIC;
3510 u8 buffer[32];
3511 u8 channel;
3512
3513 if (count) {
3514 char *p = buffer;
3515 strncpy(buffer, buf, min(sizeof(buffer), count));
3516 channel = simple_strtoul(p, NULL, 0);
3517 if (channel)
3518 params.channel = channel;
3519
3520 p = buffer;
3521 while (*p && *p != ' ')
3522 p++;
3523 if (*p)
3524 type = simple_strtoul(p + 1, NULL, 0);
3525 }
3526
Tomas Winklere1623442009-01-27 14:27:56 -08003527 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003528 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003529 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003530
3531 return count;
3532}
3533
3534static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3535 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003536#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003537
Zhu Yib481de92007-09-25 17:54:57 -07003538static ssize_t store_retry_rate(struct device *d,
3539 struct device_attribute *attr,
3540 const char *buf, size_t count)
3541{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003542 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003543
3544 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3545 if (priv->retry_rate <= 0)
3546 priv->retry_rate = 1;
3547
3548 return count;
3549}
3550
3551static ssize_t show_retry_rate(struct device *d,
3552 struct device_attribute *attr, char *buf)
3553{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003554 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003555 return sprintf(buf, "%d", priv->retry_rate);
3556}
3557
3558static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3559 store_retry_rate);
3560
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003561
Zhu Yib481de92007-09-25 17:54:57 -07003562static ssize_t show_channels(struct device *d,
3563 struct device_attribute *attr, char *buf)
3564{
Johannes Berg8318d782008-01-24 19:38:38 +01003565 /* all this shit doesn't belong into sysfs anyway */
3566 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003567}
3568
3569static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3570
3571static ssize_t show_statistics(struct device *d,
3572 struct device_attribute *attr, char *buf)
3573{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003574 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003575 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003576 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003577 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003578 int rc = 0;
3579
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003580 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003581 return -EAGAIN;
3582
3583 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003584 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003585 mutex_unlock(&priv->mutex);
3586
3587 if (rc) {
3588 len = sprintf(buf,
3589 "Error sending statistics request: 0x%08X\n", rc);
3590 return len;
3591 }
3592
3593 while (size && (PAGE_SIZE - len)) {
3594 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3595 PAGE_SIZE - len, 1);
3596 len = strlen(buf);
3597 if (PAGE_SIZE - len)
3598 buf[len++] = '\n';
3599
3600 ofs += 16;
3601 size -= min(size, 16U);
3602 }
3603
3604 return len;
3605}
3606
3607static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3608
3609static ssize_t show_antenna(struct device *d,
3610 struct device_attribute *attr, char *buf)
3611{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003612 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003613
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003614 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003615 return -EAGAIN;
3616
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003617 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003618}
3619
3620static ssize_t store_antenna(struct device *d,
3621 struct device_attribute *attr,
3622 const char *buf, size_t count)
3623{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003624 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003625 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003626
3627 if (count == 0)
3628 return 0;
3629
3630 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003631 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003632 return count;
3633 }
3634
3635 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003636 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003637 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003638 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003639 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003640
3641
3642 return count;
3643}
3644
3645static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3646
3647static ssize_t show_status(struct device *d,
3648 struct device_attribute *attr, char *buf)
3649{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003650 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003651 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003652 return -EAGAIN;
3653 return sprintf(buf, "0x%08x\n", (int)priv->status);
3654}
3655
3656static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3657
3658static ssize_t dump_error_log(struct device *d,
3659 struct device_attribute *attr,
3660 const char *buf, size_t count)
3661{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003662 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003663 char *p = (char *)buf;
3664
3665 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003666 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003667
3668 return strnlen(buf, count);
3669}
3670
3671static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3672
3673static ssize_t dump_event_log(struct device *d,
3674 struct device_attribute *attr,
3675 const char *buf, size_t count)
3676{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003677 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003678 char *p = (char *)buf;
3679
3680 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003681 iwl3945_dump_nic_event_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003682
3683 return strnlen(buf, count);
3684}
3685
3686static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
3687
3688/*****************************************************************************
3689 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003690 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003691 *
3692 *****************************************************************************/
3693
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003694static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003695{
Reinette Chatred21050c2009-02-13 11:51:18 -08003696 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003697
3698 init_waitqueue_head(&priv->wait_command_queue);
3699
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003700 INIT_WORK(&priv->up, iwl3945_bg_up);
3701 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3702 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003703 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003704 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3705 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003706 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003707 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3708 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3709 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3710 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003711
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003712 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003713
3714 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003715 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003716}
3717
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003718static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003719{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003720 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003721
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003722 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003723 cancel_delayed_work(&priv->scan_check);
3724 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003725 cancel_work_sync(&priv->beacon_update);
3726}
3727
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003728static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003729 &dev_attr_antenna.attr,
3730 &dev_attr_channels.attr,
3731 &dev_attr_dump_errors.attr,
3732 &dev_attr_dump_events.attr,
3733 &dev_attr_flags.attr,
3734 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003735#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003736 &dev_attr_measurement.attr,
3737#endif
Zhu Yib481de92007-09-25 17:54:57 -07003738 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003739 &dev_attr_statistics.attr,
3740 &dev_attr_status.attr,
3741 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003742 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003743#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003744 &dev_attr_debug_level.attr,
3745#endif
Zhu Yib481de92007-09-25 17:54:57 -07003746 NULL
3747};
3748
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003749static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003750 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003751 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003752};
3753
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003754static struct ieee80211_ops iwl3945_hw_ops = {
3755 .tx = iwl3945_mac_tx,
3756 .start = iwl3945_mac_start,
3757 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003758 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003759 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003760 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003761 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003762 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07003763 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003764 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003765 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003766 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08003767 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003768};
3769
Winkler, Tomase52119c2008-12-22 11:31:19 +08003770static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003771{
3772 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003773 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003774
3775 priv->retry_rate = 1;
3776 priv->ibss_beacon = NULL;
3777
3778 spin_lock_init(&priv->lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003779 spin_lock_init(&priv->sta_lock);
3780 spin_lock_init(&priv->hcmd_lock);
3781
3782 INIT_LIST_HEAD(&priv->free_frames);
3783
3784 mutex_init(&priv->mutex);
3785
3786 /* Clear the driver's (not device's) station table */
Tomas Winklerc587de02009-06-03 11:44:07 -07003787 iwl_clear_stations_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003788
3789 priv->data_retry_limit = -1;
3790 priv->ieee_channels = NULL;
3791 priv->ieee_rates = NULL;
3792 priv->band = IEEE80211_BAND_2GHZ;
3793
3794 priv->iw_mode = NL80211_IFTYPE_STATION;
3795
3796 iwl_reset_qos(priv);
3797
3798 priv->qos_data.qos_active = 0;
3799 priv->qos_data.qos_cap.val = 0;
3800
3801 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003802 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003803
Samuel Ortize6148912009-01-23 13:45:15 -08003804 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3805 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3806 eeprom->version);
3807 ret = -EINVAL;
3808 goto err;
3809 }
3810 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003811 if (ret) {
3812 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3813 goto err;
3814 }
3815
Samuel Ortize6148912009-01-23 13:45:15 -08003816 /* Set up txpower settings in driver for all channels */
3817 if (iwl3945_txpower_set_from_eeprom(priv)) {
3818 ret = -EIO;
3819 goto err_free_channel_map;
3820 }
3821
Samuel Ortiz534166d2009-01-23 13:45:16 -08003822 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003823 if (ret) {
3824 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3825 goto err_free_channel_map;
3826 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003827 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3828
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003829 return 0;
3830
3831err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003832 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003833err:
3834 return ret;
3835}
3836
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003837static int iwl3945_setup_mac(struct iwl_priv *priv)
3838{
3839 int ret;
3840 struct ieee80211_hw *hw = priv->hw;
3841
3842 hw->rate_control_algorithm = "iwl-3945-rs";
3843 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3844
3845 /* Tell mac80211 our characteristics */
3846 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07003847 IEEE80211_HW_NOISE_DBM |
Johannes Berge312c242009-08-07 15:41:51 -07003848 IEEE80211_HW_SPECTRUM_MGMT |
3849 IEEE80211_HW_SUPPORTS_PS |
3850 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003851
3852 hw->wiphy->interface_modes =
3853 BIT(NL80211_IFTYPE_STATION) |
3854 BIT(NL80211_IFTYPE_ADHOC);
3855
3856 hw->wiphy->custom_regulatory = true;
3857
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003858 /* Firmware does not support this */
3859 hw->wiphy->disable_beacon_hints = true;
3860
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003861 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3862 /* we create the 802.11 header and a zero-length SSID element */
3863 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003864
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003865 /* Default value; 4 EDCA QOS priorities */
3866 hw->queues = 4;
3867
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003868 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3869 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3870 &priv->bands[IEEE80211_BAND_2GHZ];
3871
3872 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3873 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3874 &priv->bands[IEEE80211_BAND_5GHZ];
3875
3876 ret = ieee80211_register_hw(priv->hw);
3877 if (ret) {
3878 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3879 return ret;
3880 }
3881 priv->mac80211_registered = 1;
3882
3883 return 0;
3884}
3885
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003886static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003887{
3888 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003889 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003890 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003891 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003892 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003893 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003894
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003895 /***********************
3896 * 1. Allocating HW data
3897 * ********************/
3898
Zhu Yib481de92007-09-25 17:54:57 -07003899 /* mac80211 allocates memory for this device instance, including
3900 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003901 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003902 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003903 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003904 err = -ENOMEM;
3905 goto out;
3906 }
Zhu Yib481de92007-09-25 17:54:57 -07003907 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003908 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003909
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003910 /*
3911 * Disabling hardware scan means that mac80211 will perform scans
3912 * "the hard way", rather than using device's scan.
3913 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003914 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003915 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003916 iwl3945_hw_ops.hw_scan = NULL;
3917 }
3918
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003919
Tomas Winklere1623442009-01-27 14:27:56 -08003920 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003921 priv->cfg = cfg;
3922 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003923 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003924
Samuel Ortizd08853a2009-01-23 13:45:17 -08003925#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003926 atomic_set(&priv->restrict_refcnt, 0);
3927#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003928 if (iwl_alloc_traffic_mem(priv))
3929 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003930
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003931 /***************************
3932 * 2. Initializing PCI bus
3933 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07003934 if (pci_enable_device(pdev)) {
3935 err = -ENODEV;
3936 goto out_ieee80211_free_hw;
3937 }
3938
3939 pci_set_master(pdev);
3940
Yang Hongyang284901a2009-04-06 19:01:15 -07003941 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003942 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07003943 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003944 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003945 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003946 goto out_pci_disable_device;
3947 }
3948
3949 pci_set_drvdata(pdev, priv);
3950 err = pci_request_regions(pdev, DRV_NAME);
3951 if (err)
3952 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003953
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003954 /***********************
3955 * 3. Read REV Register
3956 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07003957 priv->hw_base = pci_iomap(pdev, 0, 0);
3958 if (!priv->hw_base) {
3959 err = -ENODEV;
3960 goto out_pci_release_regions;
3961 }
3962
Tomas Winklere1623442009-01-27 14:27:56 -08003963 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07003964 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003965 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07003966
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003967 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3968 * PCI Tx retries from interfering with C3 CPU state */
3969 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07003970
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003971 /* this spin lock will be used in apm_ops.init and EEPROM access
3972 * we should init now
3973 */
3974 spin_lock_init(&priv->reg_lock);
3975
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003976 /* amp init */
3977 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003978 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07003979 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003980 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003981 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003982
3983 /***********************
3984 * 4. Read EEPROM
3985 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003986
Zhu Yi5a669262008-01-14 17:46:18 -08003987 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08003988 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003989 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003990 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08003991 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08003992 }
3993 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08003994 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
3995 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08003996 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08003997 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3998
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003999 /***********************
4000 * 5. Setup HW Constants
4001 * ********************/
4002 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004003 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004004 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004005 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004006 }
4007
4008 /***********************
4009 * 6. Setup priv
4010 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004011
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004012 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004013 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004014 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004015 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004016 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004017
Tomas Winkler978785a2008-12-19 10:37:31 +08004018 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4019 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004020
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004021 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004022 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004023 * ********************/
4024
4025 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004026 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004027 spin_unlock_irqrestore(&priv->lock, flags);
4028
Helmut Schaa26635162009-01-15 09:38:44 +01004029 pci_enable_msi(priv->pci_dev);
4030
Mohamed Abbasef850d72009-05-22 11:01:50 -07004031 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4032 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004033 if (err) {
4034 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4035 goto out_disable_msi;
4036 }
4037
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004038 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4039 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004040 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004041 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004042 }
4043
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004044 iwl_set_rxon_channel(priv,
4045 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004046 iwl3945_setup_deferred_work(priv);
4047 iwl3945_setup_rx_handlers(priv);
4048
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004049 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004050 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004051 * *******************************/
4052
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004053 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004054
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004055 err = iwl3945_setup_mac(priv);
4056 if (err)
4057 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004058
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004059 err = iwl_dbgfs_register(priv, DRV_NAME);
4060 if (err)
4061 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4062
Helmut Schaa26635162009-01-15 09:38:44 +01004063 /* Start monitoring the killswitch */
4064 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4065 2 * HZ);
4066
Zhu Yib481de92007-09-25 17:54:57 -07004067 return 0;
4068
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004069 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004070 destroy_workqueue(priv->workqueue);
4071 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004072 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4073 out_release_irq:
4074 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004075 out_disable_msi:
4076 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004077 iwlcore_free_geos(priv);
4078 iwl_free_channel_map(priv);
4079 out_unset_hw_params:
4080 iwl3945_unset_hw_params(priv);
4081 out_eeprom_free:
4082 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004083 out_iounmap:
4084 pci_iounmap(pdev, priv->hw_base);
4085 out_pci_release_regions:
4086 pci_release_regions(pdev);
4087 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004088 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004089 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004090 out_ieee80211_free_hw:
4091 ieee80211_free_hw(priv->hw);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004092 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004093 out:
4094 return err;
4095}
4096
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004097static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004098{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004099 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004100 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004101
4102 if (!priv)
4103 return;
4104
Tomas Winklere1623442009-01-27 14:27:56 -08004105 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004106
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004107 iwl_dbgfs_unregister(priv);
4108
Zhu Yib481de92007-09-25 17:54:57 -07004109 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004110
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004111 if (priv->mac80211_registered) {
4112 ieee80211_unregister_hw(priv->hw);
4113 priv->mac80211_registered = 0;
4114 } else {
4115 iwl3945_down(priv);
4116 }
Zhu Yib481de92007-09-25 17:54:57 -07004117
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004118 /* make sure we flush any pending irq or
4119 * tasklet for the driver
4120 */
4121 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004122 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004123 spin_unlock_irqrestore(&priv->lock, flags);
4124
4125 iwl_synchronize_irq(priv);
4126
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004127 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004128
Reinette Chatre71d449b2009-04-20 14:37:01 -07004129 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004130
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004131 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004132
4133 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004134 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004135 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004136
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004137 iwl3945_unset_hw_params(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07004138 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004139
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004140 /*netif_stop_queue(dev); */
4141 flush_workqueue(priv->workqueue);
4142
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004143 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004144 * priv->workqueue... so we can't take down the workqueue
4145 * until now... */
4146 destroy_workqueue(priv->workqueue);
4147 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004148 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004149
Helmut Schaa26635162009-01-15 09:38:44 +01004150 free_irq(pdev->irq, priv);
4151 pci_disable_msi(pdev);
4152
Zhu Yib481de92007-09-25 17:54:57 -07004153 pci_iounmap(pdev, priv->hw_base);
4154 pci_release_regions(pdev);
4155 pci_disable_device(pdev);
4156 pci_set_drvdata(pdev, NULL);
4157
Samuel Ortize6148912009-01-23 13:45:15 -08004158 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004159 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004160 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004161 if (priv->ibss_beacon)
4162 dev_kfree_skb(priv->ibss_beacon);
4163
4164 ieee80211_free_hw(priv->hw);
4165}
4166
Zhu Yib481de92007-09-25 17:54:57 -07004167
4168/*****************************************************************************
4169 *
4170 * driver and module entry point
4171 *
4172 *****************************************************************************/
4173
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004174static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004175 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004176 .id_table = iwl3945_hw_card_ids,
4177 .probe = iwl3945_pci_probe,
4178 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004179#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004180 .suspend = iwl_pci_suspend,
4181 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004182#endif
4183};
4184
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004185static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004186{
4187
4188 int ret;
4189 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4190 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004191
4192 ret = iwl3945_rate_control_register();
4193 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004194 printk(KERN_ERR DRV_NAME
4195 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004196 return ret;
4197 }
4198
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004199 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004200 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004201 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004202 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004203 }
Zhu Yib481de92007-09-25 17:54:57 -07004204
4205 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004206
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004207error_register:
4208 iwl3945_rate_control_unregister();
4209 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004210}
4211
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004212static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004213{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004214 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004215 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004216}
4217
Reinette Chatrea0987a82008-12-02 12:14:06 -08004218MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004219
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004220module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004221MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004222module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4223MODULE_PARM_DESC(swcrypto,
4224 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004225#ifdef CONFIG_IWLWIFI_DEBUG
4226module_param_named(debug, iwl_debug_level, uint, 0644);
Zhu Yib481de92007-09-25 17:54:57 -07004227MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004228#endif
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004229module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004230MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Samuel Ortizaf48d042009-01-23 13:45:19 -08004231module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4232MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4233
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004234module_exit(iwl3945_exit);
4235module_init(iwl3945_init);