blob: f339c5bd1fdecff5b272cb6461e184bffc5e4d4c [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080054#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-3945.h"
56#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080058#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070059
Zhu Yib481de92007-09-25 17:54:57 -070060/*
61 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070062 */
63
64#define DRV_DESCRIPTION \
65"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
66
Samuel Ortizd08853a2009-01-23 13:45:17 -080067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070068#define VD "d"
69#else
70#define VD
71#endif
72
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080073#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070074#define VS "s"
75#else
76#define VS
77#endif
78
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080079#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatre01f81622009-01-08 10:20:02 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080082#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
89
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080090 /* module parameters */
91struct iwl_mod_params iwl3945_mod_params = {
Reinette Chatre5905a1a2009-07-09 10:33:40 -070092 .num_of_queues = IWL39_NUM_QUEUES, /* Not used */
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080093 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080094 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080095 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -080099 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
100 * @priv: eeprom and antenna fields are used to determine antenna flags
101 *
102 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
103 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
104 *
105 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
106 * IWL_ANTENNA_MAIN - Force MAIN antenna
107 * IWL_ANTENNA_AUX - Force AUX antenna
108 */
109__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
110{
111 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
112
113 switch (iwl3945_mod_params.antenna) {
114 case IWL_ANTENNA_DIVERSITY:
115 return 0;
116
117 case IWL_ANTENNA_MAIN:
118 if (eeprom->antenna_switch_type)
119 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
120 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
121
122 case IWL_ANTENNA_AUX:
123 if (eeprom->antenna_switch_type)
124 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
125 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
126 }
127
128 /* bad antenna selector value */
129 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
130 iwl3945_mod_params.antenna);
131
132 return 0; /* "diversity" is default if error */
133}
134
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800135static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700136 struct ieee80211_key_conf *keyconf,
137 u8 sta_id)
138{
139 unsigned long flags;
140 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800141 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700142
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800143 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
144 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
145
146 if (sta_id == priv->hw_params.bcast_sta_id)
147 key_flags |= STA_KEY_MULTICAST_MSK;
148
149 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
150 keyconf->hw_key_idx = keyconf->keyidx;
151 key_flags &= ~STA_KEY_FLG_INVALID;
152
Zhu Yib481de92007-09-25 17:54:57 -0700153 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700154 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
155 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
156 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700157 keyconf->keylen);
158
Tomas Winklerc587de02009-06-03 11:44:07 -0700159 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700160 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800161
Tomas Winklerc587de02009-06-03 11:44:07 -0700162 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800163 == STA_KEY_FLG_NO_ENC)
Tomas Winklerc587de02009-06-03 11:44:07 -0700164 priv->stations[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800165 iwl_get_free_ucode_key_index(priv);
166 /* else, we are overriding an existing key => no need to allocated room
167 * in uCode. */
168
Tomas Winklerc587de02009-06-03 11:44:07 -0700169 WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800170 "no space for a new key");
171
Tomas Winklerc587de02009-06-03 11:44:07 -0700172 priv->stations[sta_id].sta.key.key_flags = key_flags;
173 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
174 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700175
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800176 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
177
Tomas Winklerc587de02009-06-03 11:44:07 -0700178 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800179
Zhu Yib481de92007-09-25 17:54:57 -0700180 spin_unlock_irqrestore(&priv->sta_lock, flags);
181
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800182 return ret;
183}
184
185static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
186 struct ieee80211_key_conf *keyconf,
187 u8 sta_id)
188{
189 return -EOPNOTSUPP;
190}
191
192static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
193 struct ieee80211_key_conf *keyconf,
194 u8 sta_id)
195{
196 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700197}
198
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800199static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700200{
201 unsigned long flags;
202
203 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700204 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
205 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800206 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700207 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
208 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
209 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700210 spin_unlock_irqrestore(&priv->sta_lock, flags);
211
Tomas Winklere1623442009-01-27 14:27:56 -0800212 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Tomas Winklerc587de02009-06-03 11:44:07 -0700213 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700214 return 0;
215}
216
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700217static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800218 struct ieee80211_key_conf *keyconf, u8 sta_id)
219{
220 int ret = 0;
221
222 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
223
224 switch (keyconf->alg) {
225 case ALG_CCMP:
226 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
227 break;
228 case ALG_TKIP:
229 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
230 break;
231 case ALG_WEP:
232 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
233 break;
234 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700235 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800236 ret = -EINVAL;
237 }
238
239 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
240 keyconf->alg, keyconf->keylen, keyconf->keyidx,
241 sta_id, ret);
242
243 return ret;
244}
245
246static int iwl3945_remove_static_key(struct iwl_priv *priv)
247{
248 int ret = -EOPNOTSUPP;
249
250 return ret;
251}
252
253static int iwl3945_set_static_key(struct iwl_priv *priv,
254 struct ieee80211_key_conf *key)
255{
256 if (key->alg == ALG_WEP)
257 return -EOPNOTSUPP;
258
259 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
260 return -EINVAL;
261}
262
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800263static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700264{
265 struct list_head *element;
266
Tomas Winklere1623442009-01-27 14:27:56 -0800267 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700268 priv->frames_count);
269
270 while (!list_empty(&priv->free_frames)) {
271 element = priv->free_frames.next;
272 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800273 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700274 priv->frames_count--;
275 }
276
277 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800278 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700279 priv->frames_count);
280 priv->frames_count = 0;
281 }
282}
283
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800284static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700285{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700287 struct list_head *element;
288 if (list_empty(&priv->free_frames)) {
289 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
290 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800291 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700292 return NULL;
293 }
294
295 priv->frames_count++;
296 return frame;
297 }
298
299 element = priv->free_frames.next;
300 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800301 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700302}
303
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800304static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700305{
306 memset(frame, 0, sizeof(*frame));
307 list_add(&frame->list, &priv->free_frames);
308}
309
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800310unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700311 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200312 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700313{
314
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800315 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200316 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
317 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700318 return 0;
319
320 if (priv->ibss_beacon->len > left)
321 return 0;
322
323 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
324
325 return priv->ibss_beacon->len;
326}
327
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800328static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700329{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800330 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700331 unsigned int frame_size;
332 int rc;
333 u8 rate;
334
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800335 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700336
337 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800338 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700339 "command.\n");
340 return -ENOMEM;
341 }
342
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800343 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700344
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800345 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700346
Samuel Ortiz518099a2009-01-19 15:30:27 -0800347 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700348 &frame->u.cmd[0]);
349
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800350 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700351
352 return rc;
353}
354
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800355static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700356{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800357 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700358 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800359 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800360 priv->shared_virt,
361 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700362}
363
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800364static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200365 struct ieee80211_tx_info *info,
Johannes Bergc2acea82009-07-24 11:13:05 -0700366 struct iwl_device_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700367 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800368 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700369{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800370 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerc587de02009-06-03 11:44:07 -0700371 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700372
373 switch (keyinfo->alg) {
374 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800375 tx->sec_ctl = TX_CMD_SEC_CCM;
376 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800377 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700378 break;
379
380 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700381 break;
382
383 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800384 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200385 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700386
387 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800388 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700389
Winkler, Tomase52119c2008-12-22 11:31:19 +0800390 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700391
Tomas Winklere1623442009-01-27 14:27:56 -0800392 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200393 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700394 break;
395
Zhu Yib481de92007-09-25 17:54:57 -0700396 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800397 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700398 break;
399 }
400}
401
402/*
403 * handle build REPLY_TX command notification.
404 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800405static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Johannes Bergc2acea82009-07-24 11:13:05 -0700406 struct iwl_device_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200407 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800408 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700409{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800410 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
411 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700412 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200413 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -0700414
Winkler, Tomase52119c2008-12-22 11:31:19 +0800415 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200416 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700417 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700418 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700419 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700420 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700421 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
422 tx_flags |= TX_CMD_FLG_TSF_MSK;
423 } else {
424 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
425 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
426 }
427
Winkler, Tomase52119c2008-12-22 11:31:19 +0800428 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700429 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700430 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
431
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700432 if (ieee80211_is_data_qos(fc)) {
433 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800434 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700435 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800436 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700437 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800438 }
Zhu Yib481de92007-09-25 17:54:57 -0700439
Johannes Berge6a98542008-10-21 12:40:02 +0200440 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -0700441 tx_flags |= TX_CMD_FLG_RTS_MSK;
442 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +0200443 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -0700444 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
445 tx_flags |= TX_CMD_FLG_CTS_MSK;
446 }
447
448 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
449 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
450
451 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700452 if (ieee80211_is_mgmt(fc)) {
453 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +0800454 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700455 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800456 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700457 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +0800458 tx->timeout.pm_frame_timeout = 0;
Abhijeet Kolekar5c8df2d2009-03-11 11:17:55 -0700459#ifdef CONFIG_IWLWIFI_LEDS
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700460 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
461#endif
462 }
Zhu Yib481de92007-09-25 17:54:57 -0700463
Winkler, Tomase52119c2008-12-22 11:31:19 +0800464 tx->driver_txop = 0;
465 tx->tx_flags = tx_flags;
466 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700467}
468
Zhu Yib481de92007-09-25 17:54:57 -0700469/*
470 * start REPLY_TX command process
471 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800472static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700473{
474 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200475 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800476 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800477 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800478 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700479 struct iwl_device_cmd *out_cmd;
480 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700481 dma_addr_t phys_addr;
482 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800483 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700484 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800485 u8 id;
486 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700487 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800488 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700489 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700490 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700491 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800492 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700493 unsigned long flags;
494 int rc;
495
496 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800497 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800498 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700499 goto drop_unlock;
500 }
501
Johannes Berge039fa42008-05-15 12:55:29 +0200502 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800503 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700504 goto drop_unlock;
505 }
506
507 unicast = !is_multicast_ether_addr(hdr->addr1);
508 id = 0;
509
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700510 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700511
Samuel Ortizd08853a2009-01-23 13:45:17 -0800512#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700513 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800514 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700515 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800516 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700517 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800518 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700519#endif
520
Mohamed Abbas7878a5a2007-11-29 11:10:13 +0800521 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800522 if (ieee80211_is_data(fc) &&
Wey-Yi Guy279b05d2009-04-20 14:37:00 -0700523 (!iwl_is_monitor_mode(priv)) && /* packet injection */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800524 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200525 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800526 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700527 goto drop_unlock;
528 }
529
530 spin_unlock_irqrestore(&priv->lock, flags);
531
Harvey Harrison7294ec92008-07-15 18:43:59 -0700532 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800533
534 /* Find (or create) index into station table for destination station */
Abhijeet Kolekarf5d30262009-04-08 11:26:43 -0700535 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700536 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800537 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700538 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700539 goto drop;
540 }
541
Tomas Winklere1623442009-01-27 14:27:56 -0800542 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700543
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700544 if (ieee80211_is_data_qos(fc)) {
545 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700546 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700547 if (unlikely(tid >= MAX_TID_COUNT))
548 goto drop;
Tomas Winklerc587de02009-06-03 11:44:07 -0700549 seq_number = priv->stations[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700550 IEEE80211_SCTL_SEQ;
551 hdr->seq_ctrl = cpu_to_le16(seq_number) |
552 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800553 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700554 seq_number += 0x10;
555 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800556
557 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800558 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700559 q = &txq->q;
560
561 spin_lock_irqsave(&priv->lock, flags);
562
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800563 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700564
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800565 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800566 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800567 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800568
569 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800570 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700571 out_meta = &txq->meta[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +0800572 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700573 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +0800574 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800575
576 /*
577 * Set up the Tx-command (not MAC!) header.
578 * Store the chosen Tx queue and TFD index within the sequence field;
579 * after Tx, uCode's Tx response will return this value so driver can
580 * locate the frame within the tx queue and do post-tx processing.
581 */
Zhu Yib481de92007-09-25 17:54:57 -0700582 out_cmd->hdr.cmd = REPLY_TX;
583 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800584 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800585
586 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800587 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700588
Reinette Chatredf833b12009-04-21 10:55:48 -0700589
590 if (info->control.hw_key)
591 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
592
593 /* TODO need this for burst mode later on */
594 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
595
596 /* set is_hcca to 0; it probably will never be implemented */
597 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
598
599 /* Total # bytes to be transmitted */
600 len = (u16)skb->len;
601 tx->len = cpu_to_le16(len);
602
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700603 iwl_dbg_log_tx_data_frame(priv, len, hdr);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700604 iwl_update_stats(priv, true, fc, len);
Reinette Chatredf833b12009-04-21 10:55:48 -0700605 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
606 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
607
608 if (!ieee80211_has_morefrags(hdr->frame_control)) {
609 txq->need_update = 1;
610 if (qc)
Tomas Winklerc587de02009-06-03 11:44:07 -0700611 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Reinette Chatredf833b12009-04-21 10:55:48 -0700612 } else {
613 wait_write_ptr = 1;
614 txq->need_update = 0;
615 }
616
617 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
618 le16_to_cpu(out_cmd->hdr.sequence));
619 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags));
Reinette Chatre3d816c72009-08-07 15:41:37 -0700620 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
621 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700622 ieee80211_hdrlen(fc));
623
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800624 /*
625 * Use the first empty entry in this queue's command buffer array
626 * to contain the Tx command and MAC header concatenated together
627 * (payload data will be in another buffer).
628 * Size of this varies, due to varying MAC header length.
629 * If end is not dword aligned, we'll have 2 extra bytes at the end
630 * of the MAC header (device reads on dword boundaries).
631 * We'll tell device about this padding later.
632 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800633 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800634 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700635
636 len_org = len;
637 len = (len + 3) & ~3;
638
639 if (len_org != len)
640 len_org = 1;
641 else
642 len_org = 0;
643
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800644 /* Physical address of this Tx command's header (not MAC header!),
645 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700646 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
647 len, PCI_DMA_TODEVICE);
648 /* we do not map meta data ... so we can safely access address to
649 * provide to unmap command*/
Johannes Bergc2acea82009-07-24 11:13:05 -0700650 pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
651 pci_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700652
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800653 /* Add buffer containing Tx command and MAC(!) header to TFD's
654 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800655 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
656 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700657
Zhu Yib481de92007-09-25 17:54:57 -0700658
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800659 /* Set up TFD's 2nd entry to point directly to remainder of skb,
660 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700661 len = skb->len - hdr_len;
662 if (len) {
663 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
664 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800665 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
666 phys_addr, len,
667 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700668 }
669
Zhu Yib481de92007-09-25 17:54:57 -0700670
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800671 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800672 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800673 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700674 spin_unlock_irqrestore(&priv->lock, flags);
675
676 if (rc)
677 return rc;
678
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800679 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700680 && priv->mac80211_registered) {
681 if (wait_write_ptr) {
682 spin_lock_irqsave(&priv->lock, flags);
683 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800684 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700685 spin_unlock_irqrestore(&priv->lock, flags);
686 }
687
Johannes Berge4e72fb2009-03-23 17:28:42 +0100688 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700689 }
690
691 return 0;
692
693drop_unlock:
694 spin_unlock_irqrestore(&priv->lock, flags);
695drop:
696 return -1;
697}
698
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800699#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700700
701#include "iwl-spectrum.h"
702
703#define BEACON_TIME_MASK_LOW 0x00FFFFFF
704#define BEACON_TIME_MASK_HIGH 0xFF000000
705#define TIME_UNIT 1024
706
707/*
708 * extended beacon time format
709 * time in usec will be changed into a 32-bit value in 8:24 format
710 * the high 1 byte is the beacon counts
711 * the lower 3 bytes is the time in usec within one beacon interval
712 */
713
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800714static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700715{
716 u32 quot;
717 u32 rem;
718 u32 interval = beacon_interval * 1024;
719
720 if (!interval || !usec)
721 return 0;
722
723 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
724 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
725
726 return (quot << 24) + rem;
727}
728
729/* base is usually what we get from ucode with each received frame,
730 * the same as HW timer counter counting down
731 */
732
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800733static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700734{
735 u32 base_low = base & BEACON_TIME_MASK_LOW;
736 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
737 u32 interval = beacon_interval * TIME_UNIT;
738 u32 res = (base & BEACON_TIME_MASK_HIGH) +
739 (addon & BEACON_TIME_MASK_HIGH);
740
741 if (base_low > addon_low)
742 res += base_low - addon_low;
743 else if (base_low < addon_low) {
744 res += interval + base_low - addon_low;
745 res += (1 << 24);
746 } else
747 res += (1 << 24);
748
749 return cpu_to_le32(res);
750}
751
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800752static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700753 struct ieee80211_measurement_params *params,
754 u8 type)
755{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800756 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800757 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800758 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700759 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
760 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700761 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700762 };
763 u32 add_time = le64_to_cpu(params->start_time);
764 int rc;
765 int spectrum_resp_status;
766 int duration = le16_to_cpu(params->duration);
767
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800768 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700769 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800770 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700771 le64_to_cpu(params->start_time) - priv->last_tsf,
772 le16_to_cpu(priv->rxon_timing.beacon_interval));
773
774 memset(&spectrum, 0, sizeof(spectrum));
775
776 spectrum.channel_count = cpu_to_le16(1);
777 spectrum.flags =
778 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
779 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
780 cmd.len = sizeof(spectrum);
781 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
782
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800783 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700784 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800785 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700786 add_time,
787 le16_to_cpu(priv->rxon_timing.beacon_interval));
788 else
789 spectrum.start_time = 0;
790
791 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
792 spectrum.channels[0].channel = params->channel;
793 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800794 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700795 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
796 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
797
Samuel Ortiz518099a2009-01-19 15:30:27 -0800798 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700799 if (rc)
800 return rc;
801
Johannes Bergc2acea82009-07-24 11:13:05 -0700802 res = (struct iwl_rx_packet *)cmd.reply_skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700803 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800804 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700805 rc = -EIO;
806 }
807
808 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
809 switch (spectrum_resp_status) {
810 case 0: /* Command will be handled */
811 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800812 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +0800813 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700814 priv->measurement_status &= ~MEASUREMENT_READY;
815 }
816 priv->measurement_status |= MEASUREMENT_ACTIVE;
817 rc = 0;
818 break;
819
820 case 1: /* Command will not be handled */
821 rc = -EAGAIN;
822 break;
823 }
824
Johannes Bergc2acea82009-07-24 11:13:05 -0700825 dev_kfree_skb_any(cmd.reply_skb);
Zhu Yib481de92007-09-25 17:54:57 -0700826
827 return rc;
828}
829#endif
830
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800831static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800832 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700833{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800834 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
835 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700836 struct delayed_work *pwork;
837
838 palive = &pkt->u.alive_frame;
839
Tomas Winklere1623442009-01-27 14:27:56 -0800840 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700841 "0x%01X 0x%01X\n",
842 palive->is_valid, palive->ver_type,
843 palive->ver_subtype);
844
845 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800846 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800847 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
848 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700849 pwork = &priv->init_alive_start;
850 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800851 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700852 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800853 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700854 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800855 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700856 }
857
858 /* We delay the ALIVE response by 5ms to
859 * give the HW RF Kill time to activate... */
860 if (palive->is_valid == UCODE_VALID_OK)
861 queue_delayed_work(priv->workqueue, pwork,
862 msecs_to_jiffies(5));
863 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800864 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700865}
866
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800867static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800868 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700869{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100870#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800871 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +0100872#endif
Zhu Yib481de92007-09-25 17:54:57 -0700873
Tomas Winklere1623442009-01-27 14:27:56 -0800874 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700875 return;
876}
877
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800878static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700879{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800880 struct iwl_priv *priv =
881 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700882 struct sk_buff *beacon;
883
884 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200885 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700886
887 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800888 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700889 return;
890 }
891
892 mutex_lock(&priv->mutex);
893 /* new beacon skb is allocated every time; dispose previous.*/
894 if (priv->ibss_beacon)
895 dev_kfree_skb(priv->ibss_beacon);
896
897 priv->ibss_beacon = beacon;
898 mutex_unlock(&priv->mutex);
899
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800900 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700901}
902
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800903static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800904 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700905{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800906#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800907 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800908 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700909 u8 rate = beacon->beacon_notify_hdr.rate;
910
Tomas Winklere1623442009-01-27 14:27:56 -0800911 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700912 "tsf %d %d rate %d\n",
913 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
914 beacon->beacon_notify_hdr.failure_frame,
915 le32_to_cpu(beacon->ibss_mgr_status),
916 le32_to_cpu(beacon->high_tsf),
917 le32_to_cpu(beacon->low_tsf), rate);
918#endif
919
Johannes Berg05c914f2008-09-11 00:01:58 +0200920 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700921 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
922 queue_work(priv->workqueue, &priv->beacon_update);
923}
924
Zhu Yib481de92007-09-25 17:54:57 -0700925/* Handle notification from uCode that card's power state is changing
926 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800927static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800928 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700929{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800930 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700931 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
932 unsigned long status = priv->status;
933
Reinette Chatre4c423a22009-07-17 09:30:26 -0700934 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700935 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
936 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
937
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800938 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700939 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
940
941 if (flags & HW_CARD_DISABLED)
942 set_bit(STATUS_RF_KILL_HW, &priv->status);
943 else
944 clear_bit(STATUS_RF_KILL_HW, &priv->status);
945
946
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800947 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700948
949 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200950 test_bit(STATUS_RF_KILL_HW, &priv->status)))
951 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
952 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700953 else
954 wake_up_interruptible(&priv->wait_command_queue);
955}
956
957/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800958 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700959 *
960 * Setup the RX handlers for each of the reply types sent from the uCode
961 * to the host.
962 *
963 * This function chains into the hardware specific files for them to setup
964 * any hardware specific handlers as well.
965 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800966static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700967{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800968 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
969 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800970 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800971 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800972 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700973 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800974 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800975 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700976
Ben Cahill9fbab512007-11-29 11:09:47 +0800977 /*
978 * The same handler is used for both the REPLY to a discrete
979 * statistics request from the host as well as for the periodic
980 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700981 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800982 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
983 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700984
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800985 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800986 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800987 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700988
Ben Cahill9fbab512007-11-29 11:09:47 +0800989 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800990 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700991}
992
Zhu Yib481de92007-09-25 17:54:57 -0700993/************************** RX-FUNCTIONS ****************************/
994/*
995 * Rx theory of operation
996 *
997 * The host allocates 32 DMA target addresses and passes the host address
998 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
999 * 0 to 31
1000 *
1001 * Rx Queue Indexes
1002 * The host/firmware share two index registers for managing the Rx buffers.
1003 *
1004 * The READ index maps to the first position that the firmware may be writing
1005 * to -- the driver can read up to (but not including) this position and get
1006 * good data.
1007 * The READ index is managed by the firmware once the card is enabled.
1008 *
1009 * The WRITE index maps to the last position the driver has read from -- the
1010 * position preceding WRITE is the last slot the firmware can place a packet.
1011 *
1012 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1013 * WRITE = READ.
1014 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001015 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001016 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1017 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001018 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001019 * and fire the RX interrupt. The driver can then query the READ index and
1020 * process as many packets as possible, moving the WRITE index forward as it
1021 * resets the Rx queue buffers with new memory.
1022 *
1023 * The management in the driver is as follows:
1024 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1025 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001026 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001027 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001028 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1029 * 'processed' and 'read' driver indexes as well)
1030 * + A received packet is processed and handed to the kernel network stack,
1031 * detached from the iwl->rxq. The driver 'processed' index is updated.
1032 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1033 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1034 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1035 * were enough free buffers and RX_STALLED is set it is cleared.
1036 *
1037 *
1038 * Driver sequence:
1039 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001040 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001041 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001042 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001043 * queue, updates firmware pointers, and updates
1044 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001045 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001046 *
1047 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001048 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001049 * READ INDEX, detaching the SKB from the pool.
1050 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001051 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001052 * slots.
1053 * ...
1054 *
1055 */
1056
1057/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001058 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001059 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001060static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001061 dma_addr_t dma_addr)
1062{
1063 return cpu_to_le32((u32)dma_addr);
1064}
1065
1066/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001067 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001068 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001069 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001070 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001071 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001072 *
1073 * This moves the 'write' index forward to catch up with 'processed', and
1074 * also updates the memory address in the firmware to reference the new
1075 * target buffer.
1076 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001077static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001078{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001079 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001080 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001081 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001082 unsigned long flags;
1083 int write, rc;
1084
1085 spin_lock_irqsave(&rxq->lock, flags);
1086 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001087 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001088 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001089 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001090 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001091 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001092
1093 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001094 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001095 rxq->queue[rxq->write] = rxb;
1096 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1097 rxq->free_count--;
1098 }
1099 spin_unlock_irqrestore(&rxq->lock, flags);
1100 /* If the pre-allocated buffer pool is dropping low, schedule to
1101 * refill it */
1102 if (rxq->free_count <= RX_LOW_WATERMARK)
1103 queue_work(priv->workqueue, &priv->rx_replenish);
1104
1105
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001106 /* If we've added more space for the firmware to place data, tell it.
1107 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001108 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001109 || (abs(rxq->write - rxq->read) > 7)) {
1110 spin_lock_irqsave(&rxq->lock, flags);
1111 rxq->need_update = 1;
1112 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001113 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001114 if (rc)
1115 return rc;
1116 }
1117
1118 return 0;
1119}
1120
1121/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001122 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001123 *
1124 * When moving to rx_free an SKB is allocated for the slot.
1125 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001126 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001127 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001128 */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001129static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001130{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001131 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001132 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001133 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001134 unsigned long flags;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001135
1136 while (1) {
1137 spin_lock_irqsave(&rxq->lock, flags);
1138
1139 if (list_empty(&rxq->rx_used)) {
1140 spin_unlock_irqrestore(&rxq->lock, flags);
1141 return;
1142 }
1143
Zhu Yib481de92007-09-25 17:54:57 -07001144 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001145 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001146 list_del(element);
1147 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001148
1149 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001150 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001151 alloc_skb(priv->hw_params.rx_buf_size,
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001152 priority);
Zhu Yib481de92007-09-25 17:54:57 -07001153 if (!rxb->skb) {
1154 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001155 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001156 /* We don't reschedule replenish work here -- we will
1157 * call the restock method and if it still needs
1158 * more buffers it will schedule replenish */
1159 break;
1160 }
Zhu Yi12342c42007-12-20 11:27:32 +08001161
1162 /* If radiotap head is required, reserve some headroom here.
1163 * The physical head count is a variable rx_stats->phy_count.
1164 * We reserve 4 bytes here. Plus these extra bytes, the
1165 * headroom of the physical head should be enough for the
1166 * radiotap head that iwl3945 supported. See iwl3945_rt.
1167 */
1168 skb_reserve(rxb->skb, 4);
1169
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001170 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001171 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1172 rxb->skb->data,
1173 priv->hw_params.rx_buf_size,
1174 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001175
1176 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001177 list_add_tail(&rxb->list, &rxq->rx_free);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001178 priv->alloc_rxb_skb++;
Zhu Yib481de92007-09-25 17:54:57 -07001179 rxq->free_count++;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001180 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001181 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001182}
1183
Reinette Chatredf833b12009-04-21 10:55:48 -07001184void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1185{
1186 unsigned long flags;
1187 int i;
1188 spin_lock_irqsave(&rxq->lock, flags);
1189 INIT_LIST_HEAD(&rxq->rx_free);
1190 INIT_LIST_HEAD(&rxq->rx_used);
1191 /* Fill the rx_used queue with _all_ of the Rx buffers */
1192 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1193 /* In the reset function, these buffers may have been allocated
1194 * to an SKB, so we need to unmap and free potential storage */
1195 if (rxq->pool[i].skb != NULL) {
1196 pci_unmap_single(priv->pci_dev,
1197 rxq->pool[i].real_dma_addr,
1198 priv->hw_params.rx_buf_size,
1199 PCI_DMA_FROMDEVICE);
1200 priv->alloc_rxb_skb--;
1201 dev_kfree_skb(rxq->pool[i].skb);
1202 rxq->pool[i].skb = NULL;
1203 }
1204 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1205 }
1206
1207 /* Set us so that we have processed and used all buffers, but have
1208 * not restocked the Rx queue with fresh buffers */
1209 rxq->read = rxq->write = 0;
1210 rxq->free_count = 0;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001211 rxq->write_actual = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001212 spin_unlock_irqrestore(&rxq->lock, flags);
1213}
Reinette Chatredf833b12009-04-21 10:55:48 -07001214
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001215void iwl3945_rx_replenish(void *data)
1216{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001217 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001218 unsigned long flags;
1219
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001220 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001221
1222 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001223 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001224 spin_unlock_irqrestore(&priv->lock, flags);
1225}
1226
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001227static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1228{
1229 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1230
1231 iwl3945_rx_queue_restock(priv);
1232}
1233
1234
Reinette Chatredf833b12009-04-21 10:55:48 -07001235/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1236 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1237 * This free routine walks the list of POOL entries and if SKB is set to
1238 * non NULL it is unmapped and freed
1239 */
1240static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1241{
1242 int i;
1243 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1244 if (rxq->pool[i].skb != NULL) {
1245 pci_unmap_single(priv->pci_dev,
1246 rxq->pool[i].real_dma_addr,
1247 priv->hw_params.rx_buf_size,
1248 PCI_DMA_FROMDEVICE);
1249 dev_kfree_skb(rxq->pool[i].skb);
1250 }
1251 }
1252
1253 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1254 rxq->dma_addr);
1255 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1256 rxq->rb_stts, rxq->rb_stts_dma);
1257 rxq->bd = NULL;
1258 rxq->rb_stts = NULL;
1259}
Reinette Chatredf833b12009-04-21 10:55:48 -07001260
1261
Zhu Yib481de92007-09-25 17:54:57 -07001262/* Convert linear signal-to-noise ratio into dB */
1263static u8 ratio2dB[100] = {
1264/* 0 1 2 3 4 5 6 7 8 9 */
1265 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1266 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1267 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1268 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1269 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1270 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1271 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1272 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1273 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1274 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1275};
1276
1277/* Calculates a relative dB value from a ratio of linear
1278 * (i.e. not dB) signal levels.
1279 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001280int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001281{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001282 /* 1000:1 or higher just report as 60 dB */
1283 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001284 return 60;
1285
Adrian Bunk221c80c2008-02-02 23:19:01 +02001286 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001287 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001288 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001289 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001290
1291 /* We shouldn't see this */
1292 if (sig_ratio < 1)
1293 return 0;
1294
1295 /* Use table for ratios 1:1 - 99:1 */
1296 return (int)ratio2dB[sig_ratio];
1297}
1298
1299#define PERFECT_RSSI (-20) /* dBm */
1300#define WORST_RSSI (-95) /* dBm */
1301#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1302
1303/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1304 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1305 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001306int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001307{
1308 int sig_qual;
1309 int degradation = PERFECT_RSSI - rssi_dbm;
1310
1311 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1312 * as indicator; formula is (signal dbm - noise dbm).
1313 * SNR at or above 40 is a great signal (100%).
1314 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1315 * Weakest usable signal is usually 10 - 15 dB SNR. */
1316 if (noise_dbm) {
1317 if (rssi_dbm - noise_dbm >= 40)
1318 return 100;
1319 else if (rssi_dbm < noise_dbm)
1320 return 0;
1321 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1322
1323 /* Else use just the signal level.
1324 * This formula is a least squares fit of data points collected and
1325 * compared with a reference system that had a percentage (%) display
1326 * for signal quality. */
1327 } else
1328 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1329 (15 * RSSI_RANGE + 62 * degradation)) /
1330 (RSSI_RANGE * RSSI_RANGE);
1331
1332 if (sig_qual > 100)
1333 sig_qual = 100;
1334 else if (sig_qual < 1)
1335 sig_qual = 0;
1336
1337 return sig_qual;
1338}
1339
1340/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001341 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001342 *
1343 * Uses the priv->rx_handlers callback function array to invoke
1344 * the appropriate handlers, including command responses,
1345 * frame-received notifications, and other notifications.
1346 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001347static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001348{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001349 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001350 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001351 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001352 u32 r, i;
1353 int reclaim;
1354 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001355 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001356 u32 count = 8;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001357 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001358
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001359 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1360 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001361 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001362 i = rxq->read;
1363
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001364 /* calculate total frames need to be restock after handling RX */
1365 total_empty = r - priv->rxq.write_actual;
1366 if (total_empty < 0)
1367 total_empty += RX_QUEUE_SIZE;
1368
1369 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001370 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001371 /* Rx interrupt, but nothing sent from uCode */
1372 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001373 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001374
1375 while (i != r) {
1376 rxb = rxq->queue[i];
1377
Ben Cahill9fbab512007-11-29 11:09:47 +08001378 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001379 * then a bug has been introduced in the queue refilling
1380 * routines -- catch it here */
1381 BUG_ON(rxb == NULL);
1382
1383 rxq->queue[i] = NULL;
1384
Reinette Chatredf833b12009-04-21 10:55:48 -07001385 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1386 priv->hw_params.rx_buf_size,
1387 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001388 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001389
1390 /* Reclaim a command buffer only if this packet is a response
1391 * to a (driver-originated) command.
1392 * If the packet (e.g. Rx frame) originated from uCode,
1393 * there is no command buffer to reclaim.
1394 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1395 * but apparently a few don't get set; catch them here. */
1396 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1397 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1398 (pkt->hdr.cmd != REPLY_TX);
1399
1400 /* Based on type of command response or notification,
1401 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001402 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001403 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001404 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001405 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1406 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1407 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001408 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yib481de92007-09-25 17:54:57 -07001409 } else {
1410 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001411 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001412 "r %d i %d No handler needed for %s, 0x%02x\n",
1413 r, i, get_cmd_string(pkt->hdr.cmd),
1414 pkt->hdr.cmd);
1415 }
1416
1417 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001418 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001419 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001420 * as we reclaim the driver command queue */
1421 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001422 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001423 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001424 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001425 }
1426
1427 /* For now we just don't re-use anything. We can tweak this
1428 * later to try and re-use notification packets and SKBs that
1429 * fail to Rx correctly */
1430 if (rxb->skb != NULL) {
1431 priv->alloc_rxb_skb--;
1432 dev_kfree_skb_any(rxb->skb);
1433 rxb->skb = NULL;
1434 }
1435
Zhu Yib481de92007-09-25 17:54:57 -07001436 spin_lock_irqsave(&rxq->lock, flags);
1437 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1438 spin_unlock_irqrestore(&rxq->lock, flags);
1439 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001440 /* If there are a lot of unused frames,
1441 * restock the Rx queue so ucode won't assert. */
1442 if (fill_rx) {
1443 count++;
1444 if (count >= 8) {
1445 priv->rxq.read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001446 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001447 count = 0;
1448 }
1449 }
Zhu Yib481de92007-09-25 17:54:57 -07001450 }
1451
1452 /* Backtrack one entry */
1453 priv->rxq.read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001454 if (fill_rx)
1455 iwl3945_rx_replenish_now(priv);
1456 else
1457 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001458}
1459
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001460/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001461static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001462{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001463 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001464 synchronize_irq(priv->pci_dev->irq);
1465 tasklet_kill(&priv->irq_tasklet);
1466}
1467
Zhu Yib481de92007-09-25 17:54:57 -07001468static const char *desc_lookup(int i)
1469{
1470 switch (i) {
1471 case 1:
1472 return "FAIL";
1473 case 2:
1474 return "BAD_PARAM";
1475 case 3:
1476 return "BAD_CHECKSUM";
1477 case 4:
1478 return "NMI_INTERRUPT";
1479 case 5:
1480 return "SYSASSERT";
1481 case 6:
1482 return "FATAL_ERROR";
1483 }
1484
1485 return "UNKNOWN";
1486}
1487
1488#define ERROR_START_OFFSET (1 * sizeof(u32))
1489#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1490
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001491static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001492{
1493 u32 i;
1494 u32 desc, time, count, base, data1;
1495 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001496
1497 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1498
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001499 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001500 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001501 return;
1502 }
1503
Zhu Yib481de92007-09-25 17:54:57 -07001504
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001505 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001506
1507 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001508 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1509 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1510 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001511 }
1512
Winkler, Tomas15b16872008-12-19 10:37:33 +08001513 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001514 "ilink1 nmiPC Line\n");
1515 for (i = ERROR_START_OFFSET;
1516 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1517 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001518 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001519 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001520 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001521 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001522 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001523 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001524 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001525 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001526 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001527 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001528 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001529 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001530 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001531
Winkler, Tomas15b16872008-12-19 10:37:33 +08001532 IWL_ERR(priv,
1533 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1534 desc_lookup(desc), desc, time, blink1, blink2,
1535 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001536 }
1537
Zhu Yib481de92007-09-25 17:54:57 -07001538}
1539
Ben Cahillf58177b2007-11-29 11:09:43 +08001540#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001541
1542/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001543 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001544 *
Zhu Yib481de92007-09-25 17:54:57 -07001545 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001546static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001547 u32 num_events, u32 mode)
1548{
1549 u32 i;
1550 u32 base; /* SRAM byte address of event log header */
1551 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1552 u32 ptr; /* SRAM byte address of log data */
1553 u32 ev, time, data; /* event log data */
1554
1555 if (num_events == 0)
1556 return;
1557
1558 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1559
1560 if (mode == 0)
1561 event_size = 2 * sizeof(u32);
1562 else
1563 event_size = 3 * sizeof(u32);
1564
1565 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1566
1567 /* "time" is actually "data" for mode 0 (no timestamp).
1568 * place event id # at far right for easier visual parsing. */
1569 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001570 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001571 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001572 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001573 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001574 if (mode == 0) {
1575 /* data, ev */
1576 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1577 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001578 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001579 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001580 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001581 }
1582 }
1583}
1584
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001585static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001586{
Zhu Yib481de92007-09-25 17:54:57 -07001587 u32 base; /* SRAM byte address of event log header */
1588 u32 capacity; /* event log capacity in # entries */
1589 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1590 u32 num_wraps; /* # times uCode wrapped to top of log */
1591 u32 next_entry; /* index of next entry to be written by uCode */
1592 u32 size; /* # entries that we'll print */
1593
1594 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001595 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001596 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001597 return;
1598 }
1599
Zhu Yib481de92007-09-25 17:54:57 -07001600 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001601 capacity = iwl_read_targ_mem(priv, base);
1602 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1603 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1604 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001605
1606 size = num_wraps ? capacity : next_entry;
1607
1608 /* bail out if nothing in log */
1609 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001610 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Zhu Yib481de92007-09-25 17:54:57 -07001611 return;
1612 }
1613
Winkler, Tomas15b16872008-12-19 10:37:33 +08001614 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001615 size, num_wraps);
1616
1617 /* if uCode has wrapped back to top of log, start at the oldest entry,
1618 * i.e the next one that uCode would fill. */
1619 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001620 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001621 capacity - next_entry, mode);
1622
1623 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001624 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001625
Zhu Yib481de92007-09-25 17:54:57 -07001626}
1627
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001628static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001629{
1630 u32 inta, handled = 0;
1631 u32 inta_fh;
1632 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001633#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001634 u32 inta_mask;
1635#endif
1636
1637 spin_lock_irqsave(&priv->lock, flags);
1638
1639 /* Ack/clear/reset pending uCode interrupts.
1640 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1641 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001642 inta = iwl_read32(priv, CSR_INT);
1643 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001644
1645 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1646 * Any new interrupts that happen after this, either while we're
1647 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001648 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1649 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001650
Samuel Ortizd08853a2009-01-23 13:45:17 -08001651#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001652 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001653 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001654 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001655 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001656 inta, inta_mask, inta_fh);
1657 }
1658#endif
1659
1660 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1661 * atomic, make sure that inta covers all the interrupts that
1662 * we've discovered, even if FH interrupt came in just after
1663 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001664 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001665 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001666 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001667 inta |= CSR_INT_BIT_FH_TX;
1668
1669 /* Now service all interrupt bits discovered above. */
1670 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001671 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001672
1673 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001674 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001675
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001676 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001677 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001678
1679 handled |= CSR_INT_BIT_HW_ERR;
1680
1681 spin_unlock_irqrestore(&priv->lock, flags);
1682
1683 return;
1684 }
1685
Samuel Ortizd08853a2009-01-23 13:45:17 -08001686#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001687 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001688 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001689 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001690 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001691 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001692 priv->isr_stats.sch++;
1693 }
Zhu Yib481de92007-09-25 17:54:57 -07001694
1695 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001696 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001697 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001698 priv->isr_stats.alive++;
1699 }
Zhu Yib481de92007-09-25 17:54:57 -07001700 }
1701#endif
1702 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001703 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001704
Zhu Yib481de92007-09-25 17:54:57 -07001705 /* Error detected by uCode */
1706 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001707 IWL_ERR(priv, "Microcode SW error detected. "
1708 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001709 priv->isr_stats.sw++;
1710 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001711 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001712 handled |= CSR_INT_BIT_SW_ERR;
1713 }
1714
1715 /* uCode wakes up after power-down sleep */
1716 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001717 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001718 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001719 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1720 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1721 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1722 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1723 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1724 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001725
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001726 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001727 handled |= CSR_INT_BIT_WAKEUP;
1728 }
1729
1730 /* All uCode command responses, including Tx command responses,
1731 * Rx "responses" (frame-received notification), and other
1732 * notifications from uCode come through here*/
1733 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001734 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001735 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001736 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1737 }
1738
1739 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001740 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001741 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001742
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001743 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001744 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1745 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001746 handled |= CSR_INT_BIT_FH_TX;
1747 }
1748
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001749 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001750 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001751 priv->isr_stats.unhandled++;
1752 }
Zhu Yib481de92007-09-25 17:54:57 -07001753
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001754 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001755 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001756 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001757 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001758 }
1759
1760 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001761 /* only Re-enable if disabled by irq */
1762 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001763 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001764
Samuel Ortizd08853a2009-01-23 13:45:17 -08001765#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001766 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001767 inta = iwl_read32(priv, CSR_INT);
1768 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1769 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001770 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001771 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1772 }
1773#endif
1774 spin_unlock_irqrestore(&priv->lock, flags);
1775}
1776
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001777static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001778 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001779 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001780 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001781{
Johannes Berg4e05c232009-06-19 13:52:44 -07001782 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001783 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001784 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001785 u16 passive_dwell = 0;
1786 u16 active_dwell = 0;
1787 int added, i;
1788
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001789 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001790 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001791 return 0;
1792
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001793 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1794 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001795
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001796 if (passive_dwell <= active_dwell)
1797 passive_dwell = active_dwell + 1;
1798
Johannes Berg4e05c232009-06-19 13:52:44 -07001799 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1800 chan = priv->scan_request->channels[i];
1801
1802 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001803 continue;
1804
Johannes Berg4e05c232009-06-19 13:52:44 -07001805 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001806
Samuel Ortize6148912009-01-23 13:45:15 -08001807 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001808 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001809 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001810 scan_ch->channel);
1811 continue;
1812 }
1813
Zhu Yib481de92007-09-25 17:54:57 -07001814 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1815 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001816 /* If passive , set up for auto-switch
1817 * and use long active_dwell time.
1818 */
1819 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001820 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001821 scan_ch->type = 0; /* passive */
1822 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1823 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1824 } else {
1825 scan_ch->type = 1; /* active */
1826 }
1827
1828 /* Set direct probe bits. These may be used both for active
1829 * scan channels (probes gets sent right away),
1830 * or for passive channels (probes get se sent only after
1831 * hearing clear Rx packet).*/
1832 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1833 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001834 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001835 } else {
1836 /* uCode v1 does not allow setting direct probe bits on
1837 * passive channel. */
1838 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001839 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001840 }
Zhu Yib481de92007-09-25 17:54:57 -07001841
Ben Cahill9fbab512007-11-29 11:09:47 +08001842 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001843 scan_ch->tpc.dsp_atten = 110;
1844 /* scan_pwr_info->tpc.dsp_atten; */
1845
1846 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001847 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001848 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1849 else {
1850 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1851 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001852 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001853 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001854 */
1855 }
1856
Tomas Winklere1623442009-01-27 14:27:56 -08001857 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001858 scan_ch->channel,
1859 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1860 (scan_ch->type & 1) ?
1861 active_dwell : passive_dwell);
1862
1863 scan_ch++;
1864 added++;
1865 }
1866
Tomas Winklere1623442009-01-27 14:27:56 -08001867 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001868 return added;
1869}
1870
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001871static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001872 struct ieee80211_rate *rates)
1873{
1874 int i;
1875
1876 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001877 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1878 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1879 rates[i].hw_value_short = i;
1880 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001881 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001882 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001883 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001884 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001885 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001886 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001887 }
Zhu Yib481de92007-09-25 17:54:57 -07001888 }
1889}
1890
Zhu Yib481de92007-09-25 17:54:57 -07001891/******************************************************************************
1892 *
1893 * uCode download functions
1894 *
1895 ******************************************************************************/
1896
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001897static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001898{
Tomas Winkler98c92212008-01-14 17:46:20 -08001899 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1900 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1901 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1902 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1903 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1904 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001905}
1906
1907/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001908 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001909 * looking at all data.
1910 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001911static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001912{
1913 u32 val;
1914 u32 save_len = len;
1915 int rc = 0;
1916 u32 errcnt;
1917
Tomas Winklere1623442009-01-27 14:27:56 -08001918 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001919
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001920 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001921 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07001922
1923 errcnt = 0;
1924 for (; len > 0; len -= sizeof(u32), image++) {
1925 /* read data comes through single port, auto-incr addr */
1926 /* NOTE: Use the debugless read so we don't flood kernel log
1927 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001928 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001929 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001930 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001931 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1932 save_len - len, val, le32_to_cpu(*image));
1933 rc = -EIO;
1934 errcnt++;
1935 if (errcnt >= 20)
1936 break;
1937 }
1938 }
1939
Zhu Yib481de92007-09-25 17:54:57 -07001940
1941 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08001942 IWL_DEBUG_INFO(priv,
1943 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07001944
1945 return rc;
1946}
1947
1948
1949/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001950 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001951 * using sample data 100 bytes apart. If these sample points are good,
1952 * it's a pretty good bet that everything between them is good, too.
1953 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001954static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001955{
1956 u32 val;
1957 int rc = 0;
1958 u32 errcnt = 0;
1959 u32 i;
1960
Tomas Winklere1623442009-01-27 14:27:56 -08001961 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001962
Zhu Yib481de92007-09-25 17:54:57 -07001963 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
1964 /* read data comes through single port, auto-incr addr */
1965 /* NOTE: Use the debugless read so we don't flood kernel log
1966 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001967 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001968 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001969 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001970 if (val != le32_to_cpu(*image)) {
1971#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001972 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001973 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1974 i, val, *image);
1975#endif
1976 rc = -EIO;
1977 errcnt++;
1978 if (errcnt >= 3)
1979 break;
1980 }
1981 }
1982
Zhu Yib481de92007-09-25 17:54:57 -07001983 return rc;
1984}
1985
1986
1987/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001988 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07001989 * and verify its contents
1990 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001991static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001992{
1993 __le32 *image;
1994 u32 len;
1995 int rc = 0;
1996
1997 /* Try bootstrap */
1998 image = (__le32 *)priv->ucode_boot.v_addr;
1999 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002000 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002001 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002002 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002003 return 0;
2004 }
2005
2006 /* Try initialize */
2007 image = (__le32 *)priv->ucode_init.v_addr;
2008 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002009 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002010 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002011 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002012 return 0;
2013 }
2014
2015 /* Try runtime/protocol */
2016 image = (__le32 *)priv->ucode_code.v_addr;
2017 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002018 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002019 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002020 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002021 return 0;
2022 }
2023
Winkler, Tomas15b16872008-12-19 10:37:33 +08002024 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002025
Ben Cahill9fbab512007-11-29 11:09:47 +08002026 /* Since nothing seems to match, show first several data entries in
2027 * instruction SRAM, so maybe visual inspection will give a clue.
2028 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002029 image = (__le32 *)priv->ucode_boot.v_addr;
2030 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002031 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002032
2033 return rc;
2034}
2035
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002036static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002037{
2038 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002039 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002040}
2041
2042/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002043 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002044 *
2045 * Copy into buffers for card to fetch via bus-mastering
2046 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002047static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002048{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002049 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002050 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002051 const struct firmware *ucode_raw;
2052 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002053 const char *name_pre = priv->cfg->fw_name_pre;
2054 const unsigned int api_max = priv->cfg->ucode_api_max;
2055 const unsigned int api_min = priv->cfg->ucode_api_min;
2056 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002057 u8 *src;
2058 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002059 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002060
2061 /* Ask kernel firmware_class module to get the boot firmware off disk.
2062 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002063 for (index = api_max; index >= api_min; index--) {
2064 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2065 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2066 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002067 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002068 buf, ret);
2069 if (ret == -ENOENT)
2070 continue;
2071 else
2072 goto error;
2073 } else {
2074 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002075 IWL_ERR(priv, "Loaded firmware %s, "
2076 "which is deprecated. "
2077 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002078 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002079 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2080 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002081 buf, ucode_raw->size);
2082 break;
2083 }
Zhu Yib481de92007-09-25 17:54:57 -07002084 }
2085
Reinette Chatrea0987a82008-12-02 12:14:06 -08002086 if (ret < 0)
2087 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002088
2089 /* Make sure that we got at least our header! */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002090 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002091 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002092 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002093 goto err_release;
2094 }
2095
2096 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002097 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002098
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002099 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002100 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002101 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2102 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2103 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2104 init_data_size =
2105 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2106 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2107 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002108
Reinette Chatrea0987a82008-12-02 12:14:06 -08002109 /* api_ver should match the api version forming part of the
2110 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002111 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002112
2113 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002114 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002115 "Driver supports v%u, firmware is v%u.\n",
2116 api_max, api_ver);
2117 priv->ucode_ver = 0;
2118 ret = -EINVAL;
2119 goto err_release;
2120 }
2121 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002122 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002123 "got %u. New firmware can be obtained "
2124 "from http://www.intellinuxwireless.org.\n",
2125 api_max, api_ver);
2126
Tomas Winkler978785a2008-12-19 10:37:31 +08002127 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2128 IWL_UCODE_MAJOR(priv->ucode_ver),
2129 IWL_UCODE_MINOR(priv->ucode_ver),
2130 IWL_UCODE_API(priv->ucode_ver),
2131 IWL_UCODE_SERIAL(priv->ucode_ver));
2132
Tomas Winklere1623442009-01-27 14:27:56 -08002133 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002134 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002135 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2136 inst_size);
2137 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2138 data_size);
2139 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2140 init_size);
2141 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2142 init_data_size);
2143 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2144 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002145
Reinette Chatrea0987a82008-12-02 12:14:06 -08002146
Zhu Yib481de92007-09-25 17:54:57 -07002147 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002148 if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002149 inst_size + data_size + init_size +
2150 init_data_size + boot_size) {
2151
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002152 IWL_DEBUG_INFO(priv,
2153 "uCode file size %zd does not match expected size\n",
2154 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002155 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002156 goto err_release;
2157 }
2158
2159 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002160 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002161 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002162 inst_size);
2163 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002164 goto err_release;
2165 }
2166
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002167 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002168 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002169 data_size);
2170 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002171 goto err_release;
2172 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002173 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002174 IWL_DEBUG_INFO(priv,
2175 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002176 init_size);
2177 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002178 goto err_release;
2179 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002180 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002181 IWL_DEBUG_INFO(priv,
2182 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002183 init_data_size);
2184 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002185 goto err_release;
2186 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002187 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002188 IWL_DEBUG_INFO(priv,
2189 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002190 boot_size);
2191 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002192 goto err_release;
2193 }
2194
2195 /* Allocate ucode buffers for card's bus-master loading ... */
2196
2197 /* Runtime instructions and 2 copies of data:
2198 * 1) unmodified from disk
2199 * 2) backup cache for save/restore during power-downs */
2200 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002201 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002202
2203 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002204 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002205
2206 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002207 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002208
2209 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002210 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002211 goto err_pci_alloc;
2212
Tomas Winkler90e759d2007-11-29 11:09:41 +08002213 /* Initialization instructions and data */
2214 if (init_size && init_data_size) {
2215 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002216 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002217
2218 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002219 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002220
2221 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2222 goto err_pci_alloc;
2223 }
2224
2225 /* Bootstrap (instructions only, no data) */
2226 if (boot_size) {
2227 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002228 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002229
2230 if (!priv->ucode_boot.v_addr)
2231 goto err_pci_alloc;
2232 }
2233
Zhu Yib481de92007-09-25 17:54:57 -07002234 /* Copy images into buffers for card's bus-master reads ... */
2235
2236 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002237 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002238 IWL_DEBUG_INFO(priv,
2239 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002240 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002241 src += len;
2242
Tomas Winklere1623442009-01-27 14:27:56 -08002243 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002244 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2245
2246 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002247 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002248 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002249 IWL_DEBUG_INFO(priv,
2250 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002251 memcpy(priv->ucode_data.v_addr, src, len);
2252 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002253 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002254
2255 /* Initialization instructions (3rd block) */
2256 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002257 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002258 IWL_DEBUG_INFO(priv,
2259 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002260 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002261 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002262 }
2263
2264 /* Initialization data (4th block) */
2265 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002266 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002267 IWL_DEBUG_INFO(priv,
2268 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002269 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002270 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002271 }
2272
2273 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002274 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002275 IWL_DEBUG_INFO(priv,
2276 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002277 memcpy(priv->ucode_boot.v_addr, src, len);
2278
2279 /* We have our copies now, allow OS release its copies */
2280 release_firmware(ucode_raw);
2281 return 0;
2282
2283 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002284 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002285 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002286 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002287
2288 err_release:
2289 release_firmware(ucode_raw);
2290
2291 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002292 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002293}
2294
2295
2296/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002297 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002298 *
2299 * Tell initialization uCode where to find runtime uCode.
2300 *
2301 * BSM registers initially contain pointers to initialization uCode.
2302 * We need to replace them to load runtime uCode inst and data,
2303 * and to save runtime data when powering down.
2304 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002305static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002306{
2307 dma_addr_t pinst;
2308 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002309
2310 /* bits 31:0 for 3945 */
2311 pinst = priv->ucode_code.p_addr;
2312 pdata = priv->ucode_data_backup.p_addr;
2313
Zhu Yib481de92007-09-25 17:54:57 -07002314 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002315 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2316 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2317 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002318 priv->ucode_data.len);
2319
Tomas Winklera96a27f2008-10-23 23:48:56 -07002320 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002321 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002322 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002323 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2324
Tomas Winklere1623442009-01-27 14:27:56 -08002325 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002326
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002327 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002328}
2329
2330/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002331 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002332 *
2333 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2334 *
Zhu Yib481de92007-09-25 17:54:57 -07002335 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002336 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002337static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002338{
2339 /* Check alive response for "valid" sign from uCode */
2340 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2341 /* We had an error bringing up the hardware, so take it
2342 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002343 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002344 goto restart;
2345 }
2346
2347 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2348 * This is a paranoid check, because we would not have gotten the
2349 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002350 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002351 /* Runtime instruction load was bad;
2352 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002353 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002354 goto restart;
2355 }
2356
2357 /* Send pointers to protocol/runtime uCode image ... init code will
2358 * load and launch runtime uCode, which will send us another "Alive"
2359 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002360 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002361 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002362 /* Runtime instruction load won't happen;
2363 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002364 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002365 goto restart;
2366 }
2367 return;
2368
2369 restart:
2370 queue_work(priv->workqueue, &priv->restart);
2371}
2372
Zhu Yib481de92007-09-25 17:54:57 -07002373/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002374 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002375 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002376 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002377 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002378static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002379{
Zhu Yib481de92007-09-25 17:54:57 -07002380 int thermal_spin = 0;
2381 u32 rfkill;
2382
Tomas Winklere1623442009-01-27 14:27:56 -08002383 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002384
2385 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2386 /* We had an error bringing up the hardware, so take it
2387 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002388 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002389 goto restart;
2390 }
2391
2392 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2393 * This is a paranoid check, because we would not have gotten the
2394 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002395 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002396 /* Runtime instruction load was bad;
2397 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002398 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002399 goto restart;
2400 }
2401
Tomas Winklerc587de02009-06-03 11:44:07 -07002402 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002403
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002404 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002405 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002406
2407 if (rfkill & 0x1) {
2408 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002409 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002410 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002411 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002412 thermal_spin++;
2413 udelay(10);
2414 }
2415
2416 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002417 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002418 thermal_spin * 10);
2419 } else
2420 set_bit(STATUS_RF_KILL_HW, &priv->status);
2421
Ben Cahill9fbab512007-11-29 11:09:47 +08002422 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002423 set_bit(STATUS_ALIVE, &priv->status);
2424
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002425 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002426 return;
2427
Johannes Berg36d68252008-05-15 12:55:26 +02002428 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002429
2430 priv->active_rate = priv->rates_mask;
2431 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2432
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002433 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002434
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002435 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002436 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002437 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002438
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002439 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002440 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2441 } else {
2442 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002443 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002444 }
2445
Ben Cahill9fbab512007-11-29 11:09:47 +08002446 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002447 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002448
2449 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002450 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002451
Zhu Yib481de92007-09-25 17:54:57 -07002452 iwl3945_reg_txpower_periodic(priv);
2453
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002454 iwl3945_led_register(priv);
2455
Tomas Winklere1623442009-01-27 14:27:56 -08002456 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002457 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002458 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002459
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002460 /* reassociate for ADHOC mode */
2461 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2462 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2463 priv->vif);
2464 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002465 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002466 }
2467
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002468 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002469 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002470
Zhu Yib481de92007-09-25 17:54:57 -07002471 return;
2472
2473 restart:
2474 queue_work(priv->workqueue, &priv->restart);
2475}
2476
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002477static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002478
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002479static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002480{
2481 unsigned long flags;
2482 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2483 struct ieee80211_conf *conf = NULL;
2484
Tomas Winklere1623442009-01-27 14:27:56 -08002485 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002486
2487 conf = ieee80211_get_hw_conf(priv->hw);
2488
2489 if (!exit_pending)
2490 set_bit(STATUS_EXIT_PENDING, &priv->status);
2491
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002492 iwl3945_led_unregister(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07002493 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002494
2495 /* Unblock any waiting calls */
2496 wake_up_interruptible_all(&priv->wait_command_queue);
2497
Zhu Yib481de92007-09-25 17:54:57 -07002498 /* Wipe out the EXIT_PENDING status bit if we are not actually
2499 * exiting the module */
2500 if (!exit_pending)
2501 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2502
2503 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002504 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002505
2506 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002507 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002508 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002509 spin_unlock_irqrestore(&priv->lock, flags);
2510 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002511
2512 if (priv->mac80211_registered)
2513 ieee80211_stop_queues(priv->hw);
2514
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002515 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002516 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002517 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002518 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2519 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002520 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2521 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002522 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2523 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002524 goto exit;
2525 }
2526
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002527 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002528 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002529 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2530 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002531 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2532 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002533 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002534 STATUS_FW_ERROR |
2535 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2536 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002537
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002538 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002539 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002540 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002541 spin_unlock_irqrestore(&priv->lock, flags);
2542
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002543 iwl3945_hw_txq_ctx_stop(priv);
2544 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002545
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002546 iwl_write_prph(priv, APMG_CLK_DIS_REG,
2547 APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002548
2549 udelay(5);
2550
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002551 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002552 priv->cfg->ops->lib->apm_ops.stop(priv);
2553 else
2554 priv->cfg->ops->lib->apm_ops.reset(priv);
2555
Zhu Yib481de92007-09-25 17:54:57 -07002556 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002557 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002558
2559 if (priv->ibss_beacon)
2560 dev_kfree_skb(priv->ibss_beacon);
2561 priv->ibss_beacon = NULL;
2562
2563 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002564 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002565}
2566
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002567static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002568{
2569 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002570 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002571 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002572
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002573 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002574}
2575
2576#define MAX_HW_RESTARTS 5
2577
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002578static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002579{
2580 int rc, i;
2581
2582 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002583 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002584 return -EIO;
2585 }
2586
Reinette Chatree903fbd2008-01-30 22:05:15 -08002587 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002588 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002589 return -EIO;
2590 }
2591
Zhu Yie655b9f2008-01-24 02:19:38 -08002592 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002593 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002594 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2595 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2596 else {
2597 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002598 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2599 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002600 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002601
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002602 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002603
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002604 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002605 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002606 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002607 return rc;
2608 }
2609
2610 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002611 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2612 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002613 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2614
2615 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002616 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002617 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002618
2619 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002620 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2621 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002622
2623 /* Copy original ucode data image from disk into backup cache.
2624 * This will be used to initialize the on-board processor's
2625 * data SRAM for a clean start when the runtime program first loads. */
2626 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002627 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002628
Zhu Yie655b9f2008-01-24 02:19:38 -08002629 /* We return success when we resume from suspend and rf_kill is on. */
2630 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2631 return 0;
2632
Zhu Yib481de92007-09-25 17:54:57 -07002633 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2634
Tomas Winklerc587de02009-06-03 11:44:07 -07002635 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002636
2637 /* load bootstrap state machine,
2638 * load bootstrap program into processor's memory,
2639 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002640 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002641
2642 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002643 IWL_ERR(priv,
2644 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002645 continue;
2646 }
2647
2648 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002649 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002650
Tomas Winklere1623442009-01-27 14:27:56 -08002651 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002652
2653 return 0;
2654 }
2655
2656 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002657 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002658 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002659
2660 /* tried to restart and config the device for as long as our
2661 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002662 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002663 return -EIO;
2664}
2665
2666
2667/*****************************************************************************
2668 *
2669 * Workqueue callbacks
2670 *
2671 *****************************************************************************/
2672
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002673static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002674{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002675 struct iwl_priv *priv =
2676 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002677
2678 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2679 return;
2680
2681 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002682 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002683 mutex_unlock(&priv->mutex);
2684}
2685
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002686static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002687{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002688 struct iwl_priv *priv =
2689 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002690
2691 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2692 return;
2693
2694 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002695 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002696 mutex_unlock(&priv->mutex);
2697}
2698
Helmut Schaa26635162009-01-15 09:38:44 +01002699static void iwl3945_rfkill_poll(struct work_struct *data)
2700{
2701 struct iwl_priv *priv =
2702 container_of(data, struct iwl_priv, rfkill_poll.work);
Helmut Schaa26635162009-01-15 09:38:44 +01002703
2704 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2705 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2706 else
2707 set_bit(STATUS_RF_KILL_HW, &priv->status);
2708
Johannes Berga60e77e2009-06-04 18:26:06 +02002709 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
2710 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa26635162009-01-15 09:38:44 +01002711
2712 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2713 round_jiffies_relative(2 * HZ));
2714
2715}
2716
Zhu Yib481de92007-09-25 17:54:57 -07002717#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002718static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002719{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002720 struct iwl_priv *priv =
2721 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002722 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002723 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002724 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002725 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002726 };
2727 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002728 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002729 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002730 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002731 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002732 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002733
2734 conf = ieee80211_get_hw_conf(priv->hw);
2735
2736 mutex_lock(&priv->mutex);
2737
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002738 cancel_delayed_work(&priv->scan_check);
2739
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002740 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002741 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002742 goto done;
2743 }
2744
Tomas Winklera96a27f2008-10-23 23:48:56 -07002745 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002746 * was given the chance to run... */
2747 if (!test_bit(STATUS_SCANNING, &priv->status))
2748 goto done;
2749
2750 /* This should never be called or scheduled if there is currently
2751 * a scan active in the hardware. */
2752 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002753 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2754 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002755 rc = -EIO;
2756 goto done;
2757 }
2758
2759 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002760 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002761 goto done;
2762 }
2763
2764 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002765 IWL_DEBUG_HC(priv,
2766 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002767 goto done;
2768 }
2769
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002770 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002771 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002772 goto done;
2773 }
2774
2775 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002776 IWL_DEBUG_HC(priv,
2777 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002778 goto done;
2779 }
2780
2781 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002782 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002783 goto done;
2784 }
2785
Winkler, Tomas805cee52009-01-19 15:30:28 -08002786 if (!priv->scan) {
2787 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07002788 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08002789 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07002790 rc = -ENOMEM;
2791 goto done;
2792 }
2793 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08002794 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002795 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002796
2797 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2798 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2799
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002800 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002801 u16 interval = 0;
2802 u32 extra;
2803 u32 suspend_time = 100;
2804 u32 scan_suspend_time = 100;
2805 unsigned long flags;
2806
Tomas Winklere1623442009-01-27 14:27:56 -08002807 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002808
2809 spin_lock_irqsave(&priv->lock, flags);
2810 interval = priv->beacon_int;
2811 spin_unlock_irqrestore(&priv->lock, flags);
2812
2813 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002814 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002815 if (!interval)
2816 interval = suspend_time;
2817 /*
2818 * suspend time format:
2819 * 0-19: beacon interval in usec (time before exec.)
2820 * 20-23: 0
2821 * 24-31: number of beacons (suspend between channels)
2822 */
2823
2824 extra = (suspend_time / interval) << 24;
2825 scan_suspend_time = 0xFF0FFFFF &
2826 (extra | ((suspend_time % interval) * 1024));
2827
2828 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002829 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002830 scan_suspend_time, interval);
2831 }
2832
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002833 if (priv->scan_request->n_ssids) {
2834 int i, p = 0;
2835 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2836 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2837 /* always does wildcard anyway */
2838 if (!priv->scan_request->ssids[i].ssid_len)
2839 continue;
2840 scan->direct_scan[p].id = WLAN_EID_SSID;
2841 scan->direct_scan[p].len =
2842 priv->scan_request->ssids[i].ssid_len;
2843 memcpy(scan->direct_scan[p].ssid,
2844 priv->scan_request->ssids[i].ssid,
2845 priv->scan_request->ssids[i].ssid_len);
2846 n_probes++;
2847 p++;
2848 }
2849 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002850 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002851 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002852
2853 /* We don't build a direct scan probe request; the uCode will do
2854 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002855 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002856 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002857 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2858
2859 /* flags + rate selection */
2860
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002861 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002862 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2863 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2864 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002865 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002866 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002867 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002868 /*
2869 * If active scaning is requested but a certain channel
2870 * is marked passive, we can do active scanning if we
2871 * detect transmissions.
2872 */
2873 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002874 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002875 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002876 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07002877 goto done;
2878 }
2879
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002880 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002881 iwl_fill_probe_req(priv,
2882 (struct ieee80211_mgmt *)scan->data,
2883 priv->scan_request->ie,
2884 priv->scan_request->ie_len,
2885 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002886
Zhu Yib481de92007-09-25 17:54:57 -07002887 /* select Rx antennas */
2888 scan->flags |= iwl3945_get_antenna_flags(priv);
2889
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07002890 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002891 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2892
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002893 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002894 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002895 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07002896
Reinette Chatre14b54332008-11-04 12:21:35 -08002897 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002898 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002899 goto done;
2900 }
2901
Zhu Yib481de92007-09-25 17:54:57 -07002902 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002903 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07002904 cmd.data = scan;
2905 scan->len = cpu_to_le16(cmd.len);
2906
2907 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08002908 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002909 if (rc)
2910 goto done;
2911
2912 queue_delayed_work(priv->workqueue, &priv->scan_check,
2913 IWL_SCAN_CHECK_WATCHDOG);
2914
2915 mutex_unlock(&priv->mutex);
2916 return;
2917
2918 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08002919 /* can not perform scan make sure we clear scanning
2920 * bits from status so next scan request can be performed.
2921 * if we dont clear scanning status bit here all next scan
2922 * will fail
2923 */
2924 clear_bit(STATUS_SCAN_HW, &priv->status);
2925 clear_bit(STATUS_SCANNING, &priv->status);
2926
Ian Schram01ebd062007-10-25 17:15:22 +08002927 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07002928 queue_work(priv->workqueue, &priv->scan_completed);
2929 mutex_unlock(&priv->mutex);
2930}
2931
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002932static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002933{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002934 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002935
2936 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2937 return;
2938
2939 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002940 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002941 mutex_unlock(&priv->mutex);
2942}
2943
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002944static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002945{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002946 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002947
2948 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2949 return;
2950
Johannes Berg19cc1082009-05-08 13:44:36 -07002951 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
2952 mutex_lock(&priv->mutex);
2953 priv->vif = NULL;
2954 priv->is_open = 0;
2955 mutex_unlock(&priv->mutex);
2956 iwl3945_down(priv);
2957 ieee80211_restart_hw(priv->hw);
2958 } else {
2959 iwl3945_down(priv);
2960 queue_work(priv->workqueue, &priv->up);
2961 }
Zhu Yib481de92007-09-25 17:54:57 -07002962}
2963
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002964static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002965{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002966 struct iwl_priv *priv =
2967 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002968
2969 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2970 return;
2971
2972 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002973 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002974 mutex_unlock(&priv->mutex);
2975}
2976
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002977#define IWL_DELAY_NEXT_SCAN (HZ*2)
2978
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002979void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002980{
Zhu Yib481de92007-09-25 17:54:57 -07002981 int rc = 0;
2982 struct ieee80211_conf *conf = NULL;
2983
Johannes Berg05c914f2008-09-11 00:01:58 +02002984 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002985 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002986 return;
2987 }
2988
2989
Tomas Winklere1623442009-01-27 14:27:56 -08002990 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002991 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002992
2993 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2994 return;
2995
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002996 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08002997 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002998
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08002999 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003000
Zhu Yib481de92007-09-25 17:54:57 -07003001 conf = ieee80211_get_hw_conf(priv->hw);
3002
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003003 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003004 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003005
Tomas Winkler28afaf92008-12-19 10:37:06 +08003006 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003007 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003008 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003009 sizeof(priv->rxon_timing), &priv->rxon_timing);
3010 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003011 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003012 "Attempting to continue.\n");
3013
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003014 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003015
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003016 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003017
Tomas Winklere1623442009-01-27 14:27:56 -08003018 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003019 priv->assoc_id, priv->beacon_int);
3020
3021 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003022 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003023 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003024 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003025
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003026 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003027 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003028 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003029 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003030 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003031
Johannes Berg05c914f2008-09-11 00:01:58 +02003032 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
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
3035 }
3036
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003037 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003038
3039 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003040 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003041 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003042 break;
3043
Johannes Berg05c914f2008-09-11 00:01:58 +02003044 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003045
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003046 priv->assoc_id = 1;
Tomas Winklerc587de02009-06-03 11:44:07 -07003047 iwl_add_station(priv, priv->bssid, 0, CMD_SYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003048 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003049 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003050 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3051 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003052 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3053 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003054
3055 break;
3056
3057 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003058 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003059 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003060 break;
3061 }
3062
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003063 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003064
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003065 /* we have just associated, don't start scan too early */
3066 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003067}
3068
Zhu Yib481de92007-09-25 17:54:57 -07003069/*****************************************************************************
3070 *
3071 * mac80211 entry point functions
3072 *
3073 *****************************************************************************/
3074
Zhu Yi5a669262008-01-14 17:46:18 -08003075#define UCODE_READY_TIMEOUT (2 * HZ)
3076
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003077static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003078{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003079 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003080 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003081
Tomas Winklere1623442009-01-27 14:27:56 -08003082 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003083
3084 /* we should be verifying the device is ready to be opened */
3085 mutex_lock(&priv->mutex);
3086
Zhu Yi5a669262008-01-14 17:46:18 -08003087 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3088 * ucode filename and max sizes are card-specific. */
3089
3090 if (!priv->ucode_code.len) {
3091 ret = iwl3945_read_ucode(priv);
3092 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003093 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003094 mutex_unlock(&priv->mutex);
3095 goto out_release_irq;
3096 }
3097 }
3098
Zhu Yie655b9f2008-01-24 02:19:38 -08003099 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003100
Zhu Yib481de92007-09-25 17:54:57 -07003101 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003102
Zhu Yie655b9f2008-01-24 02:19:38 -08003103 if (ret)
3104 goto out_release_irq;
3105
Tomas Winklere1623442009-01-27 14:27:56 -08003106 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003107
Zhu Yi5a669262008-01-14 17:46:18 -08003108 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3109 * mac80211 will not be run successfully. */
3110 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3111 test_bit(STATUS_READY, &priv->status),
3112 UCODE_READY_TIMEOUT);
3113 if (!ret) {
3114 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003115 IWL_ERR(priv,
3116 "Wait for START_ALIVE timeout after %dms.\n",
3117 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003118 ret = -ETIMEDOUT;
3119 goto out_release_irq;
3120 }
3121 }
3122
Helmut Schaa26635162009-01-15 09:38:44 +01003123 /* ucode is running and will send rfkill notifications,
3124 * no need to poll the killswitch state anymore */
3125 cancel_delayed_work(&priv->rfkill_poll);
3126
Zhu Yie655b9f2008-01-24 02:19:38 -08003127 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003128 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003129 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003130
3131out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003132 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003133 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003134 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003135}
3136
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003137static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003138{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003139 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003140
Tomas Winklere1623442009-01-27 14:27:56 -08003141 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003142
Zhu Yie655b9f2008-01-24 02:19:38 -08003143 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003144 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003145 return;
3146 }
3147
Zhu Yib481de92007-09-25 17:54:57 -07003148 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003149
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003150 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003151 /* stop mac, cancel any scan request and clear
3152 * RXON_FILTER_ASSOC_MSK BIT
3153 */
Zhu Yi5a669262008-01-14 17:46:18 -08003154 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003155 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003156 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003157 }
3158
Zhu Yi5a669262008-01-14 17:46:18 -08003159 iwl3945_down(priv);
3160
3161 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003162
3163 /* start polling the killswitch state again */
3164 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3165 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003166
Tomas Winklere1623442009-01-27 14:27:56 -08003167 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003168}
3169
Johannes Berge039fa42008-05-15 12:55:29 +02003170static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003171{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003172 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003173
Tomas Winklere1623442009-01-27 14:27:56 -08003174 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003175
Tomas Winklere1623442009-01-27 14:27:56 -08003176 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003177 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003178
Johannes Berge039fa42008-05-15 12:55:29 +02003179 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003180 dev_kfree_skb_any(skb);
3181
Tomas Winklere1623442009-01-27 14:27:56 -08003182 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003183 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003184}
3185
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003186void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003187{
3188 int rc = 0;
3189
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003190 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003191 return;
3192
3193 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003194 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003195
3196 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003197 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003198 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003199
3200 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003201 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003202 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003203 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3204 sizeof(priv->rxon_timing),
3205 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003206 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003207 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003208 "Attempting to continue.\n");
3209
3210 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003211 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003212 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003213 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003214 RXON_FLG_SHORT_PREAMBLE_MSK;
3215 else
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
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003219 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003220 if (priv->assoc_capability &
3221 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003222 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003223 RXON_FLG_SHORT_SLOT_MSK;
3224 else
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
Johannes Berg05c914f2008-09-11 00:01:58 +02003228 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003229 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003230 ~RXON_FLG_SHORT_SLOT_MSK;
3231 }
3232 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003233 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003234 iwlcore_commit_rxon(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07003235 iwl_add_station(priv, iwl_bcast_addr, 0, CMD_SYNC, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003236 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003237 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003238
3239 /* FIXME - we need to add code here to detect a totally new
3240 * configuration, reset the AP, unassoc, rxon timing, assoc,
3241 * clear sta table, add BCAST sta... */
3242}
3243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003244static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003245 struct ieee80211_vif *vif,
3246 struct ieee80211_sta *sta,
3247 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003248{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003249 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003250 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003251 int ret = 0;
3252 u8 sta_id = IWL_INVALID_STATION;
3253 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003254
Tomas Winklere1623442009-01-27 14:27:56 -08003255 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003256
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003257 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003258 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003259 return -EOPNOTSUPP;
3260 }
3261
Winkler, Tomas42986792009-01-19 15:30:22 -08003262 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003263 static_key = !iwl_is_associated(priv);
3264
3265 if (!static_key) {
Tomas Winklerc587de02009-06-03 11:44:07 -07003266 sta_id = iwl_find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003267 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003268 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003269 addr);
3270 return -EINVAL;
3271 }
Zhu Yib481de92007-09-25 17:54:57 -07003272 }
3273
3274 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003275 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003276 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003277
Zhu Yib481de92007-09-25 17:54:57 -07003278 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003279 case SET_KEY:
3280 if (static_key)
3281 ret = iwl3945_set_static_key(priv, key);
3282 else
3283 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3284 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003285 break;
3286 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003287 if (static_key)
3288 ret = iwl3945_remove_static_key(priv);
3289 else
3290 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3291 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003292 break;
3293 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003294 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003295 }
3296
Tomas Winklere1623442009-01-27 14:27:56 -08003297 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003298
Winkler, Tomas42986792009-01-19 15:30:22 -08003299 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003300}
3301
Zhu Yib481de92007-09-25 17:54:57 -07003302/*****************************************************************************
3303 *
3304 * sysfs attributes
3305 *
3306 *****************************************************************************/
3307
Samuel Ortizd08853a2009-01-23 13:45:17 -08003308#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003309
3310/*
3311 * The following adds a new attribute to the sysfs representation
3312 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3313 * used for controlling the debug level.
3314 *
3315 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003316 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003317 * The debug_level being managed using sysfs below is a per device debug
3318 * level that is used instead of the global debug level if it (the per
3319 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003320 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003321static ssize_t show_debug_level(struct device *d,
3322 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003323{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003324 struct iwl_priv *priv = dev_get_drvdata(d);
3325 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003326}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003327static ssize_t store_debug_level(struct device *d,
3328 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003329 const char *buf, size_t count)
3330{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003331 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003332 unsigned long val;
3333 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003334
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003335 ret = strict_strtoul(buf, 0, &val);
3336 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003337 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003338 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003339 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003340 if (iwl_alloc_traffic_mem(priv))
3341 IWL_ERR(priv,
3342 "Not enough memory to generate traffic log\n");
3343 }
Zhu Yib481de92007-09-25 17:54:57 -07003344 return strnlen(buf, count);
3345}
3346
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003347static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3348 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003349
Samuel Ortizd08853a2009-01-23 13:45:17 -08003350#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003351
Zhu Yib481de92007-09-25 17:54:57 -07003352static ssize_t show_temperature(struct device *d,
3353 struct device_attribute *attr, char *buf)
3354{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003355 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003356
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003357 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003358 return -EAGAIN;
3359
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003360 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003361}
3362
3363static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3364
Zhu Yib481de92007-09-25 17:54:57 -07003365static ssize_t show_tx_power(struct device *d,
3366 struct device_attribute *attr, char *buf)
3367{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003368 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003369 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003370}
3371
3372static ssize_t store_tx_power(struct device *d,
3373 struct device_attribute *attr,
3374 const char *buf, size_t count)
3375{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003376 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003377 char *p = (char *)buf;
3378 u32 val;
3379
3380 val = simple_strtoul(p, &p, 10);
3381 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003382 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003383 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003384 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003385
3386 return count;
3387}
3388
3389static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3390
3391static ssize_t show_flags(struct device *d,
3392 struct device_attribute *attr, char *buf)
3393{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003394 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003395
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003396 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003397}
3398
3399static ssize_t store_flags(struct device *d,
3400 struct device_attribute *attr,
3401 const char *buf, size_t count)
3402{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003403 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003404 u32 flags = simple_strtoul(buf, NULL, 0);
3405
3406 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003407 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003408 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003409 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003410 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003411 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003412 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003413 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003414 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003415 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003416 }
3417 }
3418 mutex_unlock(&priv->mutex);
3419
3420 return count;
3421}
3422
3423static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3424
3425static ssize_t show_filter_flags(struct device *d,
3426 struct device_attribute *attr, char *buf)
3427{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003428 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003429
3430 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003431 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003432}
3433
3434static ssize_t store_filter_flags(struct device *d,
3435 struct device_attribute *attr,
3436 const char *buf, size_t count)
3437{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003438 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003439 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3440
3441 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003442 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003443 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003444 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003445 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003446 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003447 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003448 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003449 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003450 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003451 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003452 }
3453 }
3454 mutex_unlock(&priv->mutex);
3455
3456 return count;
3457}
3458
3459static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3460 store_filter_flags);
3461
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003462#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003463
3464static ssize_t show_measurement(struct device *d,
3465 struct device_attribute *attr, char *buf)
3466{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003467 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003468 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003469 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003470 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003471 unsigned long flags;
3472
3473 spin_lock_irqsave(&priv->lock, flags);
3474 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3475 spin_unlock_irqrestore(&priv->lock, flags);
3476 return 0;
3477 }
3478 memcpy(&measure_report, &priv->measure_report, size);
3479 priv->measurement_status = 0;
3480 spin_unlock_irqrestore(&priv->lock, flags);
3481
3482 while (size && (PAGE_SIZE - len)) {
3483 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3484 PAGE_SIZE - len, 1);
3485 len = strlen(buf);
3486 if (PAGE_SIZE - len)
3487 buf[len++] = '\n';
3488
3489 ofs += 16;
3490 size -= min(size, 16U);
3491 }
3492
3493 return len;
3494}
3495
3496static ssize_t store_measurement(struct device *d,
3497 struct device_attribute *attr,
3498 const char *buf, size_t count)
3499{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003500 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003501 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003502 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003503 .start_time = cpu_to_le64(priv->last_tsf),
3504 .duration = cpu_to_le16(1),
3505 };
3506 u8 type = IWL_MEASURE_BASIC;
3507 u8 buffer[32];
3508 u8 channel;
3509
3510 if (count) {
3511 char *p = buffer;
3512 strncpy(buffer, buf, min(sizeof(buffer), count));
3513 channel = simple_strtoul(p, NULL, 0);
3514 if (channel)
3515 params.channel = channel;
3516
3517 p = buffer;
3518 while (*p && *p != ' ')
3519 p++;
3520 if (*p)
3521 type = simple_strtoul(p + 1, NULL, 0);
3522 }
3523
Tomas Winklere1623442009-01-27 14:27:56 -08003524 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003525 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003526 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003527
3528 return count;
3529}
3530
3531static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3532 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003533#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003534
Zhu Yib481de92007-09-25 17:54:57 -07003535static ssize_t store_retry_rate(struct device *d,
3536 struct device_attribute *attr,
3537 const char *buf, size_t count)
3538{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003539 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003540
3541 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3542 if (priv->retry_rate <= 0)
3543 priv->retry_rate = 1;
3544
3545 return count;
3546}
3547
3548static ssize_t show_retry_rate(struct device *d,
3549 struct device_attribute *attr, char *buf)
3550{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003551 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003552 return sprintf(buf, "%d", priv->retry_rate);
3553}
3554
3555static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3556 store_retry_rate);
3557
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003558
Zhu Yib481de92007-09-25 17:54:57 -07003559static ssize_t show_channels(struct device *d,
3560 struct device_attribute *attr, char *buf)
3561{
Johannes Berg8318d782008-01-24 19:38:38 +01003562 /* all this shit doesn't belong into sysfs anyway */
3563 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003564}
3565
3566static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3567
3568static ssize_t show_statistics(struct device *d,
3569 struct device_attribute *attr, char *buf)
3570{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003571 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003572 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003573 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003574 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003575 int rc = 0;
3576
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003577 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003578 return -EAGAIN;
3579
3580 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003581 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003582 mutex_unlock(&priv->mutex);
3583
3584 if (rc) {
3585 len = sprintf(buf,
3586 "Error sending statistics request: 0x%08X\n", rc);
3587 return len;
3588 }
3589
3590 while (size && (PAGE_SIZE - len)) {
3591 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3592 PAGE_SIZE - len, 1);
3593 len = strlen(buf);
3594 if (PAGE_SIZE - len)
3595 buf[len++] = '\n';
3596
3597 ofs += 16;
3598 size -= min(size, 16U);
3599 }
3600
3601 return len;
3602}
3603
3604static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3605
3606static ssize_t show_antenna(struct device *d,
3607 struct device_attribute *attr, char *buf)
3608{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003609 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003610
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003611 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003612 return -EAGAIN;
3613
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003614 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003615}
3616
3617static ssize_t store_antenna(struct device *d,
3618 struct device_attribute *attr,
3619 const char *buf, size_t count)
3620{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003621 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003622 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003623
3624 if (count == 0)
3625 return 0;
3626
3627 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003628 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003629 return count;
3630 }
3631
3632 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003633 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003634 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003635 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003636 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003637
3638
3639 return count;
3640}
3641
3642static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3643
3644static ssize_t show_status(struct device *d,
3645 struct device_attribute *attr, char *buf)
3646{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003647 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003648 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003649 return -EAGAIN;
3650 return sprintf(buf, "0x%08x\n", (int)priv->status);
3651}
3652
3653static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3654
3655static ssize_t dump_error_log(struct device *d,
3656 struct device_attribute *attr,
3657 const char *buf, size_t count)
3658{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003659 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003660 char *p = (char *)buf;
3661
3662 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003663 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003664
3665 return strnlen(buf, count);
3666}
3667
3668static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3669
3670static ssize_t dump_event_log(struct device *d,
3671 struct device_attribute *attr,
3672 const char *buf, size_t count)
3673{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003674 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003675 char *p = (char *)buf;
3676
3677 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003678 iwl3945_dump_nic_event_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003679
3680 return strnlen(buf, count);
3681}
3682
3683static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
3684
3685/*****************************************************************************
3686 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003687 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003688 *
3689 *****************************************************************************/
3690
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003691static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003692{
Reinette Chatred21050c2009-02-13 11:51:18 -08003693 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003694
3695 init_waitqueue_head(&priv->wait_command_queue);
3696
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003697 INIT_WORK(&priv->up, iwl3945_bg_up);
3698 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3699 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003700 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003701 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3702 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003703 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003704 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3705 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3706 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3707 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003708
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003709 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003710
3711 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003712 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003713}
3714
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003715static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003716{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003717 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003718
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003719 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003720 cancel_delayed_work(&priv->scan_check);
3721 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003722 cancel_work_sync(&priv->beacon_update);
3723}
3724
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003725static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003726 &dev_attr_antenna.attr,
3727 &dev_attr_channels.attr,
3728 &dev_attr_dump_errors.attr,
3729 &dev_attr_dump_events.attr,
3730 &dev_attr_flags.attr,
3731 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003732#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003733 &dev_attr_measurement.attr,
3734#endif
Zhu Yib481de92007-09-25 17:54:57 -07003735 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003736 &dev_attr_statistics.attr,
3737 &dev_attr_status.attr,
3738 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003739 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003740#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003741 &dev_attr_debug_level.attr,
3742#endif
Zhu Yib481de92007-09-25 17:54:57 -07003743 NULL
3744};
3745
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003746static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003747 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003748 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003749};
3750
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003751static struct ieee80211_ops iwl3945_hw_ops = {
3752 .tx = iwl3945_mac_tx,
3753 .start = iwl3945_mac_start,
3754 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003755 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003756 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003757 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003758 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003759 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07003760 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003761 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003762 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003763 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08003764 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003765};
3766
Winkler, Tomase52119c2008-12-22 11:31:19 +08003767static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003768{
3769 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003770 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003771
3772 priv->retry_rate = 1;
3773 priv->ibss_beacon = NULL;
3774
3775 spin_lock_init(&priv->lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003776 spin_lock_init(&priv->sta_lock);
3777 spin_lock_init(&priv->hcmd_lock);
3778
3779 INIT_LIST_HEAD(&priv->free_frames);
3780
3781 mutex_init(&priv->mutex);
3782
3783 /* Clear the driver's (not device's) station table */
Tomas Winklerc587de02009-06-03 11:44:07 -07003784 iwl_clear_stations_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003785
3786 priv->data_retry_limit = -1;
3787 priv->ieee_channels = NULL;
3788 priv->ieee_rates = NULL;
3789 priv->band = IEEE80211_BAND_2GHZ;
3790
3791 priv->iw_mode = NL80211_IFTYPE_STATION;
3792
3793 iwl_reset_qos(priv);
3794
3795 priv->qos_data.qos_active = 0;
3796 priv->qos_data.qos_cap.val = 0;
3797
3798 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003799 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003800
Samuel Ortize6148912009-01-23 13:45:15 -08003801 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3802 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3803 eeprom->version);
3804 ret = -EINVAL;
3805 goto err;
3806 }
3807 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003808 if (ret) {
3809 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3810 goto err;
3811 }
3812
Samuel Ortize6148912009-01-23 13:45:15 -08003813 /* Set up txpower settings in driver for all channels */
3814 if (iwl3945_txpower_set_from_eeprom(priv)) {
3815 ret = -EIO;
3816 goto err_free_channel_map;
3817 }
3818
Samuel Ortiz534166d2009-01-23 13:45:16 -08003819 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003820 if (ret) {
3821 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3822 goto err_free_channel_map;
3823 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003824 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3825
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003826 return 0;
3827
3828err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003829 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003830err:
3831 return ret;
3832}
3833
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003834static int iwl3945_setup_mac(struct iwl_priv *priv)
3835{
3836 int ret;
3837 struct ieee80211_hw *hw = priv->hw;
3838
3839 hw->rate_control_algorithm = "iwl-3945-rs";
3840 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3841
3842 /* Tell mac80211 our characteristics */
3843 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07003844 IEEE80211_HW_NOISE_DBM |
Johannes Berge312c242009-08-07 15:41:51 -07003845 IEEE80211_HW_SPECTRUM_MGMT |
3846 IEEE80211_HW_SUPPORTS_PS |
3847 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003848
3849 hw->wiphy->interface_modes =
3850 BIT(NL80211_IFTYPE_STATION) |
3851 BIT(NL80211_IFTYPE_ADHOC);
3852
3853 hw->wiphy->custom_regulatory = true;
3854
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003855 /* Firmware does not support this */
3856 hw->wiphy->disable_beacon_hints = true;
3857
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003858 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3859 /* we create the 802.11 header and a zero-length SSID element */
3860 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003861
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003862 /* Default value; 4 EDCA QOS priorities */
3863 hw->queues = 4;
3864
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003865 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3866 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3867 &priv->bands[IEEE80211_BAND_2GHZ];
3868
3869 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3870 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3871 &priv->bands[IEEE80211_BAND_5GHZ];
3872
3873 ret = ieee80211_register_hw(priv->hw);
3874 if (ret) {
3875 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3876 return ret;
3877 }
3878 priv->mac80211_registered = 1;
3879
3880 return 0;
3881}
3882
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003883static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003884{
3885 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003886 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003887 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003888 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003889 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003890 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003891
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003892 /***********************
3893 * 1. Allocating HW data
3894 * ********************/
3895
Zhu Yib481de92007-09-25 17:54:57 -07003896 /* mac80211 allocates memory for this device instance, including
3897 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003898 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003899 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003900 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003901 err = -ENOMEM;
3902 goto out;
3903 }
Zhu Yib481de92007-09-25 17:54:57 -07003904 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003905 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003906
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003907 /*
3908 * Disabling hardware scan means that mac80211 will perform scans
3909 * "the hard way", rather than using device's scan.
3910 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003911 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003912 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003913 iwl3945_hw_ops.hw_scan = NULL;
3914 }
3915
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003916
Tomas Winklere1623442009-01-27 14:27:56 -08003917 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003918 priv->cfg = cfg;
3919 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003920 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003921
Samuel Ortizd08853a2009-01-23 13:45:17 -08003922#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003923 atomic_set(&priv->restrict_refcnt, 0);
3924#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003925 if (iwl_alloc_traffic_mem(priv))
3926 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003927
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003928 /***************************
3929 * 2. Initializing PCI bus
3930 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07003931 if (pci_enable_device(pdev)) {
3932 err = -ENODEV;
3933 goto out_ieee80211_free_hw;
3934 }
3935
3936 pci_set_master(pdev);
3937
Yang Hongyang284901a2009-04-06 19:01:15 -07003938 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003939 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07003940 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003941 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003942 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003943 goto out_pci_disable_device;
3944 }
3945
3946 pci_set_drvdata(pdev, priv);
3947 err = pci_request_regions(pdev, DRV_NAME);
3948 if (err)
3949 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003950
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003951 /***********************
3952 * 3. Read REV Register
3953 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07003954 priv->hw_base = pci_iomap(pdev, 0, 0);
3955 if (!priv->hw_base) {
3956 err = -ENODEV;
3957 goto out_pci_release_regions;
3958 }
3959
Tomas Winklere1623442009-01-27 14:27:56 -08003960 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07003961 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003962 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07003963
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003964 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3965 * PCI Tx retries from interfering with C3 CPU state */
3966 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07003967
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003968 /* this spin lock will be used in apm_ops.init and EEPROM access
3969 * we should init now
3970 */
3971 spin_lock_init(&priv->reg_lock);
3972
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003973 /* amp init */
3974 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003975 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07003976 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003977 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003978 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003979
3980 /***********************
3981 * 4. Read EEPROM
3982 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003983
Zhu Yi5a669262008-01-14 17:46:18 -08003984 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08003985 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003986 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003987 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08003988 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08003989 }
3990 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08003991 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
3992 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08003993 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08003994 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3995
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003996 /***********************
3997 * 5. Setup HW Constants
3998 * ********************/
3999 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004000 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004001 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004002 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004003 }
4004
4005 /***********************
4006 * 6. Setup priv
4007 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004008
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004009 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004010 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004011 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004012 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004013 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004014
Tomas Winkler978785a2008-12-19 10:37:31 +08004015 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4016 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004017
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004018 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004019 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004020 * ********************/
4021
4022 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004023 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004024 spin_unlock_irqrestore(&priv->lock, flags);
4025
Helmut Schaa26635162009-01-15 09:38:44 +01004026 pci_enable_msi(priv->pci_dev);
4027
Mohamed Abbasef850d72009-05-22 11:01:50 -07004028 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4029 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004030 if (err) {
4031 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4032 goto out_disable_msi;
4033 }
4034
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004035 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4036 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004037 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004038 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004039 }
4040
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004041 iwl_set_rxon_channel(priv,
4042 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004043 iwl3945_setup_deferred_work(priv);
4044 iwl3945_setup_rx_handlers(priv);
4045
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004046 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004047 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004048 * *******************************/
4049
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004050 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004051
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004052 err = iwl3945_setup_mac(priv);
4053 if (err)
4054 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004055
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004056 err = iwl_dbgfs_register(priv, DRV_NAME);
4057 if (err)
4058 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4059
Helmut Schaa26635162009-01-15 09:38:44 +01004060 /* Start monitoring the killswitch */
4061 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4062 2 * HZ);
4063
Zhu Yib481de92007-09-25 17:54:57 -07004064 return 0;
4065
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004066 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004067 destroy_workqueue(priv->workqueue);
4068 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004069 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4070 out_release_irq:
4071 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004072 out_disable_msi:
4073 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004074 iwlcore_free_geos(priv);
4075 iwl_free_channel_map(priv);
4076 out_unset_hw_params:
4077 iwl3945_unset_hw_params(priv);
4078 out_eeprom_free:
4079 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004080 out_iounmap:
4081 pci_iounmap(pdev, priv->hw_base);
4082 out_pci_release_regions:
4083 pci_release_regions(pdev);
4084 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004085 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004086 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004087 out_ieee80211_free_hw:
4088 ieee80211_free_hw(priv->hw);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004089 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004090 out:
4091 return err;
4092}
4093
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004094static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004095{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004096 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004097 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004098
4099 if (!priv)
4100 return;
4101
Tomas Winklere1623442009-01-27 14:27:56 -08004102 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004103
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004104 iwl_dbgfs_unregister(priv);
4105
Zhu Yib481de92007-09-25 17:54:57 -07004106 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004107
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004108 if (priv->mac80211_registered) {
4109 ieee80211_unregister_hw(priv->hw);
4110 priv->mac80211_registered = 0;
4111 } else {
4112 iwl3945_down(priv);
4113 }
Zhu Yib481de92007-09-25 17:54:57 -07004114
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004115 /* make sure we flush any pending irq or
4116 * tasklet for the driver
4117 */
4118 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004119 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004120 spin_unlock_irqrestore(&priv->lock, flags);
4121
4122 iwl_synchronize_irq(priv);
4123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004124 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004125
Reinette Chatre71d449b2009-04-20 14:37:01 -07004126 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004127
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004128 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004129
4130 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004131 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004132 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004133
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004134 iwl3945_unset_hw_params(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07004135 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004136
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004137 /*netif_stop_queue(dev); */
4138 flush_workqueue(priv->workqueue);
4139
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004140 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004141 * priv->workqueue... so we can't take down the workqueue
4142 * until now... */
4143 destroy_workqueue(priv->workqueue);
4144 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004145 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004146
Helmut Schaa26635162009-01-15 09:38:44 +01004147 free_irq(pdev->irq, priv);
4148 pci_disable_msi(pdev);
4149
Zhu Yib481de92007-09-25 17:54:57 -07004150 pci_iounmap(pdev, priv->hw_base);
4151 pci_release_regions(pdev);
4152 pci_disable_device(pdev);
4153 pci_set_drvdata(pdev, NULL);
4154
Samuel Ortize6148912009-01-23 13:45:15 -08004155 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004156 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004157 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004158 if (priv->ibss_beacon)
4159 dev_kfree_skb(priv->ibss_beacon);
4160
4161 ieee80211_free_hw(priv->hw);
4162}
4163
Zhu Yib481de92007-09-25 17:54:57 -07004164
4165/*****************************************************************************
4166 *
4167 * driver and module entry point
4168 *
4169 *****************************************************************************/
4170
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004171static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004172 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004173 .id_table = iwl3945_hw_card_ids,
4174 .probe = iwl3945_pci_probe,
4175 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004176#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004177 .suspend = iwl_pci_suspend,
4178 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004179#endif
4180};
4181
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004182static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004183{
4184
4185 int ret;
4186 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4187 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004188
4189 ret = iwl3945_rate_control_register();
4190 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004191 printk(KERN_ERR DRV_NAME
4192 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004193 return ret;
4194 }
4195
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004196 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004197 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004198 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004199 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004200 }
Zhu Yib481de92007-09-25 17:54:57 -07004201
4202 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004203
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004204error_register:
4205 iwl3945_rate_control_unregister();
4206 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004207}
4208
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004209static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004210{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004211 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004212 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004213}
4214
Reinette Chatrea0987a82008-12-02 12:14:06 -08004215MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004216
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004217module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004218MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004219module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4220MODULE_PARM_DESC(swcrypto,
4221 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004222#ifdef CONFIG_IWLWIFI_DEBUG
4223module_param_named(debug, iwl_debug_level, uint, 0644);
Zhu Yib481de92007-09-25 17:54:57 -07004224MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004225#endif
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004226module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004227MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Samuel Ortizaf48d042009-01-23 13:45:19 -08004228module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4229MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4230
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004231module_exit(iwl3945_exit);
4232module_init(iwl3945_init);