blob: e617411d0c5e4a7b439b426d73a6470cbf7c073c [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080054#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-3945.h"
56#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080058#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070059
Zhu Yib481de92007-09-25 17:54:57 -070060/*
61 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070062 */
63
64#define DRV_DESCRIPTION \
65"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
66
Samuel Ortizd08853a2009-01-23 13:45:17 -080067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070068#define VD "d"
69#else
70#define VD
71#endif
72
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080073#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070074#define VS "s"
75#else
76#define VS
77#endif
78
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080079#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatre01f81622009-01-08 10:20:02 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080082#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
89
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080090 /* module parameters */
91struct iwl_mod_params iwl3945_mod_params = {
Reinette Chatre5905a1a2009-07-09 10:33:40 -070092 .num_of_queues = IWL39_NUM_QUEUES, /* Not used */
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080093 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080094 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080095 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -080099 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
100 * @priv: eeprom and antenna fields are used to determine antenna flags
101 *
102 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
103 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
104 *
105 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
106 * IWL_ANTENNA_MAIN - Force MAIN antenna
107 * IWL_ANTENNA_AUX - Force AUX antenna
108 */
109__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
110{
111 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
112
113 switch (iwl3945_mod_params.antenna) {
114 case IWL_ANTENNA_DIVERSITY:
115 return 0;
116
117 case IWL_ANTENNA_MAIN:
118 if (eeprom->antenna_switch_type)
119 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
120 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
121
122 case IWL_ANTENNA_AUX:
123 if (eeprom->antenna_switch_type)
124 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
125 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
126 }
127
128 /* bad antenna selector value */
129 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
130 iwl3945_mod_params.antenna);
131
132 return 0; /* "diversity" is default if error */
133}
134
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800135static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700136 struct ieee80211_key_conf *keyconf,
137 u8 sta_id)
138{
139 unsigned long flags;
140 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800141 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700142
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800143 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
144 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
145
146 if (sta_id == priv->hw_params.bcast_sta_id)
147 key_flags |= STA_KEY_MULTICAST_MSK;
148
149 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
150 keyconf->hw_key_idx = keyconf->keyidx;
151 key_flags &= ~STA_KEY_FLG_INVALID;
152
Zhu Yib481de92007-09-25 17:54:57 -0700153 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700154 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
155 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
156 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700157 keyconf->keylen);
158
Tomas Winklerc587de02009-06-03 11:44:07 -0700159 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700160 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800161
Tomas Winklerc587de02009-06-03 11:44:07 -0700162 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800163 == STA_KEY_FLG_NO_ENC)
Tomas Winklerc587de02009-06-03 11:44:07 -0700164 priv->stations[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800165 iwl_get_free_ucode_key_index(priv);
166 /* else, we are overriding an existing key => no need to allocated room
167 * in uCode. */
168
Tomas Winklerc587de02009-06-03 11:44:07 -0700169 WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800170 "no space for a new key");
171
Tomas Winklerc587de02009-06-03 11:44:07 -0700172 priv->stations[sta_id].sta.key.key_flags = key_flags;
173 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
174 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700175
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800176 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
177
Tomas Winklerc587de02009-06-03 11:44:07 -0700178 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800179
Zhu Yib481de92007-09-25 17:54:57 -0700180 spin_unlock_irqrestore(&priv->sta_lock, flags);
181
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800182 return ret;
183}
184
185static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
186 struct ieee80211_key_conf *keyconf,
187 u8 sta_id)
188{
189 return -EOPNOTSUPP;
190}
191
192static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
193 struct ieee80211_key_conf *keyconf,
194 u8 sta_id)
195{
196 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700197}
198
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800199static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700200{
201 unsigned long flags;
202
203 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700204 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
205 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800206 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700207 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
208 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
209 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700210 spin_unlock_irqrestore(&priv->sta_lock, flags);
211
Tomas Winklere1623442009-01-27 14:27:56 -0800212 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Tomas Winklerc587de02009-06-03 11:44:07 -0700213 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700214 return 0;
215}
216
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700217static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800218 struct ieee80211_key_conf *keyconf, u8 sta_id)
219{
220 int ret = 0;
221
222 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
223
224 switch (keyconf->alg) {
225 case ALG_CCMP:
226 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
227 break;
228 case ALG_TKIP:
229 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
230 break;
231 case ALG_WEP:
232 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
233 break;
234 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700235 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800236 ret = -EINVAL;
237 }
238
239 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
240 keyconf->alg, keyconf->keylen, keyconf->keyidx,
241 sta_id, ret);
242
243 return ret;
244}
245
246static int iwl3945_remove_static_key(struct iwl_priv *priv)
247{
248 int ret = -EOPNOTSUPP;
249
250 return ret;
251}
252
253static int iwl3945_set_static_key(struct iwl_priv *priv,
254 struct ieee80211_key_conf *key)
255{
256 if (key->alg == ALG_WEP)
257 return -EOPNOTSUPP;
258
259 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
260 return -EINVAL;
261}
262
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800263static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700264{
265 struct list_head *element;
266
Tomas Winklere1623442009-01-27 14:27:56 -0800267 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700268 priv->frames_count);
269
270 while (!list_empty(&priv->free_frames)) {
271 element = priv->free_frames.next;
272 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800273 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700274 priv->frames_count--;
275 }
276
277 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800278 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700279 priv->frames_count);
280 priv->frames_count = 0;
281 }
282}
283
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800284static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700285{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700287 struct list_head *element;
288 if (list_empty(&priv->free_frames)) {
289 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
290 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800291 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700292 return NULL;
293 }
294
295 priv->frames_count++;
296 return frame;
297 }
298
299 element = priv->free_frames.next;
300 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800301 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700302}
303
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800304static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700305{
306 memset(frame, 0, sizeof(*frame));
307 list_add(&frame->list, &priv->free_frames);
308}
309
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800310unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700311 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200312 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700313{
314
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800315 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200316 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
317 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700318 return 0;
319
320 if (priv->ibss_beacon->len > left)
321 return 0;
322
323 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
324
325 return priv->ibss_beacon->len;
326}
327
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800328static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700329{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800330 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700331 unsigned int frame_size;
332 int rc;
333 u8 rate;
334
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800335 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700336
337 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800338 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700339 "command.\n");
340 return -ENOMEM;
341 }
342
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800343 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700344
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800345 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700346
Samuel Ortiz518099a2009-01-19 15:30:27 -0800347 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700348 &frame->u.cmd[0]);
349
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800350 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700351
352 return rc;
353}
354
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800355static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700356{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800357 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700358 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800359 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800360 priv->shared_virt,
361 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700362}
363
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800364static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200365 struct ieee80211_tx_info *info,
Johannes Bergc2acea82009-07-24 11:13:05 -0700366 struct iwl_device_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700367 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800368 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700369{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800370 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerc587de02009-06-03 11:44:07 -0700371 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700372
373 switch (keyinfo->alg) {
374 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800375 tx->sec_ctl = TX_CMD_SEC_CCM;
376 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800377 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700378 break;
379
380 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700381 break;
382
383 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800384 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200385 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700386
387 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800388 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700389
Winkler, Tomase52119c2008-12-22 11:31:19 +0800390 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700391
Tomas Winklere1623442009-01-27 14:27:56 -0800392 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200393 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700394 break;
395
Zhu Yib481de92007-09-25 17:54:57 -0700396 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800397 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700398 break;
399 }
400}
401
402/*
403 * handle build REPLY_TX command notification.
404 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800405static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Johannes Bergc2acea82009-07-24 11:13:05 -0700406 struct iwl_device_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200407 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800408 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700409{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800410 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
411 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700412 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200413 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -0700414
Winkler, Tomase52119c2008-12-22 11:31:19 +0800415 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200416 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700417 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700418 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700419 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700420 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700421 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
422 tx_flags |= TX_CMD_FLG_TSF_MSK;
423 } else {
424 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
425 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
426 }
427
Winkler, Tomase52119c2008-12-22 11:31:19 +0800428 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700429 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700430 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
431
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700432 if (ieee80211_is_data_qos(fc)) {
433 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800434 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700435 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800436 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700437 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800438 }
Zhu Yib481de92007-09-25 17:54:57 -0700439
Johannes Berge6a98542008-10-21 12:40:02 +0200440 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -0700441 tx_flags |= TX_CMD_FLG_RTS_MSK;
442 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +0200443 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -0700444 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
445 tx_flags |= TX_CMD_FLG_CTS_MSK;
446 }
447
448 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
449 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
450
451 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700452 if (ieee80211_is_mgmt(fc)) {
453 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +0800454 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700455 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800456 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700457 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +0800458 tx->timeout.pm_frame_timeout = 0;
Abhijeet Kolekar5c8df2d2009-03-11 11:17:55 -0700459#ifdef CONFIG_IWLWIFI_LEDS
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700460 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
461#endif
462 }
Zhu Yib481de92007-09-25 17:54:57 -0700463
Winkler, Tomase52119c2008-12-22 11:31:19 +0800464 tx->driver_txop = 0;
465 tx->tx_flags = tx_flags;
466 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700467}
468
Zhu Yib481de92007-09-25 17:54:57 -0700469/*
470 * start REPLY_TX command process
471 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800472static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700473{
474 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200475 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800476 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800477 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800478 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700479 struct iwl_device_cmd *out_cmd;
480 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700481 dma_addr_t phys_addr;
482 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800483 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700484 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800485 u8 id;
486 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700487 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800488 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700489 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700490 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700491 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800492 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700493 unsigned long flags;
494 int rc;
495
496 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800497 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800498 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700499 goto drop_unlock;
500 }
501
Johannes Berge039fa42008-05-15 12:55:29 +0200502 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800503 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700504 goto drop_unlock;
505 }
506
507 unicast = !is_multicast_ether_addr(hdr->addr1);
508 id = 0;
509
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700510 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700511
Samuel Ortizd08853a2009-01-23 13:45:17 -0800512#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700513 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800514 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700515 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800516 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700517 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800518 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700519#endif
520
Mohamed Abbas7878a5a2007-11-29 11:10:13 +0800521 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800522 if (ieee80211_is_data(fc) &&
Wey-Yi Guy279b05d2009-04-20 14:37:00 -0700523 (!iwl_is_monitor_mode(priv)) && /* packet injection */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800524 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200525 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800526 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700527 goto drop_unlock;
528 }
529
530 spin_unlock_irqrestore(&priv->lock, flags);
531
Harvey Harrison7294ec92008-07-15 18:43:59 -0700532 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800533
534 /* Find (or create) index into station table for destination station */
Abhijeet Kolekarf5d30262009-04-08 11:26:43 -0700535 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700536 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800537 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700538 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700539 goto drop;
540 }
541
Tomas Winklere1623442009-01-27 14:27:56 -0800542 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700543
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700544 if (ieee80211_is_data_qos(fc)) {
545 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700546 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Tomas Winklerc587de02009-06-03 11:44:07 -0700547 seq_number = priv->stations[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700548 IEEE80211_SCTL_SEQ;
549 hdr->seq_ctrl = cpu_to_le16(seq_number) |
550 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800551 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700552 seq_number += 0x10;
553 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800554
555 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800556 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700557 q = &txq->q;
558
559 spin_lock_irqsave(&priv->lock, flags);
560
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800561 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700562
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800563 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800564 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800565 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800566
567 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800568 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700569 out_meta = &txq->meta[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +0800570 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700571 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +0800572 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800573
574 /*
575 * Set up the Tx-command (not MAC!) header.
576 * Store the chosen Tx queue and TFD index within the sequence field;
577 * after Tx, uCode's Tx response will return this value so driver can
578 * locate the frame within the tx queue and do post-tx processing.
579 */
Zhu Yib481de92007-09-25 17:54:57 -0700580 out_cmd->hdr.cmd = REPLY_TX;
581 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800582 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800583
584 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800585 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700586
Reinette Chatredf833b12009-04-21 10:55:48 -0700587
588 if (info->control.hw_key)
589 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
590
591 /* TODO need this for burst mode later on */
592 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
593
594 /* set is_hcca to 0; it probably will never be implemented */
595 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
596
597 /* Total # bytes to be transmitted */
598 len = (u16)skb->len;
599 tx->len = cpu_to_le16(len);
600
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700601 iwl_dbg_log_tx_data_frame(priv, len, hdr);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700602 iwl_update_stats(priv, true, fc, len);
Reinette Chatredf833b12009-04-21 10:55:48 -0700603 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
604 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
605
606 if (!ieee80211_has_morefrags(hdr->frame_control)) {
607 txq->need_update = 1;
608 if (qc)
Tomas Winklerc587de02009-06-03 11:44:07 -0700609 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Reinette Chatredf833b12009-04-21 10:55:48 -0700610 } else {
611 wait_write_ptr = 1;
612 txq->need_update = 0;
613 }
614
615 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
616 le16_to_cpu(out_cmd->hdr.sequence));
617 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags));
Reinette Chatre3d816c72009-08-07 15:41:37 -0700618 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
619 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700620 ieee80211_hdrlen(fc));
621
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800622 /*
623 * Use the first empty entry in this queue's command buffer array
624 * to contain the Tx command and MAC header concatenated together
625 * (payload data will be in another buffer).
626 * Size of this varies, due to varying MAC header length.
627 * If end is not dword aligned, we'll have 2 extra bytes at the end
628 * of the MAC header (device reads on dword boundaries).
629 * We'll tell device about this padding later.
630 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800631 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800632 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700633
634 len_org = len;
635 len = (len + 3) & ~3;
636
637 if (len_org != len)
638 len_org = 1;
639 else
640 len_org = 0;
641
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800642 /* Physical address of this Tx command's header (not MAC header!),
643 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700644 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
645 len, PCI_DMA_TODEVICE);
646 /* we do not map meta data ... so we can safely access address to
647 * provide to unmap command*/
Johannes Bergc2acea82009-07-24 11:13:05 -0700648 pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
649 pci_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700650
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800651 /* Add buffer containing Tx command and MAC(!) header to TFD's
652 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800653 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
654 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700655
Zhu Yib481de92007-09-25 17:54:57 -0700656
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800657 /* Set up TFD's 2nd entry to point directly to remainder of skb,
658 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700659 len = skb->len - hdr_len;
660 if (len) {
661 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
662 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800663 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
664 phys_addr, len,
665 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700666 }
667
Zhu Yib481de92007-09-25 17:54:57 -0700668
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800669 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800670 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800671 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700672 spin_unlock_irqrestore(&priv->lock, flags);
673
674 if (rc)
675 return rc;
676
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800677 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700678 && priv->mac80211_registered) {
679 if (wait_write_ptr) {
680 spin_lock_irqsave(&priv->lock, flags);
681 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800682 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700683 spin_unlock_irqrestore(&priv->lock, flags);
684 }
685
Johannes Berge4e72fb2009-03-23 17:28:42 +0100686 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700687 }
688
689 return 0;
690
691drop_unlock:
692 spin_unlock_irqrestore(&priv->lock, flags);
693drop:
694 return -1;
695}
696
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800697#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700698
699#include "iwl-spectrum.h"
700
701#define BEACON_TIME_MASK_LOW 0x00FFFFFF
702#define BEACON_TIME_MASK_HIGH 0xFF000000
703#define TIME_UNIT 1024
704
705/*
706 * extended beacon time format
707 * time in usec will be changed into a 32-bit value in 8:24 format
708 * the high 1 byte is the beacon counts
709 * the lower 3 bytes is the time in usec within one beacon interval
710 */
711
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800712static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700713{
714 u32 quot;
715 u32 rem;
716 u32 interval = beacon_interval * 1024;
717
718 if (!interval || !usec)
719 return 0;
720
721 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
722 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
723
724 return (quot << 24) + rem;
725}
726
727/* base is usually what we get from ucode with each received frame,
728 * the same as HW timer counter counting down
729 */
730
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800731static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700732{
733 u32 base_low = base & BEACON_TIME_MASK_LOW;
734 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
735 u32 interval = beacon_interval * TIME_UNIT;
736 u32 res = (base & BEACON_TIME_MASK_HIGH) +
737 (addon & BEACON_TIME_MASK_HIGH);
738
739 if (base_low > addon_low)
740 res += base_low - addon_low;
741 else if (base_low < addon_low) {
742 res += interval + base_low - addon_low;
743 res += (1 << 24);
744 } else
745 res += (1 << 24);
746
747 return cpu_to_le32(res);
748}
749
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800750static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700751 struct ieee80211_measurement_params *params,
752 u8 type)
753{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800754 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800755 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800756 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700757 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
758 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700759 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700760 };
761 u32 add_time = le64_to_cpu(params->start_time);
762 int rc;
763 int spectrum_resp_status;
764 int duration = le16_to_cpu(params->duration);
765
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800766 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700767 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800768 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700769 le64_to_cpu(params->start_time) - priv->last_tsf,
770 le16_to_cpu(priv->rxon_timing.beacon_interval));
771
772 memset(&spectrum, 0, sizeof(spectrum));
773
774 spectrum.channel_count = cpu_to_le16(1);
775 spectrum.flags =
776 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
777 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
778 cmd.len = sizeof(spectrum);
779 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
780
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800781 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700782 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800783 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700784 add_time,
785 le16_to_cpu(priv->rxon_timing.beacon_interval));
786 else
787 spectrum.start_time = 0;
788
789 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
790 spectrum.channels[0].channel = params->channel;
791 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800792 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700793 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
794 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
795
Samuel Ortiz518099a2009-01-19 15:30:27 -0800796 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700797 if (rc)
798 return rc;
799
Johannes Bergc2acea82009-07-24 11:13:05 -0700800 res = (struct iwl_rx_packet *)cmd.reply_skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700801 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800802 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700803 rc = -EIO;
804 }
805
806 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
807 switch (spectrum_resp_status) {
808 case 0: /* Command will be handled */
809 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800810 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +0800811 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700812 priv->measurement_status &= ~MEASUREMENT_READY;
813 }
814 priv->measurement_status |= MEASUREMENT_ACTIVE;
815 rc = 0;
816 break;
817
818 case 1: /* Command will not be handled */
819 rc = -EAGAIN;
820 break;
821 }
822
Johannes Bergc2acea82009-07-24 11:13:05 -0700823 dev_kfree_skb_any(cmd.reply_skb);
Zhu Yib481de92007-09-25 17:54:57 -0700824
825 return rc;
826}
827#endif
828
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800829static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800830 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700831{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800832 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
833 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700834 struct delayed_work *pwork;
835
836 palive = &pkt->u.alive_frame;
837
Tomas Winklere1623442009-01-27 14:27:56 -0800838 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700839 "0x%01X 0x%01X\n",
840 palive->is_valid, palive->ver_type,
841 palive->ver_subtype);
842
843 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800844 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800845 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
846 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700847 pwork = &priv->init_alive_start;
848 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800849 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700850 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800851 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700852 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800853 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700854 }
855
856 /* We delay the ALIVE response by 5ms to
857 * give the HW RF Kill time to activate... */
858 if (palive->is_valid == UCODE_VALID_OK)
859 queue_delayed_work(priv->workqueue, pwork,
860 msecs_to_jiffies(5));
861 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800862 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700863}
864
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800865static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800866 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700867{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100868#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800869 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +0100870#endif
Zhu Yib481de92007-09-25 17:54:57 -0700871
Tomas Winklere1623442009-01-27 14:27:56 -0800872 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700873 return;
874}
875
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800876static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700877{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800878 struct iwl_priv *priv =
879 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700880 struct sk_buff *beacon;
881
882 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200883 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700884
885 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800886 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700887 return;
888 }
889
890 mutex_lock(&priv->mutex);
891 /* new beacon skb is allocated every time; dispose previous.*/
892 if (priv->ibss_beacon)
893 dev_kfree_skb(priv->ibss_beacon);
894
895 priv->ibss_beacon = beacon;
896 mutex_unlock(&priv->mutex);
897
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800898 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700899}
900
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800901static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800902 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700903{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800904#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800905 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800906 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700907 u8 rate = beacon->beacon_notify_hdr.rate;
908
Tomas Winklere1623442009-01-27 14:27:56 -0800909 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700910 "tsf %d %d rate %d\n",
911 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
912 beacon->beacon_notify_hdr.failure_frame,
913 le32_to_cpu(beacon->ibss_mgr_status),
914 le32_to_cpu(beacon->high_tsf),
915 le32_to_cpu(beacon->low_tsf), rate);
916#endif
917
Johannes Berg05c914f2008-09-11 00:01:58 +0200918 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700919 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
920 queue_work(priv->workqueue, &priv->beacon_update);
921}
922
Zhu Yib481de92007-09-25 17:54:57 -0700923/* Handle notification from uCode that card's power state is changing
924 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800925static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800926 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700927{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800928 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700929 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
930 unsigned long status = priv->status;
931
Reinette Chatre4c423a22009-07-17 09:30:26 -0700932 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700933 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
934 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
935
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800936 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700937 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
938
939 if (flags & HW_CARD_DISABLED)
940 set_bit(STATUS_RF_KILL_HW, &priv->status);
941 else
942 clear_bit(STATUS_RF_KILL_HW, &priv->status);
943
944
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800945 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700946
947 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200948 test_bit(STATUS_RF_KILL_HW, &priv->status)))
949 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
950 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700951 else
952 wake_up_interruptible(&priv->wait_command_queue);
953}
954
955/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800956 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700957 *
958 * Setup the RX handlers for each of the reply types sent from the uCode
959 * to the host.
960 *
961 * This function chains into the hardware specific files for them to setup
962 * any hardware specific handlers as well.
963 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800964static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700965{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800966 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
967 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800968 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800969 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800970 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700971 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800972 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800973 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700974
Ben Cahill9fbab512007-11-29 11:09:47 +0800975 /*
976 * The same handler is used for both the REPLY to a discrete
977 * statistics request from the host as well as for the periodic
978 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700979 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800980 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
981 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700982
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800983 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800984 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800985 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700986
Ben Cahill9fbab512007-11-29 11:09:47 +0800987 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800988 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700989}
990
Zhu Yib481de92007-09-25 17:54:57 -0700991/************************** RX-FUNCTIONS ****************************/
992/*
993 * Rx theory of operation
994 *
995 * The host allocates 32 DMA target addresses and passes the host address
996 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
997 * 0 to 31
998 *
999 * Rx Queue Indexes
1000 * The host/firmware share two index registers for managing the Rx buffers.
1001 *
1002 * The READ index maps to the first position that the firmware may be writing
1003 * to -- the driver can read up to (but not including) this position and get
1004 * good data.
1005 * The READ index is managed by the firmware once the card is enabled.
1006 *
1007 * The WRITE index maps to the last position the driver has read from -- the
1008 * position preceding WRITE is the last slot the firmware can place a packet.
1009 *
1010 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1011 * WRITE = READ.
1012 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001013 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001014 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1015 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001016 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001017 * and fire the RX interrupt. The driver can then query the READ index and
1018 * process as many packets as possible, moving the WRITE index forward as it
1019 * resets the Rx queue buffers with new memory.
1020 *
1021 * The management in the driver is as follows:
1022 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1023 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001024 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001025 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001026 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1027 * 'processed' and 'read' driver indexes as well)
1028 * + A received packet is processed and handed to the kernel network stack,
1029 * detached from the iwl->rxq. The driver 'processed' index is updated.
1030 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1031 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1032 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1033 * were enough free buffers and RX_STALLED is set it is cleared.
1034 *
1035 *
1036 * Driver sequence:
1037 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001038 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001039 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001040 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001041 * queue, updates firmware pointers, and updates
1042 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001043 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001044 *
1045 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001046 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001047 * READ INDEX, detaching the SKB from the pool.
1048 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001049 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001050 * slots.
1051 * ...
1052 *
1053 */
1054
1055/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001056 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001057 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001058static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001059 dma_addr_t dma_addr)
1060{
1061 return cpu_to_le32((u32)dma_addr);
1062}
1063
1064/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001065 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001066 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001067 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001068 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001069 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001070 *
1071 * This moves the 'write' index forward to catch up with 'processed', and
1072 * also updates the memory address in the firmware to reference the new
1073 * target buffer.
1074 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001075static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001076{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001077 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001078 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001079 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001080 unsigned long flags;
1081 int write, rc;
1082
1083 spin_lock_irqsave(&rxq->lock, flags);
1084 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001085 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001086 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001087 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001088 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001089 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001090
1091 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001092 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001093 rxq->queue[rxq->write] = rxb;
1094 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1095 rxq->free_count--;
1096 }
1097 spin_unlock_irqrestore(&rxq->lock, flags);
1098 /* If the pre-allocated buffer pool is dropping low, schedule to
1099 * refill it */
1100 if (rxq->free_count <= RX_LOW_WATERMARK)
1101 queue_work(priv->workqueue, &priv->rx_replenish);
1102
1103
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001104 /* If we've added more space for the firmware to place data, tell it.
1105 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001106 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001107 || (abs(rxq->write - rxq->read) > 7)) {
1108 spin_lock_irqsave(&rxq->lock, flags);
1109 rxq->need_update = 1;
1110 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001111 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001112 if (rc)
1113 return rc;
1114 }
1115
1116 return 0;
1117}
1118
1119/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001120 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001121 *
1122 * When moving to rx_free an SKB is allocated for the slot.
1123 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001124 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001125 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001126 */
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001127static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001128{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001129 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001130 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001131 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001132 unsigned long flags;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001133
1134 while (1) {
1135 spin_lock_irqsave(&rxq->lock, flags);
1136
1137 if (list_empty(&rxq->rx_used)) {
1138 spin_unlock_irqrestore(&rxq->lock, flags);
1139 return;
1140 }
1141
Zhu Yib481de92007-09-25 17:54:57 -07001142 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001143 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001144 list_del(element);
1145 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001146
1147 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001148 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001149 alloc_skb(priv->hw_params.rx_buf_size,
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001150 priority);
Zhu Yib481de92007-09-25 17:54:57 -07001151 if (!rxb->skb) {
1152 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001153 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001154 /* We don't reschedule replenish work here -- we will
1155 * call the restock method and if it still needs
1156 * more buffers it will schedule replenish */
1157 break;
1158 }
Zhu Yi12342c42007-12-20 11:27:32 +08001159
1160 /* If radiotap head is required, reserve some headroom here.
1161 * The physical head count is a variable rx_stats->phy_count.
1162 * We reserve 4 bytes here. Plus these extra bytes, the
1163 * headroom of the physical head should be enough for the
1164 * radiotap head that iwl3945 supported. See iwl3945_rt.
1165 */
1166 skb_reserve(rxb->skb, 4);
1167
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001168 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001169 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1170 rxb->skb->data,
1171 priv->hw_params.rx_buf_size,
1172 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001173
1174 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001175 list_add_tail(&rxb->list, &rxq->rx_free);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001176 priv->alloc_rxb_skb++;
Zhu Yib481de92007-09-25 17:54:57 -07001177 rxq->free_count++;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001178 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001179 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001180}
1181
Reinette Chatredf833b12009-04-21 10:55:48 -07001182void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1183{
1184 unsigned long flags;
1185 int i;
1186 spin_lock_irqsave(&rxq->lock, flags);
1187 INIT_LIST_HEAD(&rxq->rx_free);
1188 INIT_LIST_HEAD(&rxq->rx_used);
1189 /* Fill the rx_used queue with _all_ of the Rx buffers */
1190 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1191 /* In the reset function, these buffers may have been allocated
1192 * to an SKB, so we need to unmap and free potential storage */
1193 if (rxq->pool[i].skb != NULL) {
1194 pci_unmap_single(priv->pci_dev,
1195 rxq->pool[i].real_dma_addr,
1196 priv->hw_params.rx_buf_size,
1197 PCI_DMA_FROMDEVICE);
1198 priv->alloc_rxb_skb--;
1199 dev_kfree_skb(rxq->pool[i].skb);
1200 rxq->pool[i].skb = NULL;
1201 }
1202 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1203 }
1204
1205 /* Set us so that we have processed and used all buffers, but have
1206 * not restocked the Rx queue with fresh buffers */
1207 rxq->read = rxq->write = 0;
1208 rxq->free_count = 0;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001209 rxq->write_actual = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001210 spin_unlock_irqrestore(&rxq->lock, flags);
1211}
Reinette Chatredf833b12009-04-21 10:55:48 -07001212
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001213void iwl3945_rx_replenish(void *data)
1214{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001215 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001216 unsigned long flags;
1217
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001218 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001219
1220 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001221 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001222 spin_unlock_irqrestore(&priv->lock, flags);
1223}
1224
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001225static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1226{
1227 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1228
1229 iwl3945_rx_queue_restock(priv);
1230}
1231
1232
Reinette Chatredf833b12009-04-21 10:55:48 -07001233/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1234 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1235 * This free routine walks the list of POOL entries and if SKB is set to
1236 * non NULL it is unmapped and freed
1237 */
1238static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1239{
1240 int i;
1241 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1242 if (rxq->pool[i].skb != NULL) {
1243 pci_unmap_single(priv->pci_dev,
1244 rxq->pool[i].real_dma_addr,
1245 priv->hw_params.rx_buf_size,
1246 PCI_DMA_FROMDEVICE);
1247 dev_kfree_skb(rxq->pool[i].skb);
1248 }
1249 }
1250
1251 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1252 rxq->dma_addr);
1253 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1254 rxq->rb_stts, rxq->rb_stts_dma);
1255 rxq->bd = NULL;
1256 rxq->rb_stts = NULL;
1257}
Reinette Chatredf833b12009-04-21 10:55:48 -07001258
1259
Zhu Yib481de92007-09-25 17:54:57 -07001260/* Convert linear signal-to-noise ratio into dB */
1261static u8 ratio2dB[100] = {
1262/* 0 1 2 3 4 5 6 7 8 9 */
1263 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1264 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1265 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1266 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1267 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1268 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1269 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1270 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1271 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1272 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1273};
1274
1275/* Calculates a relative dB value from a ratio of linear
1276 * (i.e. not dB) signal levels.
1277 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001278int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001279{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001280 /* 1000:1 or higher just report as 60 dB */
1281 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001282 return 60;
1283
Adrian Bunk221c80c2008-02-02 23:19:01 +02001284 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001285 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001286 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001287 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001288
1289 /* We shouldn't see this */
1290 if (sig_ratio < 1)
1291 return 0;
1292
1293 /* Use table for ratios 1:1 - 99:1 */
1294 return (int)ratio2dB[sig_ratio];
1295}
1296
1297#define PERFECT_RSSI (-20) /* dBm */
1298#define WORST_RSSI (-95) /* dBm */
1299#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1300
1301/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1302 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1303 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001304int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001305{
1306 int sig_qual;
1307 int degradation = PERFECT_RSSI - rssi_dbm;
1308
1309 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1310 * as indicator; formula is (signal dbm - noise dbm).
1311 * SNR at or above 40 is a great signal (100%).
1312 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1313 * Weakest usable signal is usually 10 - 15 dB SNR. */
1314 if (noise_dbm) {
1315 if (rssi_dbm - noise_dbm >= 40)
1316 return 100;
1317 else if (rssi_dbm < noise_dbm)
1318 return 0;
1319 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1320
1321 /* Else use just the signal level.
1322 * This formula is a least squares fit of data points collected and
1323 * compared with a reference system that had a percentage (%) display
1324 * for signal quality. */
1325 } else
1326 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1327 (15 * RSSI_RANGE + 62 * degradation)) /
1328 (RSSI_RANGE * RSSI_RANGE);
1329
1330 if (sig_qual > 100)
1331 sig_qual = 100;
1332 else if (sig_qual < 1)
1333 sig_qual = 0;
1334
1335 return sig_qual;
1336}
1337
1338/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001339 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001340 *
1341 * Uses the priv->rx_handlers callback function array to invoke
1342 * the appropriate handlers, including command responses,
1343 * frame-received notifications, and other notifications.
1344 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001345static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001346{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001347 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001348 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001349 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001350 u32 r, i;
1351 int reclaim;
1352 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001353 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001354 u32 count = 8;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001355 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001356
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001357 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1358 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001359 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001360 i = rxq->read;
1361
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001362 /* calculate total frames need to be restock after handling RX */
1363 total_empty = r - priv->rxq.write_actual;
1364 if (total_empty < 0)
1365 total_empty += RX_QUEUE_SIZE;
1366
1367 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001368 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001369 /* Rx interrupt, but nothing sent from uCode */
1370 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001371 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001372
1373 while (i != r) {
1374 rxb = rxq->queue[i];
1375
Ben Cahill9fbab512007-11-29 11:09:47 +08001376 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001377 * then a bug has been introduced in the queue refilling
1378 * routines -- catch it here */
1379 BUG_ON(rxb == NULL);
1380
1381 rxq->queue[i] = NULL;
1382
Reinette Chatredf833b12009-04-21 10:55:48 -07001383 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1384 priv->hw_params.rx_buf_size,
1385 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001386 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 /* Reclaim a command buffer only if this packet is a response
1389 * to a (driver-originated) command.
1390 * If the packet (e.g. Rx frame) originated from uCode,
1391 * there is no command buffer to reclaim.
1392 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1393 * but apparently a few don't get set; catch them here. */
1394 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1395 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1396 (pkt->hdr.cmd != REPLY_TX);
1397
1398 /* Based on type of command response or notification,
1399 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001400 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001401 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001402 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001403 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1404 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1405 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001406 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yib481de92007-09-25 17:54:57 -07001407 } else {
1408 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001409 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001410 "r %d i %d No handler needed for %s, 0x%02x\n",
1411 r, i, get_cmd_string(pkt->hdr.cmd),
1412 pkt->hdr.cmd);
1413 }
1414
1415 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001416 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001417 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001418 * as we reclaim the driver command queue */
1419 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001420 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001421 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001422 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001423 }
1424
1425 /* For now we just don't re-use anything. We can tweak this
1426 * later to try and re-use notification packets and SKBs that
1427 * fail to Rx correctly */
1428 if (rxb->skb != NULL) {
1429 priv->alloc_rxb_skb--;
1430 dev_kfree_skb_any(rxb->skb);
1431 rxb->skb = NULL;
1432 }
1433
Zhu Yib481de92007-09-25 17:54:57 -07001434 spin_lock_irqsave(&rxq->lock, flags);
1435 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1436 spin_unlock_irqrestore(&rxq->lock, flags);
1437 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001438 /* If there are a lot of unused frames,
1439 * restock the Rx queue so ucode won't assert. */
1440 if (fill_rx) {
1441 count++;
1442 if (count >= 8) {
1443 priv->rxq.read = i;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001444 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001445 count = 0;
1446 }
1447 }
Zhu Yib481de92007-09-25 17:54:57 -07001448 }
1449
1450 /* Backtrack one entry */
1451 priv->rxq.read = i;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001452 if (fill_rx)
1453 iwl3945_rx_replenish_now(priv);
1454 else
1455 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001456}
1457
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001458/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001459static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001460{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001461 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001462 synchronize_irq(priv->pci_dev->irq);
1463 tasklet_kill(&priv->irq_tasklet);
1464}
1465
Zhu Yib481de92007-09-25 17:54:57 -07001466static const char *desc_lookup(int i)
1467{
1468 switch (i) {
1469 case 1:
1470 return "FAIL";
1471 case 2:
1472 return "BAD_PARAM";
1473 case 3:
1474 return "BAD_CHECKSUM";
1475 case 4:
1476 return "NMI_INTERRUPT";
1477 case 5:
1478 return "SYSASSERT";
1479 case 6:
1480 return "FATAL_ERROR";
1481 }
1482
1483 return "UNKNOWN";
1484}
1485
1486#define ERROR_START_OFFSET (1 * sizeof(u32))
1487#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1488
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001489static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001490{
1491 u32 i;
1492 u32 desc, time, count, base, data1;
1493 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001494
1495 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1496
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001497 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001498 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001499 return;
1500 }
1501
Zhu Yib481de92007-09-25 17:54:57 -07001502
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001503 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001504
1505 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001506 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1507 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1508 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001509 }
1510
Winkler, Tomas15b16872008-12-19 10:37:33 +08001511 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001512 "ilink1 nmiPC Line\n");
1513 for (i = ERROR_START_OFFSET;
1514 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1515 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001516 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001517 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001518 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001519 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001520 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001521 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001522 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001523 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001524 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001525 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001526 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001527 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001528 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001529
Winkler, Tomas15b16872008-12-19 10:37:33 +08001530 IWL_ERR(priv,
1531 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1532 desc_lookup(desc), desc, time, blink1, blink2,
1533 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001534 }
1535
Zhu Yib481de92007-09-25 17:54:57 -07001536}
1537
Ben Cahillf58177b2007-11-29 11:09:43 +08001538#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001539
1540/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001541 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001542 *
Zhu Yib481de92007-09-25 17:54:57 -07001543 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001544static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001545 u32 num_events, u32 mode)
1546{
1547 u32 i;
1548 u32 base; /* SRAM byte address of event log header */
1549 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1550 u32 ptr; /* SRAM byte address of log data */
1551 u32 ev, time, data; /* event log data */
1552
1553 if (num_events == 0)
1554 return;
1555
1556 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1557
1558 if (mode == 0)
1559 event_size = 2 * sizeof(u32);
1560 else
1561 event_size = 3 * sizeof(u32);
1562
1563 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1564
1565 /* "time" is actually "data" for mode 0 (no timestamp).
1566 * place event id # at far right for easier visual parsing. */
1567 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001568 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001569 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001570 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001571 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001572 if (mode == 0) {
1573 /* data, ev */
1574 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1575 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001576 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001577 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001578 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001579 }
1580 }
1581}
1582
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001583static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001584{
Zhu Yib481de92007-09-25 17:54:57 -07001585 u32 base; /* SRAM byte address of event log header */
1586 u32 capacity; /* event log capacity in # entries */
1587 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1588 u32 num_wraps; /* # times uCode wrapped to top of log */
1589 u32 next_entry; /* index of next entry to be written by uCode */
1590 u32 size; /* # entries that we'll print */
1591
1592 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001593 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001594 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001595 return;
1596 }
1597
Zhu Yib481de92007-09-25 17:54:57 -07001598 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001599 capacity = iwl_read_targ_mem(priv, base);
1600 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1601 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1602 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001603
1604 size = num_wraps ? capacity : next_entry;
1605
1606 /* bail out if nothing in log */
1607 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001608 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Zhu Yib481de92007-09-25 17:54:57 -07001609 return;
1610 }
1611
Winkler, Tomas15b16872008-12-19 10:37:33 +08001612 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001613 size, num_wraps);
1614
1615 /* if uCode has wrapped back to top of log, start at the oldest entry,
1616 * i.e the next one that uCode would fill. */
1617 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001618 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001619 capacity - next_entry, mode);
1620
1621 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001622 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001623
Zhu Yib481de92007-09-25 17:54:57 -07001624}
1625
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001626static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001627{
1628 u32 inta, handled = 0;
1629 u32 inta_fh;
1630 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001631#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001632 u32 inta_mask;
1633#endif
1634
1635 spin_lock_irqsave(&priv->lock, flags);
1636
1637 /* Ack/clear/reset pending uCode interrupts.
1638 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1639 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001640 inta = iwl_read32(priv, CSR_INT);
1641 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001642
1643 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1644 * Any new interrupts that happen after this, either while we're
1645 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001646 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1647 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001648
Samuel Ortizd08853a2009-01-23 13:45:17 -08001649#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001650 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001651 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001652 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001653 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001654 inta, inta_mask, inta_fh);
1655 }
1656#endif
1657
1658 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1659 * atomic, make sure that inta covers all the interrupts that
1660 * we've discovered, even if FH interrupt came in just after
1661 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001662 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001663 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001664 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001665 inta |= CSR_INT_BIT_FH_TX;
1666
1667 /* Now service all interrupt bits discovered above. */
1668 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001669 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001670
1671 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001672 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001673
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001674 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001675 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001676
1677 handled |= CSR_INT_BIT_HW_ERR;
1678
1679 spin_unlock_irqrestore(&priv->lock, flags);
1680
1681 return;
1682 }
1683
Samuel Ortizd08853a2009-01-23 13:45:17 -08001684#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001685 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001686 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001687 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001688 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001689 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001690 priv->isr_stats.sch++;
1691 }
Zhu Yib481de92007-09-25 17:54:57 -07001692
1693 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001694 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001695 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001696 priv->isr_stats.alive++;
1697 }
Zhu Yib481de92007-09-25 17:54:57 -07001698 }
1699#endif
1700 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001701 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001702
Zhu Yib481de92007-09-25 17:54:57 -07001703 /* Error detected by uCode */
1704 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001705 IWL_ERR(priv, "Microcode SW error detected. "
1706 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001707 priv->isr_stats.sw++;
1708 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001709 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001710 handled |= CSR_INT_BIT_SW_ERR;
1711 }
1712
1713 /* uCode wakes up after power-down sleep */
1714 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001715 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001716 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001717 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1718 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1719 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1720 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1721 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1722 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001723
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001724 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001725 handled |= CSR_INT_BIT_WAKEUP;
1726 }
1727
1728 /* All uCode command responses, including Tx command responses,
1729 * Rx "responses" (frame-received notification), and other
1730 * notifications from uCode come through here*/
1731 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001732 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001733 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001734 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1735 }
1736
1737 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001738 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001739 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001740
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001741 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001742 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1743 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001744 handled |= CSR_INT_BIT_FH_TX;
1745 }
1746
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001747 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001748 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001749 priv->isr_stats.unhandled++;
1750 }
Zhu Yib481de92007-09-25 17:54:57 -07001751
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001752 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001753 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001754 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001755 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001756 }
1757
1758 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001759 /* only Re-enable if disabled by irq */
1760 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001761 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001762
Samuel Ortizd08853a2009-01-23 13:45:17 -08001763#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001764 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001765 inta = iwl_read32(priv, CSR_INT);
1766 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1767 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001768 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001769 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1770 }
1771#endif
1772 spin_unlock_irqrestore(&priv->lock, flags);
1773}
1774
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001775static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001776 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001777 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001778 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001779{
Johannes Berg4e05c232009-06-19 13:52:44 -07001780 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001781 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001782 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001783 u16 passive_dwell = 0;
1784 u16 active_dwell = 0;
1785 int added, i;
1786
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001787 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001788 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001789 return 0;
1790
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001791 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1792 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001793
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001794 if (passive_dwell <= active_dwell)
1795 passive_dwell = active_dwell + 1;
1796
Johannes Berg4e05c232009-06-19 13:52:44 -07001797 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1798 chan = priv->scan_request->channels[i];
1799
1800 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001801 continue;
1802
Johannes Berg4e05c232009-06-19 13:52:44 -07001803 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001804
Samuel Ortize6148912009-01-23 13:45:15 -08001805 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001806 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001807 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001808 scan_ch->channel);
1809 continue;
1810 }
1811
Zhu Yib481de92007-09-25 17:54:57 -07001812 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1813 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001814 /* If passive , set up for auto-switch
1815 * and use long active_dwell time.
1816 */
1817 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001818 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001819 scan_ch->type = 0; /* passive */
1820 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1821 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1822 } else {
1823 scan_ch->type = 1; /* active */
1824 }
1825
1826 /* Set direct probe bits. These may be used both for active
1827 * scan channels (probes gets sent right away),
1828 * or for passive channels (probes get se sent only after
1829 * hearing clear Rx packet).*/
1830 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1831 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001832 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001833 } else {
1834 /* uCode v1 does not allow setting direct probe bits on
1835 * passive channel. */
1836 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001837 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001838 }
Zhu Yib481de92007-09-25 17:54:57 -07001839
Ben Cahill9fbab512007-11-29 11:09:47 +08001840 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001841 scan_ch->tpc.dsp_atten = 110;
1842 /* scan_pwr_info->tpc.dsp_atten; */
1843
1844 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001845 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001846 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1847 else {
1848 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1849 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001850 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001851 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001852 */
1853 }
1854
Tomas Winklere1623442009-01-27 14:27:56 -08001855 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001856 scan_ch->channel,
1857 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1858 (scan_ch->type & 1) ?
1859 active_dwell : passive_dwell);
1860
1861 scan_ch++;
1862 added++;
1863 }
1864
Tomas Winklere1623442009-01-27 14:27:56 -08001865 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001866 return added;
1867}
1868
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001869static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001870 struct ieee80211_rate *rates)
1871{
1872 int i;
1873
1874 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001875 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1876 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1877 rates[i].hw_value_short = i;
1878 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001879 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001880 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001881 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001882 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001883 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001884 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001885 }
Zhu Yib481de92007-09-25 17:54:57 -07001886 }
1887}
1888
Zhu Yib481de92007-09-25 17:54:57 -07001889/******************************************************************************
1890 *
1891 * uCode download functions
1892 *
1893 ******************************************************************************/
1894
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001895static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001896{
Tomas Winkler98c92212008-01-14 17:46:20 -08001897 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1898 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1899 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1900 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1901 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1902 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001903}
1904
1905/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001906 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001907 * looking at all data.
1908 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001909static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001910{
1911 u32 val;
1912 u32 save_len = len;
1913 int rc = 0;
1914 u32 errcnt;
1915
Tomas Winklere1623442009-01-27 14:27:56 -08001916 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001917
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001918 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001919 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07001920
1921 errcnt = 0;
1922 for (; len > 0; len -= sizeof(u32), image++) {
1923 /* read data comes through single port, auto-incr addr */
1924 /* NOTE: Use the debugless read so we don't flood kernel log
1925 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001926 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001927 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001928 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001929 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1930 save_len - len, val, le32_to_cpu(*image));
1931 rc = -EIO;
1932 errcnt++;
1933 if (errcnt >= 20)
1934 break;
1935 }
1936 }
1937
Zhu Yib481de92007-09-25 17:54:57 -07001938
1939 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08001940 IWL_DEBUG_INFO(priv,
1941 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07001942
1943 return rc;
1944}
1945
1946
1947/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001948 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001949 * using sample data 100 bytes apart. If these sample points are good,
1950 * it's a pretty good bet that everything between them is good, too.
1951 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001952static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001953{
1954 u32 val;
1955 int rc = 0;
1956 u32 errcnt = 0;
1957 u32 i;
1958
Tomas Winklere1623442009-01-27 14:27:56 -08001959 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001960
Zhu Yib481de92007-09-25 17:54:57 -07001961 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
1962 /* read data comes through single port, auto-incr addr */
1963 /* NOTE: Use the debugless read so we don't flood kernel log
1964 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001965 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001966 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001967 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001968 if (val != le32_to_cpu(*image)) {
1969#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001970 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001971 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1972 i, val, *image);
1973#endif
1974 rc = -EIO;
1975 errcnt++;
1976 if (errcnt >= 3)
1977 break;
1978 }
1979 }
1980
Zhu Yib481de92007-09-25 17:54:57 -07001981 return rc;
1982}
1983
1984
1985/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001986 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07001987 * and verify its contents
1988 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001989static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001990{
1991 __le32 *image;
1992 u32 len;
1993 int rc = 0;
1994
1995 /* Try bootstrap */
1996 image = (__le32 *)priv->ucode_boot.v_addr;
1997 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001998 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07001999 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002000 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002001 return 0;
2002 }
2003
2004 /* Try initialize */
2005 image = (__le32 *)priv->ucode_init.v_addr;
2006 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002007 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002008 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002009 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002010 return 0;
2011 }
2012
2013 /* Try runtime/protocol */
2014 image = (__le32 *)priv->ucode_code.v_addr;
2015 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002016 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002017 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002018 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002019 return 0;
2020 }
2021
Winkler, Tomas15b16872008-12-19 10:37:33 +08002022 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002023
Ben Cahill9fbab512007-11-29 11:09:47 +08002024 /* Since nothing seems to match, show first several data entries in
2025 * instruction SRAM, so maybe visual inspection will give a clue.
2026 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002027 image = (__le32 *)priv->ucode_boot.v_addr;
2028 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002029 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002030
2031 return rc;
2032}
2033
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002034static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002035{
2036 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002037 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002038}
2039
2040/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002041 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002042 *
2043 * Copy into buffers for card to fetch via bus-mastering
2044 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002045static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002046{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002047 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002048 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002049 const struct firmware *ucode_raw;
2050 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002051 const char *name_pre = priv->cfg->fw_name_pre;
2052 const unsigned int api_max = priv->cfg->ucode_api_max;
2053 const unsigned int api_min = priv->cfg->ucode_api_min;
2054 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002055 u8 *src;
2056 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002057 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002058
2059 /* Ask kernel firmware_class module to get the boot firmware off disk.
2060 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002061 for (index = api_max; index >= api_min; index--) {
2062 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2063 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2064 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002065 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002066 buf, ret);
2067 if (ret == -ENOENT)
2068 continue;
2069 else
2070 goto error;
2071 } else {
2072 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002073 IWL_ERR(priv, "Loaded firmware %s, "
2074 "which is deprecated. "
2075 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002076 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002077 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2078 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002079 buf, ucode_raw->size);
2080 break;
2081 }
Zhu Yib481de92007-09-25 17:54:57 -07002082 }
2083
Reinette Chatrea0987a82008-12-02 12:14:06 -08002084 if (ret < 0)
2085 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002086
2087 /* Make sure that we got at least our header! */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002088 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002089 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002090 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002091 goto err_release;
2092 }
2093
2094 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002095 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002096
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002097 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002098 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002099 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2100 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2101 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2102 init_data_size =
2103 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2104 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2105 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002106
Reinette Chatrea0987a82008-12-02 12:14:06 -08002107 /* api_ver should match the api version forming part of the
2108 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002109 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002110
2111 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002112 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002113 "Driver supports v%u, firmware is v%u.\n",
2114 api_max, api_ver);
2115 priv->ucode_ver = 0;
2116 ret = -EINVAL;
2117 goto err_release;
2118 }
2119 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002120 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002121 "got %u. New firmware can be obtained "
2122 "from http://www.intellinuxwireless.org.\n",
2123 api_max, api_ver);
2124
Tomas Winkler978785a2008-12-19 10:37:31 +08002125 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2126 IWL_UCODE_MAJOR(priv->ucode_ver),
2127 IWL_UCODE_MINOR(priv->ucode_ver),
2128 IWL_UCODE_API(priv->ucode_ver),
2129 IWL_UCODE_SERIAL(priv->ucode_ver));
2130
Tomas Winklere1623442009-01-27 14:27:56 -08002131 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002132 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002133 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2134 inst_size);
2135 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2136 data_size);
2137 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2138 init_size);
2139 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2140 init_data_size);
2141 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2142 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002143
Reinette Chatrea0987a82008-12-02 12:14:06 -08002144
Zhu Yib481de92007-09-25 17:54:57 -07002145 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002146 if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002147 inst_size + data_size + init_size +
2148 init_data_size + boot_size) {
2149
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002150 IWL_DEBUG_INFO(priv,
2151 "uCode file size %zd does not match expected size\n",
2152 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002153 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002154 goto err_release;
2155 }
2156
2157 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002158 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002159 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002160 inst_size);
2161 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002162 goto err_release;
2163 }
2164
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002165 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002166 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002167 data_size);
2168 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002169 goto err_release;
2170 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002171 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002172 IWL_DEBUG_INFO(priv,
2173 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002174 init_size);
2175 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002176 goto err_release;
2177 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002178 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002179 IWL_DEBUG_INFO(priv,
2180 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002181 init_data_size);
2182 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002183 goto err_release;
2184 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002185 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002186 IWL_DEBUG_INFO(priv,
2187 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002188 boot_size);
2189 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002190 goto err_release;
2191 }
2192
2193 /* Allocate ucode buffers for card's bus-master loading ... */
2194
2195 /* Runtime instructions and 2 copies of data:
2196 * 1) unmodified from disk
2197 * 2) backup cache for save/restore during power-downs */
2198 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002199 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002200
2201 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002202 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002203
2204 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002205 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002206
2207 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002208 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002209 goto err_pci_alloc;
2210
Tomas Winkler90e759d2007-11-29 11:09:41 +08002211 /* Initialization instructions and data */
2212 if (init_size && init_data_size) {
2213 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002214 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002215
2216 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002217 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002218
2219 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2220 goto err_pci_alloc;
2221 }
2222
2223 /* Bootstrap (instructions only, no data) */
2224 if (boot_size) {
2225 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002226 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002227
2228 if (!priv->ucode_boot.v_addr)
2229 goto err_pci_alloc;
2230 }
2231
Zhu Yib481de92007-09-25 17:54:57 -07002232 /* Copy images into buffers for card's bus-master reads ... */
2233
2234 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002235 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002236 IWL_DEBUG_INFO(priv,
2237 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002238 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002239 src += len;
2240
Tomas Winklere1623442009-01-27 14:27:56 -08002241 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002242 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2243
2244 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002245 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002246 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002247 IWL_DEBUG_INFO(priv,
2248 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002249 memcpy(priv->ucode_data.v_addr, src, len);
2250 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002251 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002252
2253 /* Initialization instructions (3rd block) */
2254 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002255 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002256 IWL_DEBUG_INFO(priv,
2257 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002258 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002259 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002260 }
2261
2262 /* Initialization data (4th block) */
2263 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002264 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002265 IWL_DEBUG_INFO(priv,
2266 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002267 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002268 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002269 }
2270
2271 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002272 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002273 IWL_DEBUG_INFO(priv,
2274 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002275 memcpy(priv->ucode_boot.v_addr, src, len);
2276
2277 /* We have our copies now, allow OS release its copies */
2278 release_firmware(ucode_raw);
2279 return 0;
2280
2281 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002282 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002283 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002284 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002285
2286 err_release:
2287 release_firmware(ucode_raw);
2288
2289 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002290 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002291}
2292
2293
2294/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002295 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002296 *
2297 * Tell initialization uCode where to find runtime uCode.
2298 *
2299 * BSM registers initially contain pointers to initialization uCode.
2300 * We need to replace them to load runtime uCode inst and data,
2301 * and to save runtime data when powering down.
2302 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002303static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002304{
2305 dma_addr_t pinst;
2306 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002307
2308 /* bits 31:0 for 3945 */
2309 pinst = priv->ucode_code.p_addr;
2310 pdata = priv->ucode_data_backup.p_addr;
2311
Zhu Yib481de92007-09-25 17:54:57 -07002312 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002313 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2314 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2315 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002316 priv->ucode_data.len);
2317
Tomas Winklera96a27f2008-10-23 23:48:56 -07002318 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002319 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002320 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002321 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2322
Tomas Winklere1623442009-01-27 14:27:56 -08002323 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002324
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002325 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002326}
2327
2328/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002329 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002330 *
2331 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2332 *
Zhu Yib481de92007-09-25 17:54:57 -07002333 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002334 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002335static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002336{
2337 /* Check alive response for "valid" sign from uCode */
2338 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2339 /* We had an error bringing up the hardware, so take it
2340 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002341 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002342 goto restart;
2343 }
2344
2345 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2346 * This is a paranoid check, because we would not have gotten the
2347 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002348 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002349 /* Runtime instruction load was bad;
2350 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002351 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002352 goto restart;
2353 }
2354
2355 /* Send pointers to protocol/runtime uCode image ... init code will
2356 * load and launch runtime uCode, which will send us another "Alive"
2357 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002358 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002359 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002360 /* Runtime instruction load won't happen;
2361 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002362 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002363 goto restart;
2364 }
2365 return;
2366
2367 restart:
2368 queue_work(priv->workqueue, &priv->restart);
2369}
2370
Zhu Yib481de92007-09-25 17:54:57 -07002371/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002372 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002373 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002374 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002375 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002376static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002377{
Zhu Yib481de92007-09-25 17:54:57 -07002378 int thermal_spin = 0;
2379 u32 rfkill;
2380
Tomas Winklere1623442009-01-27 14:27:56 -08002381 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002382
2383 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2384 /* We had an error bringing up the hardware, so take it
2385 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002386 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002387 goto restart;
2388 }
2389
2390 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2391 * This is a paranoid check, because we would not have gotten the
2392 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002393 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002394 /* Runtime instruction load was bad;
2395 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002396 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002397 goto restart;
2398 }
2399
Tomas Winklerc587de02009-06-03 11:44:07 -07002400 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002401
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002402 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002403 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002404
2405 if (rfkill & 0x1) {
2406 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002407 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002408 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002409 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002410 thermal_spin++;
2411 udelay(10);
2412 }
2413
2414 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002415 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002416 thermal_spin * 10);
2417 } else
2418 set_bit(STATUS_RF_KILL_HW, &priv->status);
2419
Ben Cahill9fbab512007-11-29 11:09:47 +08002420 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002421 set_bit(STATUS_ALIVE, &priv->status);
2422
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002423 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002424 return;
2425
Johannes Berg36d68252008-05-15 12:55:26 +02002426 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002427
2428 priv->active_rate = priv->rates_mask;
2429 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2430
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002431 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002432
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002433 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002434 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002435 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002436
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002437 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002438 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2439 } else {
2440 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002441 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002442 }
2443
Ben Cahill9fbab512007-11-29 11:09:47 +08002444 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002445 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002446
2447 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002448 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002449
Zhu Yib481de92007-09-25 17:54:57 -07002450 iwl3945_reg_txpower_periodic(priv);
2451
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002452 iwl3945_led_register(priv);
2453
Tomas Winklere1623442009-01-27 14:27:56 -08002454 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002455 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002456 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002457
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002458 /* reassociate for ADHOC mode */
2459 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2460 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2461 priv->vif);
2462 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002463 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002464 }
2465
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002466 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002467 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002468
Zhu Yib481de92007-09-25 17:54:57 -07002469 return;
2470
2471 restart:
2472 queue_work(priv->workqueue, &priv->restart);
2473}
2474
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002475static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002476
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002477static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002478{
2479 unsigned long flags;
2480 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2481 struct ieee80211_conf *conf = NULL;
2482
Tomas Winklere1623442009-01-27 14:27:56 -08002483 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002484
2485 conf = ieee80211_get_hw_conf(priv->hw);
2486
2487 if (!exit_pending)
2488 set_bit(STATUS_EXIT_PENDING, &priv->status);
2489
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002490 iwl3945_led_unregister(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07002491 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002492
2493 /* Unblock any waiting calls */
2494 wake_up_interruptible_all(&priv->wait_command_queue);
2495
Zhu Yib481de92007-09-25 17:54:57 -07002496 /* Wipe out the EXIT_PENDING status bit if we are not actually
2497 * exiting the module */
2498 if (!exit_pending)
2499 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2500
2501 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002502 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002503
2504 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002505 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002506 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002507 spin_unlock_irqrestore(&priv->lock, flags);
2508 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002509
2510 if (priv->mac80211_registered)
2511 ieee80211_stop_queues(priv->hw);
2512
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002513 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002514 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002515 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002516 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2517 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002518 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2519 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002520 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2521 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002522 goto exit;
2523 }
2524
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002525 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002526 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002527 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2528 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002529 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2530 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002531 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002532 STATUS_FW_ERROR |
2533 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2534 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002535
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002536 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002537 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002538 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002539 spin_unlock_irqrestore(&priv->lock, flags);
2540
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002541 iwl3945_hw_txq_ctx_stop(priv);
2542 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002543
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002544 iwl_write_prph(priv, APMG_CLK_DIS_REG,
2545 APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002546
2547 udelay(5);
2548
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002549 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002550 priv->cfg->ops->lib->apm_ops.stop(priv);
2551 else
2552 priv->cfg->ops->lib->apm_ops.reset(priv);
2553
Zhu Yib481de92007-09-25 17:54:57 -07002554 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002555 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002556
2557 if (priv->ibss_beacon)
2558 dev_kfree_skb(priv->ibss_beacon);
2559 priv->ibss_beacon = NULL;
2560
2561 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002562 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002563}
2564
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002565static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002566{
2567 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002568 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002569 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002570
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002571 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002572}
2573
2574#define MAX_HW_RESTARTS 5
2575
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002576static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002577{
2578 int rc, i;
2579
2580 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002581 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002582 return -EIO;
2583 }
2584
Reinette Chatree903fbd2008-01-30 22:05:15 -08002585 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002586 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002587 return -EIO;
2588 }
2589
Zhu Yie655b9f2008-01-24 02:19:38 -08002590 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002591 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002592 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2593 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2594 else {
2595 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002596 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2597 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002598 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002599
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002600 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002601
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002602 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002603 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002604 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002605 return rc;
2606 }
2607
2608 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002609 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2610 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002611 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2612
2613 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002614 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002615 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002616
2617 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002618 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2619 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002620
2621 /* Copy original ucode data image from disk into backup cache.
2622 * This will be used to initialize the on-board processor's
2623 * data SRAM for a clean start when the runtime program first loads. */
2624 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08002625 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002626
Zhu Yie655b9f2008-01-24 02:19:38 -08002627 /* We return success when we resume from suspend and rf_kill is on. */
2628 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2629 return 0;
2630
Zhu Yib481de92007-09-25 17:54:57 -07002631 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2632
Tomas Winklerc587de02009-06-03 11:44:07 -07002633 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002634
2635 /* load bootstrap state machine,
2636 * load bootstrap program into processor's memory,
2637 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002638 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002639
2640 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002641 IWL_ERR(priv,
2642 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002643 continue;
2644 }
2645
2646 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002647 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002648
Tomas Winklere1623442009-01-27 14:27:56 -08002649 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002650
2651 return 0;
2652 }
2653
2654 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002655 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002656 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002657
2658 /* tried to restart and config the device for as long as our
2659 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002660 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002661 return -EIO;
2662}
2663
2664
2665/*****************************************************************************
2666 *
2667 * Workqueue callbacks
2668 *
2669 *****************************************************************************/
2670
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002671static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002672{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002673 struct iwl_priv *priv =
2674 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002675
2676 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2677 return;
2678
2679 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002680 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002681 mutex_unlock(&priv->mutex);
2682}
2683
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002684static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002685{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002686 struct iwl_priv *priv =
2687 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002688
2689 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2690 return;
2691
2692 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002693 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002694 mutex_unlock(&priv->mutex);
2695}
2696
Helmut Schaa26635162009-01-15 09:38:44 +01002697static void iwl3945_rfkill_poll(struct work_struct *data)
2698{
2699 struct iwl_priv *priv =
2700 container_of(data, struct iwl_priv, rfkill_poll.work);
Helmut Schaa26635162009-01-15 09:38:44 +01002701
2702 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2703 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2704 else
2705 set_bit(STATUS_RF_KILL_HW, &priv->status);
2706
Johannes Berga60e77e2009-06-04 18:26:06 +02002707 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
2708 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa26635162009-01-15 09:38:44 +01002709
2710 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2711 round_jiffies_relative(2 * HZ));
2712
2713}
2714
Zhu Yib481de92007-09-25 17:54:57 -07002715#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002716static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002717{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002718 struct iwl_priv *priv =
2719 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08002720 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002721 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002722 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002723 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002724 };
2725 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002726 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002727 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002728 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002729 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002730 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002731
2732 conf = ieee80211_get_hw_conf(priv->hw);
2733
2734 mutex_lock(&priv->mutex);
2735
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002736 cancel_delayed_work(&priv->scan_check);
2737
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002738 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002739 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002740 goto done;
2741 }
2742
Tomas Winklera96a27f2008-10-23 23:48:56 -07002743 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002744 * was given the chance to run... */
2745 if (!test_bit(STATUS_SCANNING, &priv->status))
2746 goto done;
2747
2748 /* This should never be called or scheduled if there is currently
2749 * a scan active in the hardware. */
2750 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002751 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2752 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002753 rc = -EIO;
2754 goto done;
2755 }
2756
2757 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002758 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002759 goto done;
2760 }
2761
2762 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002763 IWL_DEBUG_HC(priv,
2764 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002765 goto done;
2766 }
2767
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002768 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002769 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002770 goto done;
2771 }
2772
2773 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002774 IWL_DEBUG_HC(priv,
2775 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002776 goto done;
2777 }
2778
2779 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002780 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002781 goto done;
2782 }
2783
Winkler, Tomas805cee52009-01-19 15:30:28 -08002784 if (!priv->scan) {
2785 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07002786 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08002787 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07002788 rc = -ENOMEM;
2789 goto done;
2790 }
2791 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08002792 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002793 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002794
2795 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2796 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2797
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002798 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002799 u16 interval = 0;
2800 u32 extra;
2801 u32 suspend_time = 100;
2802 u32 scan_suspend_time = 100;
2803 unsigned long flags;
2804
Tomas Winklere1623442009-01-27 14:27:56 -08002805 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002806
2807 spin_lock_irqsave(&priv->lock, flags);
2808 interval = priv->beacon_int;
2809 spin_unlock_irqrestore(&priv->lock, flags);
2810
2811 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002812 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002813 if (!interval)
2814 interval = suspend_time;
2815 /*
2816 * suspend time format:
2817 * 0-19: beacon interval in usec (time before exec.)
2818 * 20-23: 0
2819 * 24-31: number of beacons (suspend between channels)
2820 */
2821
2822 extra = (suspend_time / interval) << 24;
2823 scan_suspend_time = 0xFF0FFFFF &
2824 (extra | ((suspend_time % interval) * 1024));
2825
2826 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002827 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002828 scan_suspend_time, interval);
2829 }
2830
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002831 if (priv->scan_request->n_ssids) {
2832 int i, p = 0;
2833 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2834 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2835 /* always does wildcard anyway */
2836 if (!priv->scan_request->ssids[i].ssid_len)
2837 continue;
2838 scan->direct_scan[p].id = WLAN_EID_SSID;
2839 scan->direct_scan[p].len =
2840 priv->scan_request->ssids[i].ssid_len;
2841 memcpy(scan->direct_scan[p].ssid,
2842 priv->scan_request->ssids[i].ssid,
2843 priv->scan_request->ssids[i].ssid_len);
2844 n_probes++;
2845 p++;
2846 }
2847 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002848 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002849 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002850
2851 /* We don't build a direct scan probe request; the uCode will do
2852 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002853 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002854 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002855 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2856
2857 /* flags + rate selection */
2858
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002859 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002860 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2861 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2862 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002863 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002864 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002865 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002866 /*
2867 * If active scaning is requested but a certain channel
2868 * is marked passive, we can do active scanning if we
2869 * detect transmissions.
2870 */
2871 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002872 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002873 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002874 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07002875 goto done;
2876 }
2877
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002878 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002879 iwl_fill_probe_req(priv,
2880 (struct ieee80211_mgmt *)scan->data,
2881 priv->scan_request->ie,
2882 priv->scan_request->ie_len,
2883 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002884
Zhu Yib481de92007-09-25 17:54:57 -07002885 /* select Rx antennas */
2886 scan->flags |= iwl3945_get_antenna_flags(priv);
2887
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07002888 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002889 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2890
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002891 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002892 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002893 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07002894
Reinette Chatre14b54332008-11-04 12:21:35 -08002895 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002896 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002897 goto done;
2898 }
2899
Zhu Yib481de92007-09-25 17:54:57 -07002900 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002901 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07002902 cmd.data = scan;
2903 scan->len = cpu_to_le16(cmd.len);
2904
2905 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08002906 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002907 if (rc)
2908 goto done;
2909
2910 queue_delayed_work(priv->workqueue, &priv->scan_check,
2911 IWL_SCAN_CHECK_WATCHDOG);
2912
2913 mutex_unlock(&priv->mutex);
2914 return;
2915
2916 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08002917 /* can not perform scan make sure we clear scanning
2918 * bits from status so next scan request can be performed.
2919 * if we dont clear scanning status bit here all next scan
2920 * will fail
2921 */
2922 clear_bit(STATUS_SCAN_HW, &priv->status);
2923 clear_bit(STATUS_SCANNING, &priv->status);
2924
Ian Schram01ebd062007-10-25 17:15:22 +08002925 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07002926 queue_work(priv->workqueue, &priv->scan_completed);
2927 mutex_unlock(&priv->mutex);
2928}
2929
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002930static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002931{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002932 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002933
2934 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2935 return;
2936
2937 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002938 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002939 mutex_unlock(&priv->mutex);
2940}
2941
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002942static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002943{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002944 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002945
2946 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2947 return;
2948
Johannes Berg19cc1082009-05-08 13:44:36 -07002949 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
2950 mutex_lock(&priv->mutex);
2951 priv->vif = NULL;
2952 priv->is_open = 0;
2953 mutex_unlock(&priv->mutex);
2954 iwl3945_down(priv);
2955 ieee80211_restart_hw(priv->hw);
2956 } else {
2957 iwl3945_down(priv);
2958 queue_work(priv->workqueue, &priv->up);
2959 }
Zhu Yib481de92007-09-25 17:54:57 -07002960}
2961
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002962static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002963{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002964 struct iwl_priv *priv =
2965 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002966
2967 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2968 return;
2969
2970 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002971 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002972 mutex_unlock(&priv->mutex);
2973}
2974
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002975#define IWL_DELAY_NEXT_SCAN (HZ*2)
2976
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002977void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002978{
Zhu Yib481de92007-09-25 17:54:57 -07002979 int rc = 0;
2980 struct ieee80211_conf *conf = NULL;
2981
Johannes Berg05c914f2008-09-11 00:01:58 +02002982 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002983 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002984 return;
2985 }
2986
2987
Tomas Winklere1623442009-01-27 14:27:56 -08002988 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002989 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002990
2991 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2992 return;
2993
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002994 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08002995 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08002996
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08002997 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002998
Zhu Yib481de92007-09-25 17:54:57 -07002999 conf = ieee80211_get_hw_conf(priv->hw);
3000
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003001 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003002 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003003
Tomas Winkler28afaf92008-12-19 10:37:06 +08003004 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003005 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003006 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003007 sizeof(priv->rxon_timing), &priv->rxon_timing);
3008 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003009 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003010 "Attempting to continue.\n");
3011
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003012 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003013
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003014 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003015
Tomas Winklere1623442009-01-27 14:27:56 -08003016 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003017 priv->assoc_id, priv->beacon_int);
3018
3019 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003020 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003021 else
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
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003024 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003025 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003026 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003027 else
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
Johannes Berg05c914f2008-09-11 00:01:58 +02003030 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003031 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003032
3033 }
3034
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003035 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003036
3037 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003038 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003039 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003040 break;
3041
Johannes Berg05c914f2008-09-11 00:01:58 +02003042 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003043
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003044 priv->assoc_id = 1;
Tomas Winklerc587de02009-06-03 11:44:07 -07003045 iwl_add_station(priv, priv->bssid, 0, CMD_SYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003046 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003047 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003048 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3049 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003050 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3051 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003052
3053 break;
3054
3055 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003056 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003057 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003058 break;
3059 }
3060
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003061 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003062
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003063 /* we have just associated, don't start scan too early */
3064 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003065}
3066
Zhu Yib481de92007-09-25 17:54:57 -07003067/*****************************************************************************
3068 *
3069 * mac80211 entry point functions
3070 *
3071 *****************************************************************************/
3072
Zhu Yi5a66926a2008-01-14 17:46:18 -08003073#define UCODE_READY_TIMEOUT (2 * HZ)
3074
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003075static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003076{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003077 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003078 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003079
Tomas Winklere1623442009-01-27 14:27:56 -08003080 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003081
3082 /* we should be verifying the device is ready to be opened */
3083 mutex_lock(&priv->mutex);
3084
Zhu Yi5a66926a2008-01-14 17:46:18 -08003085 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3086 * ucode filename and max sizes are card-specific. */
3087
3088 if (!priv->ucode_code.len) {
3089 ret = iwl3945_read_ucode(priv);
3090 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003091 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003092 mutex_unlock(&priv->mutex);
3093 goto out_release_irq;
3094 }
3095 }
3096
Zhu Yie655b9f2008-01-24 02:19:38 -08003097 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003098
Zhu Yib481de92007-09-25 17:54:57 -07003099 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003100
Zhu Yie655b9f2008-01-24 02:19:38 -08003101 if (ret)
3102 goto out_release_irq;
3103
Tomas Winklere1623442009-01-27 14:27:56 -08003104 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003105
Zhu Yi5a66926a2008-01-14 17:46:18 -08003106 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3107 * mac80211 will not be run successfully. */
3108 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3109 test_bit(STATUS_READY, &priv->status),
3110 UCODE_READY_TIMEOUT);
3111 if (!ret) {
3112 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003113 IWL_ERR(priv,
3114 "Wait for START_ALIVE timeout after %dms.\n",
3115 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a66926a2008-01-14 17:46:18 -08003116 ret = -ETIMEDOUT;
3117 goto out_release_irq;
3118 }
3119 }
3120
Helmut Schaa26635162009-01-15 09:38:44 +01003121 /* ucode is running and will send rfkill notifications,
3122 * no need to poll the killswitch state anymore */
3123 cancel_delayed_work(&priv->rfkill_poll);
3124
Zhu Yie655b9f2008-01-24 02:19:38 -08003125 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003126 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003127 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003128
3129out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003130 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003131 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08003132 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003133}
3134
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003135static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003136{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003137 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003138
Tomas Winklere1623442009-01-27 14:27:56 -08003139 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003140
Zhu Yie655b9f2008-01-24 02:19:38 -08003141 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003142 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003143 return;
3144 }
3145
Zhu Yib481de92007-09-25 17:54:57 -07003146 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003147
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003148 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003149 /* stop mac, cancel any scan request and clear
3150 * RXON_FILTER_ASSOC_MSK BIT
3151 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003152 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003153 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003154 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003155 }
3156
Zhu Yi5a66926a2008-01-14 17:46:18 -08003157 iwl3945_down(priv);
3158
3159 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003160
3161 /* start polling the killswitch state again */
3162 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3163 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003164
Tomas Winklere1623442009-01-27 14:27:56 -08003165 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003166}
3167
Johannes Berge039fa42008-05-15 12:55:29 +02003168static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003169{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003170 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003171
Tomas Winklere1623442009-01-27 14:27:56 -08003172 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003173
Tomas Winklere1623442009-01-27 14:27:56 -08003174 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003175 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003176
Johannes Berge039fa42008-05-15 12:55:29 +02003177 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003178 dev_kfree_skb_any(skb);
3179
Tomas Winklere1623442009-01-27 14:27:56 -08003180 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003181 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003182}
3183
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003184void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003185{
3186 int rc = 0;
3187
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003188 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003189 return;
3190
3191 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003192 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003193
3194 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003195 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003196 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003197
3198 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003199 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003200 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003201 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3202 sizeof(priv->rxon_timing),
3203 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003204 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003205 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003206 "Attempting to continue.\n");
3207
3208 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003209 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003210 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003211 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003212 RXON_FLG_SHORT_PREAMBLE_MSK;
3213 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003214 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003215 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3216
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003217 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003218 if (priv->assoc_capability &
3219 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003220 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003221 RXON_FLG_SHORT_SLOT_MSK;
3222 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003223 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003224 ~RXON_FLG_SHORT_SLOT_MSK;
3225
Johannes Berg05c914f2008-09-11 00:01:58 +02003226 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003227 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003228 ~RXON_FLG_SHORT_SLOT_MSK;
3229 }
3230 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003231 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003232 iwlcore_commit_rxon(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07003233 iwl_add_station(priv, iwl_bcast_addr, 0, CMD_SYNC, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003234 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003235 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003236
3237 /* FIXME - we need to add code here to detect a totally new
3238 * configuration, reset the AP, unassoc, rxon timing, assoc,
3239 * clear sta table, add BCAST sta... */
3240}
3241
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003242static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003243 struct ieee80211_vif *vif,
3244 struct ieee80211_sta *sta,
3245 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003246{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003247 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003248 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003249 int ret = 0;
3250 u8 sta_id = IWL_INVALID_STATION;
3251 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003252
Tomas Winklere1623442009-01-27 14:27:56 -08003253 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003254
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003255 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003256 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003257 return -EOPNOTSUPP;
3258 }
3259
Winkler, Tomas42986792009-01-19 15:30:22 -08003260 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003261 static_key = !iwl_is_associated(priv);
3262
3263 if (!static_key) {
Tomas Winklerc587de02009-06-03 11:44:07 -07003264 sta_id = iwl_find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003265 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003266 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003267 addr);
3268 return -EINVAL;
3269 }
Zhu Yib481de92007-09-25 17:54:57 -07003270 }
3271
3272 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003273 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003274 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003275
Zhu Yib481de92007-09-25 17:54:57 -07003276 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003277 case SET_KEY:
3278 if (static_key)
3279 ret = iwl3945_set_static_key(priv, key);
3280 else
3281 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3282 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003283 break;
3284 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003285 if (static_key)
3286 ret = iwl3945_remove_static_key(priv);
3287 else
3288 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3289 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003290 break;
3291 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003292 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003293 }
3294
Tomas Winklere1623442009-01-27 14:27:56 -08003295 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003296
Winkler, Tomas42986792009-01-19 15:30:22 -08003297 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003298}
3299
Zhu Yib481de92007-09-25 17:54:57 -07003300/*****************************************************************************
3301 *
3302 * sysfs attributes
3303 *
3304 *****************************************************************************/
3305
Samuel Ortizd08853a2009-01-23 13:45:17 -08003306#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003307
3308/*
3309 * The following adds a new attribute to the sysfs representation
3310 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3311 * used for controlling the debug level.
3312 *
3313 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003314 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003315 * The debug_level being managed using sysfs below is a per device debug
3316 * level that is used instead of the global debug level if it (the per
3317 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003318 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003319static ssize_t show_debug_level(struct device *d,
3320 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003321{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003322 struct iwl_priv *priv = dev_get_drvdata(d);
3323 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003324}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003325static ssize_t store_debug_level(struct device *d,
3326 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003327 const char *buf, size_t count)
3328{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003329 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003330 unsigned long val;
3331 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003332
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003333 ret = strict_strtoul(buf, 0, &val);
3334 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003335 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003336 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003337 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003338 if (iwl_alloc_traffic_mem(priv))
3339 IWL_ERR(priv,
3340 "Not enough memory to generate traffic log\n");
3341 }
Zhu Yib481de92007-09-25 17:54:57 -07003342 return strnlen(buf, count);
3343}
3344
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003345static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3346 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003347
Samuel Ortizd08853a2009-01-23 13:45:17 -08003348#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003349
Zhu Yib481de92007-09-25 17:54:57 -07003350static ssize_t show_temperature(struct device *d,
3351 struct device_attribute *attr, char *buf)
3352{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003353 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003354
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003355 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003356 return -EAGAIN;
3357
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003358 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003359}
3360
3361static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3362
Zhu Yib481de92007-09-25 17:54:57 -07003363static ssize_t show_tx_power(struct device *d,
3364 struct device_attribute *attr, char *buf)
3365{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003366 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003367 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003368}
3369
3370static ssize_t store_tx_power(struct device *d,
3371 struct device_attribute *attr,
3372 const char *buf, size_t count)
3373{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003374 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003375 char *p = (char *)buf;
3376 u32 val;
3377
3378 val = simple_strtoul(p, &p, 10);
3379 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003380 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003381 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003382 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003383
3384 return count;
3385}
3386
3387static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3388
3389static ssize_t show_flags(struct device *d,
3390 struct device_attribute *attr, char *buf)
3391{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003392 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003393
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003394 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003395}
3396
3397static ssize_t store_flags(struct device *d,
3398 struct device_attribute *attr,
3399 const char *buf, size_t count)
3400{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003401 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003402 u32 flags = simple_strtoul(buf, NULL, 0);
3403
3404 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003405 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003406 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003407 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003408 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003409 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003410 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003411 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003412 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003413 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003414 }
3415 }
3416 mutex_unlock(&priv->mutex);
3417
3418 return count;
3419}
3420
3421static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3422
3423static ssize_t show_filter_flags(struct device *d,
3424 struct device_attribute *attr, char *buf)
3425{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003426 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003427
3428 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003429 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003430}
3431
3432static ssize_t store_filter_flags(struct device *d,
3433 struct device_attribute *attr,
3434 const char *buf, size_t count)
3435{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003436 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003437 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3438
3439 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003440 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003441 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003442 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003443 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003444 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003445 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003446 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003447 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003448 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003449 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003450 }
3451 }
3452 mutex_unlock(&priv->mutex);
3453
3454 return count;
3455}
3456
3457static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3458 store_filter_flags);
3459
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003460#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003461
3462static ssize_t show_measurement(struct device *d,
3463 struct device_attribute *attr, char *buf)
3464{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003465 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003466 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003467 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003468 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003469 unsigned long flags;
3470
3471 spin_lock_irqsave(&priv->lock, flags);
3472 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3473 spin_unlock_irqrestore(&priv->lock, flags);
3474 return 0;
3475 }
3476 memcpy(&measure_report, &priv->measure_report, size);
3477 priv->measurement_status = 0;
3478 spin_unlock_irqrestore(&priv->lock, flags);
3479
3480 while (size && (PAGE_SIZE - len)) {
3481 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3482 PAGE_SIZE - len, 1);
3483 len = strlen(buf);
3484 if (PAGE_SIZE - len)
3485 buf[len++] = '\n';
3486
3487 ofs += 16;
3488 size -= min(size, 16U);
3489 }
3490
3491 return len;
3492}
3493
3494static ssize_t store_measurement(struct device *d,
3495 struct device_attribute *attr,
3496 const char *buf, size_t count)
3497{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003498 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003499 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003500 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003501 .start_time = cpu_to_le64(priv->last_tsf),
3502 .duration = cpu_to_le16(1),
3503 };
3504 u8 type = IWL_MEASURE_BASIC;
3505 u8 buffer[32];
3506 u8 channel;
3507
3508 if (count) {
3509 char *p = buffer;
3510 strncpy(buffer, buf, min(sizeof(buffer), count));
3511 channel = simple_strtoul(p, NULL, 0);
3512 if (channel)
3513 params.channel = channel;
3514
3515 p = buffer;
3516 while (*p && *p != ' ')
3517 p++;
3518 if (*p)
3519 type = simple_strtoul(p + 1, NULL, 0);
3520 }
3521
Tomas Winklere1623442009-01-27 14:27:56 -08003522 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003523 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003524 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003525
3526 return count;
3527}
3528
3529static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3530 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003531#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003532
Zhu Yib481de92007-09-25 17:54:57 -07003533static ssize_t store_retry_rate(struct device *d,
3534 struct device_attribute *attr,
3535 const char *buf, size_t count)
3536{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003537 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003538
3539 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3540 if (priv->retry_rate <= 0)
3541 priv->retry_rate = 1;
3542
3543 return count;
3544}
3545
3546static ssize_t show_retry_rate(struct device *d,
3547 struct device_attribute *attr, char *buf)
3548{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003549 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003550 return sprintf(buf, "%d", priv->retry_rate);
3551}
3552
3553static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3554 store_retry_rate);
3555
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003556
Zhu Yib481de92007-09-25 17:54:57 -07003557static ssize_t show_channels(struct device *d,
3558 struct device_attribute *attr, char *buf)
3559{
Johannes Berg8318d782008-01-24 19:38:38 +01003560 /* all this shit doesn't belong into sysfs anyway */
3561 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003562}
3563
3564static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3565
3566static ssize_t show_statistics(struct device *d,
3567 struct device_attribute *attr, char *buf)
3568{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003569 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003570 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003571 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003572 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003573 int rc = 0;
3574
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003575 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003576 return -EAGAIN;
3577
3578 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003579 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003580 mutex_unlock(&priv->mutex);
3581
3582 if (rc) {
3583 len = sprintf(buf,
3584 "Error sending statistics request: 0x%08X\n", rc);
3585 return len;
3586 }
3587
3588 while (size && (PAGE_SIZE - len)) {
3589 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3590 PAGE_SIZE - len, 1);
3591 len = strlen(buf);
3592 if (PAGE_SIZE - len)
3593 buf[len++] = '\n';
3594
3595 ofs += 16;
3596 size -= min(size, 16U);
3597 }
3598
3599 return len;
3600}
3601
3602static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3603
3604static ssize_t show_antenna(struct device *d,
3605 struct device_attribute *attr, char *buf)
3606{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003607 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003608
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003609 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003610 return -EAGAIN;
3611
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003612 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003613}
3614
3615static ssize_t store_antenna(struct device *d,
3616 struct device_attribute *attr,
3617 const char *buf, size_t count)
3618{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003619 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003620 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003621
3622 if (count == 0)
3623 return 0;
3624
3625 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003626 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003627 return count;
3628 }
3629
3630 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003631 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003632 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003633 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003634 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003635
3636
3637 return count;
3638}
3639
3640static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3641
3642static ssize_t show_status(struct device *d,
3643 struct device_attribute *attr, char *buf)
3644{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003645 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003646 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003647 return -EAGAIN;
3648 return sprintf(buf, "0x%08x\n", (int)priv->status);
3649}
3650
3651static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3652
3653static ssize_t dump_error_log(struct device *d,
3654 struct device_attribute *attr,
3655 const char *buf, size_t count)
3656{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003657 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003658 char *p = (char *)buf;
3659
3660 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003661 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003662
3663 return strnlen(buf, count);
3664}
3665
3666static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3667
3668static ssize_t dump_event_log(struct device *d,
3669 struct device_attribute *attr,
3670 const char *buf, size_t count)
3671{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003672 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003673 char *p = (char *)buf;
3674
3675 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003676 iwl3945_dump_nic_event_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003677
3678 return strnlen(buf, count);
3679}
3680
3681static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
3682
3683/*****************************************************************************
3684 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003685 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003686 *
3687 *****************************************************************************/
3688
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003689static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003690{
Reinette Chatred21050c2009-02-13 11:51:18 -08003691 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003692
3693 init_waitqueue_head(&priv->wait_command_queue);
3694
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003695 INIT_WORK(&priv->up, iwl3945_bg_up);
3696 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3697 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003698 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003699 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3700 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003701 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003702 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3703 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3704 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3705 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003706
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003707 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003708
3709 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003710 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003711}
3712
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003713static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003714{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003715 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003716
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003717 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003718 cancel_delayed_work(&priv->scan_check);
3719 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003720 cancel_work_sync(&priv->beacon_update);
3721}
3722
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003723static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003724 &dev_attr_antenna.attr,
3725 &dev_attr_channels.attr,
3726 &dev_attr_dump_errors.attr,
3727 &dev_attr_dump_events.attr,
3728 &dev_attr_flags.attr,
3729 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003730#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003731 &dev_attr_measurement.attr,
3732#endif
Zhu Yib481de92007-09-25 17:54:57 -07003733 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003734 &dev_attr_statistics.attr,
3735 &dev_attr_status.attr,
3736 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003737 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003738#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003739 &dev_attr_debug_level.attr,
3740#endif
Zhu Yib481de92007-09-25 17:54:57 -07003741 NULL
3742};
3743
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003744static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003745 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003746 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003747};
3748
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003749static struct ieee80211_ops iwl3945_hw_ops = {
3750 .tx = iwl3945_mac_tx,
3751 .start = iwl3945_mac_start,
3752 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003753 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003754 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003755 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003756 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003757 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07003758 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003759 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003760 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003761 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08003762 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003763};
3764
Winkler, Tomase52119c2008-12-22 11:31:19 +08003765static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003766{
3767 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003768 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003769
3770 priv->retry_rate = 1;
3771 priv->ibss_beacon = NULL;
3772
3773 spin_lock_init(&priv->lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003774 spin_lock_init(&priv->sta_lock);
3775 spin_lock_init(&priv->hcmd_lock);
3776
3777 INIT_LIST_HEAD(&priv->free_frames);
3778
3779 mutex_init(&priv->mutex);
3780
3781 /* Clear the driver's (not device's) station table */
Tomas Winklerc587de02009-06-03 11:44:07 -07003782 iwl_clear_stations_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003783
3784 priv->data_retry_limit = -1;
3785 priv->ieee_channels = NULL;
3786 priv->ieee_rates = NULL;
3787 priv->band = IEEE80211_BAND_2GHZ;
3788
3789 priv->iw_mode = NL80211_IFTYPE_STATION;
3790
3791 iwl_reset_qos(priv);
3792
3793 priv->qos_data.qos_active = 0;
3794 priv->qos_data.qos_cap.val = 0;
3795
3796 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003797 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003798
Samuel Ortize6148912009-01-23 13:45:15 -08003799 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3800 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3801 eeprom->version);
3802 ret = -EINVAL;
3803 goto err;
3804 }
3805 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003806 if (ret) {
3807 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3808 goto err;
3809 }
3810
Samuel Ortize6148912009-01-23 13:45:15 -08003811 /* Set up txpower settings in driver for all channels */
3812 if (iwl3945_txpower_set_from_eeprom(priv)) {
3813 ret = -EIO;
3814 goto err_free_channel_map;
3815 }
3816
Samuel Ortiz534166d2009-01-23 13:45:16 -08003817 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003818 if (ret) {
3819 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3820 goto err_free_channel_map;
3821 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003822 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3823
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003824 return 0;
3825
3826err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003827 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003828err:
3829 return ret;
3830}
3831
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003832static int iwl3945_setup_mac(struct iwl_priv *priv)
3833{
3834 int ret;
3835 struct ieee80211_hw *hw = priv->hw;
3836
3837 hw->rate_control_algorithm = "iwl-3945-rs";
3838 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3839
3840 /* Tell mac80211 our characteristics */
3841 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07003842 IEEE80211_HW_NOISE_DBM |
Johannes Berge312c242009-08-07 15:41:51 -07003843 IEEE80211_HW_SPECTRUM_MGMT |
3844 IEEE80211_HW_SUPPORTS_PS |
3845 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003846
3847 hw->wiphy->interface_modes =
3848 BIT(NL80211_IFTYPE_STATION) |
3849 BIT(NL80211_IFTYPE_ADHOC);
3850
3851 hw->wiphy->custom_regulatory = true;
3852
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003853 /* Firmware does not support this */
3854 hw->wiphy->disable_beacon_hints = true;
3855
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003856 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3857 /* we create the 802.11 header and a zero-length SSID element */
3858 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003859
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003860 /* Default value; 4 EDCA QOS priorities */
3861 hw->queues = 4;
3862
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003863 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3864 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3865 &priv->bands[IEEE80211_BAND_2GHZ];
3866
3867 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3868 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3869 &priv->bands[IEEE80211_BAND_5GHZ];
3870
3871 ret = ieee80211_register_hw(priv->hw);
3872 if (ret) {
3873 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3874 return ret;
3875 }
3876 priv->mac80211_registered = 1;
3877
3878 return 0;
3879}
3880
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003881static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003882{
3883 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003884 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003885 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003886 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003887 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003888 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003889
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003890 /***********************
3891 * 1. Allocating HW data
3892 * ********************/
3893
Zhu Yib481de92007-09-25 17:54:57 -07003894 /* mac80211 allocates memory for this device instance, including
3895 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003896 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003897 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003898 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003899 err = -ENOMEM;
3900 goto out;
3901 }
Zhu Yib481de92007-09-25 17:54:57 -07003902 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003903 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003904
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003905 /*
3906 * Disabling hardware scan means that mac80211 will perform scans
3907 * "the hard way", rather than using device's scan.
3908 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003909 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003910 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003911 iwl3945_hw_ops.hw_scan = NULL;
3912 }
3913
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003914
Tomas Winklere1623442009-01-27 14:27:56 -08003915 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003916 priv->cfg = cfg;
3917 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003918 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003919
Samuel Ortizd08853a2009-01-23 13:45:17 -08003920#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003921 atomic_set(&priv->restrict_refcnt, 0);
3922#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003923 if (iwl_alloc_traffic_mem(priv))
3924 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003925
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003926 /***************************
3927 * 2. Initializing PCI bus
3928 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07003929 if (pci_enable_device(pdev)) {
3930 err = -ENODEV;
3931 goto out_ieee80211_free_hw;
3932 }
3933
3934 pci_set_master(pdev);
3935
Yang Hongyang284901a2009-04-06 19:01:15 -07003936 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003937 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07003938 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003939 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003940 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003941 goto out_pci_disable_device;
3942 }
3943
3944 pci_set_drvdata(pdev, priv);
3945 err = pci_request_regions(pdev, DRV_NAME);
3946 if (err)
3947 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003948
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003949 /***********************
3950 * 3. Read REV Register
3951 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07003952 priv->hw_base = pci_iomap(pdev, 0, 0);
3953 if (!priv->hw_base) {
3954 err = -ENODEV;
3955 goto out_pci_release_regions;
3956 }
3957
Tomas Winklere1623442009-01-27 14:27:56 -08003958 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07003959 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003960 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07003961
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003962 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3963 * PCI Tx retries from interfering with C3 CPU state */
3964 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07003965
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003966 /* this spin lock will be used in apm_ops.init and EEPROM access
3967 * we should init now
3968 */
3969 spin_lock_init(&priv->reg_lock);
3970
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003971 /* amp init */
3972 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003973 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07003974 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003975 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003976 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003977
3978 /***********************
3979 * 4. Read EEPROM
3980 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003981
Zhu Yi5a66926a2008-01-14 17:46:18 -08003982 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08003983 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003984 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003985 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08003986 goto out_iounmap;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003987 }
3988 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08003989 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
3990 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08003991 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003992 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3993
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003994 /***********************
3995 * 5. Setup HW Constants
3996 * ********************/
3997 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08003998 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003999 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004000 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004001 }
4002
4003 /***********************
4004 * 6. Setup priv
4005 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004006
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004007 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004008 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004009 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004010 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004011 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004012
Tomas Winkler978785a2008-12-19 10:37:31 +08004013 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4014 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004015
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004016 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004017 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004018 * ********************/
4019
4020 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004021 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004022 spin_unlock_irqrestore(&priv->lock, flags);
4023
Helmut Schaa26635162009-01-15 09:38:44 +01004024 pci_enable_msi(priv->pci_dev);
4025
Mohamed Abbasef850d72009-05-22 11:01:50 -07004026 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4027 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004028 if (err) {
4029 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4030 goto out_disable_msi;
4031 }
4032
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004033 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4034 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004035 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004036 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004037 }
4038
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004039 iwl_set_rxon_channel(priv,
4040 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004041 iwl3945_setup_deferred_work(priv);
4042 iwl3945_setup_rx_handlers(priv);
4043
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004044 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004045 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004046 * *******************************/
4047
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004048 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004049
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004050 err = iwl3945_setup_mac(priv);
4051 if (err)
4052 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004053
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004054 err = iwl_dbgfs_register(priv, DRV_NAME);
4055 if (err)
4056 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4057
Helmut Schaa26635162009-01-15 09:38:44 +01004058 /* Start monitoring the killswitch */
4059 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4060 2 * HZ);
4061
Zhu Yib481de92007-09-25 17:54:57 -07004062 return 0;
4063
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004064 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004065 destroy_workqueue(priv->workqueue);
4066 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004067 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4068 out_release_irq:
4069 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004070 out_disable_msi:
4071 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004072 iwlcore_free_geos(priv);
4073 iwl_free_channel_map(priv);
4074 out_unset_hw_params:
4075 iwl3945_unset_hw_params(priv);
4076 out_eeprom_free:
4077 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004078 out_iounmap:
4079 pci_iounmap(pdev, priv->hw_base);
4080 out_pci_release_regions:
4081 pci_release_regions(pdev);
4082 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004083 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004084 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004085 out_ieee80211_free_hw:
4086 ieee80211_free_hw(priv->hw);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004087 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004088 out:
4089 return err;
4090}
4091
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004092static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004093{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004094 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004095 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004096
4097 if (!priv)
4098 return;
4099
Tomas Winklere1623442009-01-27 14:27:56 -08004100 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004101
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004102 iwl_dbgfs_unregister(priv);
4103
Zhu Yib481de92007-09-25 17:54:57 -07004104 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004105
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004106 if (priv->mac80211_registered) {
4107 ieee80211_unregister_hw(priv->hw);
4108 priv->mac80211_registered = 0;
4109 } else {
4110 iwl3945_down(priv);
4111 }
Zhu Yib481de92007-09-25 17:54:57 -07004112
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004113 /* make sure we flush any pending irq or
4114 * tasklet for the driver
4115 */
4116 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004117 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004118 spin_unlock_irqrestore(&priv->lock, flags);
4119
4120 iwl_synchronize_irq(priv);
4121
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004122 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004123
Reinette Chatre71d449b2009-04-20 14:37:01 -07004124 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004125
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004126 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004127
4128 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004129 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004130 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004131
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004132 iwl3945_unset_hw_params(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07004133 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004134
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004135 /*netif_stop_queue(dev); */
4136 flush_workqueue(priv->workqueue);
4137
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004138 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004139 * priv->workqueue... so we can't take down the workqueue
4140 * until now... */
4141 destroy_workqueue(priv->workqueue);
4142 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004143 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004144
Helmut Schaa26635162009-01-15 09:38:44 +01004145 free_irq(pdev->irq, priv);
4146 pci_disable_msi(pdev);
4147
Zhu Yib481de92007-09-25 17:54:57 -07004148 pci_iounmap(pdev, priv->hw_base);
4149 pci_release_regions(pdev);
4150 pci_disable_device(pdev);
4151 pci_set_drvdata(pdev, NULL);
4152
Samuel Ortize6148912009-01-23 13:45:15 -08004153 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004154 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004155 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004156 if (priv->ibss_beacon)
4157 dev_kfree_skb(priv->ibss_beacon);
4158
4159 ieee80211_free_hw(priv->hw);
4160}
4161
Zhu Yib481de92007-09-25 17:54:57 -07004162
4163/*****************************************************************************
4164 *
4165 * driver and module entry point
4166 *
4167 *****************************************************************************/
4168
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004169static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004170 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004171 .id_table = iwl3945_hw_card_ids,
4172 .probe = iwl3945_pci_probe,
4173 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004174#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004175 .suspend = iwl_pci_suspend,
4176 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004177#endif
4178};
4179
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004180static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004181{
4182
4183 int ret;
4184 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4185 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004186
4187 ret = iwl3945_rate_control_register();
4188 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004189 printk(KERN_ERR DRV_NAME
4190 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004191 return ret;
4192 }
4193
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004194 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004195 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004196 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004197 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004198 }
Zhu Yib481de92007-09-25 17:54:57 -07004199
4200 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004201
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004202error_register:
4203 iwl3945_rate_control_unregister();
4204 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004205}
4206
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004207static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004208{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004209 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004210 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004211}
4212
Reinette Chatrea0987a82008-12-02 12:14:06 -08004213MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004214
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004215module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004216MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004217module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4218MODULE_PARM_DESC(swcrypto,
4219 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004220#ifdef CONFIG_IWLWIFI_DEBUG
4221module_param_named(debug, iwl_debug_level, uint, 0644);
Zhu Yib481de92007-09-25 17:54:57 -07004222MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004223#endif
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004224module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004225MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Samuel Ortizaf48d042009-01-23 13:45:19 -08004226module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4227MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4228
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004229module_exit(iwl3945_exit);
4230module_init(iwl3945_init);