blob: cd42b5838b383aa313dc8408de21b2e8271befce [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2003 - 2010 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>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040036#include <linux/sched.h>
Zhu Yib481de92007-09-25 17:54:57 -070037#include <linux/skbuff.h>
38#include <linux/netdevice.h>
39#include <linux/wireless.h>
40#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070041#include <linux/etherdevice.h>
42#include <linux/if_arp.h>
43
44#include <net/ieee80211_radiotap.h>
45#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"
Reinette Chatre81963d62010-01-22 14:22:57 -080059#include "iwl-spectrum.h"
Zhu Yib481de92007-09-25 17:54:57 -070060
Zhu Yib481de92007-09-25 17:54:57 -070061/*
62 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070063 */
64
65#define DRV_DESCRIPTION \
66"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
67
Samuel Ortizd08853a2009-01-23 13:45:17 -080068#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070069#define VD "d"
70#else
71#define VD
72#endif
73
Reinette Chatre81963d62010-01-22 14:22:57 -080074/*
75 * add "s" to indicate spectrum measurement included.
76 * we add it here to be consistent with previous releases in which
77 * this was configurable.
78 */
79#define DRV_VERSION IWLWIFI_VERSION VD "s"
Reinette Chatre1f447802010-01-15 13:43:41 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2010 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Zhu Yib481de92007-09-25 17:54:57 -070082
83MODULE_DESCRIPTION(DRV_DESCRIPTION);
84MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080085MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070086MODULE_LICENSE("GPL");
87
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080088 /* module parameters */
89struct iwl_mod_params iwl3945_mod_params = {
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080090 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080091 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080092 /* the rest are 0 by default */
93};
94
Zhu Yib481de92007-09-25 17:54:57 -070095/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -080096 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
97 * @priv: eeprom and antenna fields are used to determine antenna flags
98 *
99 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
100 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
101 *
102 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
103 * IWL_ANTENNA_MAIN - Force MAIN antenna
104 * IWL_ANTENNA_AUX - Force AUX antenna
105 */
106__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
107{
108 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
109
110 switch (iwl3945_mod_params.antenna) {
111 case IWL_ANTENNA_DIVERSITY:
112 return 0;
113
114 case IWL_ANTENNA_MAIN:
115 if (eeprom->antenna_switch_type)
116 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
117 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
118
119 case IWL_ANTENNA_AUX:
120 if (eeprom->antenna_switch_type)
121 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
122 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
123 }
124
125 /* bad antenna selector value */
126 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
127 iwl3945_mod_params.antenna);
128
129 return 0; /* "diversity" is default if error */
130}
131
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800132static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700133 struct ieee80211_key_conf *keyconf,
134 u8 sta_id)
135{
136 unsigned long flags;
137 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800138 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700139
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800140 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
141 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
142
143 if (sta_id == priv->hw_params.bcast_sta_id)
144 key_flags |= STA_KEY_MULTICAST_MSK;
145
146 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
147 keyconf->hw_key_idx = keyconf->keyidx;
148 key_flags &= ~STA_KEY_FLG_INVALID;
149
Zhu Yib481de92007-09-25 17:54:57 -0700150 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700151 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
152 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
153 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700154 keyconf->keylen);
155
Tomas Winklerc587de02009-06-03 11:44:07 -0700156 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700157 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800158
Tomas Winklerc587de02009-06-03 11:44:07 -0700159 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800160 == STA_KEY_FLG_NO_ENC)
Tomas Winklerc587de02009-06-03 11:44:07 -0700161 priv->stations[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800162 iwl_get_free_ucode_key_index(priv);
163 /* else, we are overriding an existing key => no need to allocated room
164 * in uCode. */
165
Tomas Winklerc587de02009-06-03 11:44:07 -0700166 WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800167 "no space for a new key");
168
Tomas Winklerc587de02009-06-03 11:44:07 -0700169 priv->stations[sta_id].sta.key.key_flags = key_flags;
170 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
171 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700172
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800173 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
174
Tomas Winklerc587de02009-06-03 11:44:07 -0700175 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800176
Zhu Yib481de92007-09-25 17:54:57 -0700177 spin_unlock_irqrestore(&priv->sta_lock, flags);
178
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800179 return ret;
180}
181
182static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
183 struct ieee80211_key_conf *keyconf,
184 u8 sta_id)
185{
186 return -EOPNOTSUPP;
187}
188
189static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
190 struct ieee80211_key_conf *keyconf,
191 u8 sta_id)
192{
193 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700194}
195
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800196static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700197{
198 unsigned long flags;
199
200 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700201 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
202 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800203 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700204 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
205 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
206 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700207 spin_unlock_irqrestore(&priv->sta_lock, flags);
208
Tomas Winklere1623442009-01-27 14:27:56 -0800209 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Tomas Winklerc587de02009-06-03 11:44:07 -0700210 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700211 return 0;
212}
213
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700214static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800215 struct ieee80211_key_conf *keyconf, u8 sta_id)
216{
217 int ret = 0;
218
219 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
220
221 switch (keyconf->alg) {
222 case ALG_CCMP:
223 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
224 break;
225 case ALG_TKIP:
226 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
227 break;
228 case ALG_WEP:
229 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
230 break;
231 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700232 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800233 ret = -EINVAL;
234 }
235
236 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
237 keyconf->alg, keyconf->keylen, keyconf->keyidx,
238 sta_id, ret);
239
240 return ret;
241}
242
243static int iwl3945_remove_static_key(struct iwl_priv *priv)
244{
245 int ret = -EOPNOTSUPP;
246
247 return ret;
248}
249
250static int iwl3945_set_static_key(struct iwl_priv *priv,
251 struct ieee80211_key_conf *key)
252{
253 if (key->alg == ALG_WEP)
254 return -EOPNOTSUPP;
255
256 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
257 return -EINVAL;
258}
259
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800260static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700261{
262 struct list_head *element;
263
Tomas Winklere1623442009-01-27 14:27:56 -0800264 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700265 priv->frames_count);
266
267 while (!list_empty(&priv->free_frames)) {
268 element = priv->free_frames.next;
269 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800270 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700271 priv->frames_count--;
272 }
273
274 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800275 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700276 priv->frames_count);
277 priv->frames_count = 0;
278 }
279}
280
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800281static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700282{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800283 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700284 struct list_head *element;
285 if (list_empty(&priv->free_frames)) {
286 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
287 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800288 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700289 return NULL;
290 }
291
292 priv->frames_count++;
293 return frame;
294 }
295
296 element = priv->free_frames.next;
297 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800298 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700299}
300
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800301static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700302{
303 memset(frame, 0, sizeof(*frame));
304 list_add(&frame->list, &priv->free_frames);
305}
306
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800307unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700308 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200309 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700310{
311
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800312 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200313 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
314 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700315 return 0;
316
317 if (priv->ibss_beacon->len > left)
318 return 0;
319
320 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
321
322 return priv->ibss_beacon->len;
323}
324
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800325static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700326{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800327 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700328 unsigned int frame_size;
329 int rc;
330 u8 rate;
331
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800332 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700333
334 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800335 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700336 "command.\n");
337 return -ENOMEM;
338 }
339
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800340 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700341
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800342 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700343
Samuel Ortiz518099a2009-01-19 15:30:27 -0800344 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700345 &frame->u.cmd[0]);
346
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800347 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700348
349 return rc;
350}
351
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800352static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700353{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800354 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700355 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800356 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800357 priv->shared_virt,
358 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700359}
360
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800361static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200362 struct ieee80211_tx_info *info,
Johannes Bergc2acea82009-07-24 11:13:05 -0700363 struct iwl_device_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700364 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800365 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700366{
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700367 struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerc587de02009-06-03 11:44:07 -0700368 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700369
370 switch (keyinfo->alg) {
371 case ALG_CCMP:
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700372 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
373 memcpy(tx_cmd->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800374 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700375 break;
376
377 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700378 break;
379
380 case ALG_WEP:
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700381 tx_cmd->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200382 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700383
384 if (keyinfo->keylen == 13)
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700385 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700386
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700387 memcpy(&tx_cmd->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700388
Tomas Winklere1623442009-01-27 14:27:56 -0800389 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200390 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700391 break;
392
Zhu Yib481de92007-09-25 17:54:57 -0700393 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800394 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700395 break;
396 }
397}
398
399/*
400 * handle build REPLY_TX command notification.
401 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800402static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Johannes Bergc2acea82009-07-24 11:13:05 -0700403 struct iwl_device_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200404 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800405 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700406{
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700407 struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
408 __le32 tx_flags = tx_cmd->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700409 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700410
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700411 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200412 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700413 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700414 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700415 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700416 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700417 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
418 tx_flags |= TX_CMD_FLG_TSF_MSK;
419 } else {
420 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
421 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
422 }
423
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700424 tx_cmd->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700425 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700426 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
427
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700428 if (ieee80211_is_data_qos(fc)) {
429 u8 *qc = ieee80211_get_qos_ctl(hdr);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700430 tx_cmd->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700431 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800432 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700433 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800434 }
Zhu Yib481de92007-09-25 17:54:57 -0700435
Abhijeet Kolekar37dc70f2009-10-09 13:20:30 -0700436 priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700437
438 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
439 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
440
441 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700442 if (ieee80211_is_mgmt(fc)) {
443 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700444 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700445 else
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700446 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700447 } else {
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700448 tx_cmd->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700449 }
Zhu Yib481de92007-09-25 17:54:57 -0700450
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700451 tx_cmd->driver_txop = 0;
452 tx_cmd->tx_flags = tx_flags;
453 tx_cmd->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700454}
455
Zhu Yib481de92007-09-25 17:54:57 -0700456/*
457 * start REPLY_TX command process
458 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800459static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700460{
461 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200462 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700463 struct iwl3945_tx_cmd *tx_cmd;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800464 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800465 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700466 struct iwl_device_cmd *out_cmd;
467 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700468 dma_addr_t phys_addr;
469 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800470 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700471 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800472 u8 id;
473 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700474 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800475 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700476 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700477 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700478 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800479 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700480 unsigned long flags;
481 int rc;
482
483 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800484 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800485 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700486 goto drop_unlock;
487 }
488
Johannes Berge039fa42008-05-15 12:55:29 +0200489 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800490 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700491 goto drop_unlock;
492 }
493
494 unicast = !is_multicast_ether_addr(hdr->addr1);
495 id = 0;
496
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700497 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700498
Samuel Ortizd08853a2009-01-23 13:45:17 -0800499#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700500 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800501 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700502 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800503 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700504 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800505 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700506#endif
507
Gábor Stefanikaa065262009-08-21 20:44:09 +0200508 /* drop all non-injected data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800509 if (ieee80211_is_data(fc) &&
Gábor Stefanikaa065262009-08-21 20:44:09 +0200510 !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800511 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200512 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800513 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700514 goto drop_unlock;
515 }
516
517 spin_unlock_irqrestore(&priv->lock, flags);
518
Harvey Harrison7294ec92008-07-15 18:43:59 -0700519 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800520
521 /* Find (or create) index into station table for destination station */
Gábor Stefanikaa065262009-08-21 20:44:09 +0200522 if (info->flags & IEEE80211_TX_CTL_INJECTED)
523 sta_id = priv->hw_params.bcast_sta_id;
524 else
525 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700526 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800527 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700528 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700529 goto drop;
530 }
531
Tomas Winklere1623442009-01-27 14:27:56 -0800532 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700533
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700534 if (ieee80211_is_data_qos(fc)) {
535 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700536 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700537 if (unlikely(tid >= MAX_TID_COUNT))
538 goto drop;
Tomas Winklerc587de02009-06-03 11:44:07 -0700539 seq_number = priv->stations[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700540 IEEE80211_SCTL_SEQ;
541 hdr->seq_ctrl = cpu_to_le16(seq_number) |
542 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800543 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700544 seq_number += 0x10;
545 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800546
547 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800548 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700549 q = &txq->q;
550
Zhu Yidc57a302009-12-14 14:12:12 -0800551 if ((iwl_queue_space(q) < q->high_mark))
552 goto drop;
553
Zhu Yib481de92007-09-25 17:54:57 -0700554 spin_lock_irqsave(&priv->lock, flags);
555
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800556 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700557
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800558 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800559 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800560 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800561
562 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800563 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700564 out_meta = &txq->meta[idx];
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700565 tx_cmd = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700566 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700567 memset(tx_cmd, 0, sizeof(*tx_cmd));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800568
569 /*
570 * Set up the Tx-command (not MAC!) header.
571 * Store the chosen Tx queue and TFD index within the sequence field;
572 * after Tx, uCode's Tx response will return this value so driver can
573 * locate the frame within the tx queue and do post-tx processing.
574 */
Zhu Yib481de92007-09-25 17:54:57 -0700575 out_cmd->hdr.cmd = REPLY_TX;
576 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800577 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800578
579 /* Copy MAC header from skb into command buffer */
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700580 memcpy(tx_cmd->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700581
Reinette Chatredf833b12009-04-21 10:55:48 -0700582
583 if (info->control.hw_key)
584 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
585
586 /* TODO need this for burst mode later on */
587 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
588
589 /* set is_hcca to 0; it probably will never be implemented */
590 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
591
592 /* Total # bytes to be transmitted */
593 len = (u16)skb->len;
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700594 tx_cmd->len = cpu_to_le16(len);
Reinette Chatredf833b12009-04-21 10:55:48 -0700595
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700596 iwl_dbg_log_tx_data_frame(priv, len, hdr);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700597 iwl_update_stats(priv, true, fc, len);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700598 tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
599 tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Reinette Chatredf833b12009-04-21 10:55:48 -0700600
601 if (!ieee80211_has_morefrags(hdr->frame_control)) {
602 txq->need_update = 1;
603 if (qc)
Tomas Winklerc587de02009-06-03 11:44:07 -0700604 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Reinette Chatredf833b12009-04-21 10:55:48 -0700605 } else {
606 wait_write_ptr = 1;
607 txq->need_update = 0;
608 }
609
610 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
611 le16_to_cpu(out_cmd->hdr.sequence));
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700612 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx_cmd->tx_flags));
613 iwl_print_hex_dump(priv, IWL_DL_TX, tx_cmd, sizeof(*tx_cmd));
614 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700615 ieee80211_hdrlen(fc));
616
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800617 /*
618 * Use the first empty entry in this queue's command buffer array
619 * to contain the Tx command and MAC header concatenated together
620 * (payload data will be in another buffer).
621 * Size of this varies, due to varying MAC header length.
622 * If end is not dword aligned, we'll have 2 extra bytes at the end
623 * of the MAC header (device reads on dword boundaries).
624 * We'll tell device about this padding later.
625 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800626 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800627 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700628
629 len_org = len;
630 len = (len + 3) & ~3;
631
632 if (len_org != len)
633 len_org = 1;
634 else
635 len_org = 0;
636
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800637 /* Physical address of this Tx command's header (not MAC header!),
638 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700639 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
640 len, PCI_DMA_TODEVICE);
641 /* we do not map meta data ... so we can safely access address to
642 * provide to unmap command*/
Johannes Bergc2acea82009-07-24 11:13:05 -0700643 pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
644 pci_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700645
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800646 /* Add buffer containing Tx command and MAC(!) header to TFD's
647 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800648 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
649 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700650
Zhu Yib481de92007-09-25 17:54:57 -0700651
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800652 /* Set up TFD's 2nd entry to point directly to remainder of skb,
653 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700654 len = skb->len - hdr_len;
655 if (len) {
656 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
657 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800658 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
659 phys_addr, len,
660 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700661 }
662
Zhu Yib481de92007-09-25 17:54:57 -0700663
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800664 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800665 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800666 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700667 spin_unlock_irqrestore(&priv->lock, flags);
668
669 if (rc)
670 return rc;
671
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800672 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700673 && priv->mac80211_registered) {
674 if (wait_write_ptr) {
675 spin_lock_irqsave(&priv->lock, flags);
676 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800677 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700678 spin_unlock_irqrestore(&priv->lock, flags);
679 }
680
Johannes Berge4e72fb2009-03-23 17:28:42 +0100681 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700682 }
683
684 return 0;
685
686drop_unlock:
687 spin_unlock_irqrestore(&priv->lock, flags);
688drop:
689 return -1;
690}
691
Zhu Yib481de92007-09-25 17:54:57 -0700692#define BEACON_TIME_MASK_LOW 0x00FFFFFF
693#define BEACON_TIME_MASK_HIGH 0xFF000000
694#define TIME_UNIT 1024
695
696/*
697 * extended beacon time format
698 * time in usec will be changed into a 32-bit value in 8:24 format
699 * the high 1 byte is the beacon counts
700 * the lower 3 bytes is the time in usec within one beacon interval
701 */
702
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800703static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700704{
705 u32 quot;
706 u32 rem;
707 u32 interval = beacon_interval * 1024;
708
709 if (!interval || !usec)
710 return 0;
711
712 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
713 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
714
715 return (quot << 24) + rem;
716}
717
718/* base is usually what we get from ucode with each received frame,
719 * the same as HW timer counter counting down
720 */
721
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800722static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700723{
724 u32 base_low = base & BEACON_TIME_MASK_LOW;
725 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
726 u32 interval = beacon_interval * TIME_UNIT;
727 u32 res = (base & BEACON_TIME_MASK_HIGH) +
728 (addon & BEACON_TIME_MASK_HIGH);
729
730 if (base_low > addon_low)
731 res += base_low - addon_low;
732 else if (base_low < addon_low) {
733 res += interval + base_low - addon_low;
734 res += (1 << 24);
735 } else
736 res += (1 << 24);
737
738 return cpu_to_le32(res);
739}
740
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800741static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700742 struct ieee80211_measurement_params *params,
743 u8 type)
744{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800745 struct iwl_spectrum_cmd spectrum;
Zhu Yi2f301222009-10-09 17:19:45 +0800746 struct iwl_rx_packet *pkt;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800747 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700748 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
749 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700750 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700751 };
752 u32 add_time = le64_to_cpu(params->start_time);
753 int rc;
754 int spectrum_resp_status;
755 int duration = le16_to_cpu(params->duration);
756
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800757 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700758 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800759 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700760 le64_to_cpu(params->start_time) - priv->last_tsf,
761 le16_to_cpu(priv->rxon_timing.beacon_interval));
762
763 memset(&spectrum, 0, sizeof(spectrum));
764
765 spectrum.channel_count = cpu_to_le16(1);
766 spectrum.flags =
767 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
768 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
769 cmd.len = sizeof(spectrum);
770 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
771
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800772 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700773 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800774 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700775 add_time,
776 le16_to_cpu(priv->rxon_timing.beacon_interval));
777 else
778 spectrum.start_time = 0;
779
780 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
781 spectrum.channels[0].channel = params->channel;
782 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800783 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700784 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
785 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
786
Samuel Ortiz518099a2009-01-19 15:30:27 -0800787 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700788 if (rc)
789 return rc;
790
Zhu Yi2f301222009-10-09 17:19:45 +0800791 pkt = (struct iwl_rx_packet *)cmd.reply_page;
792 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800793 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700794 rc = -EIO;
795 }
796
Zhu Yi2f301222009-10-09 17:19:45 +0800797 spectrum_resp_status = le16_to_cpu(pkt->u.spectrum.status);
Zhu Yib481de92007-09-25 17:54:57 -0700798 switch (spectrum_resp_status) {
799 case 0: /* Command will be handled */
Zhu Yi2f301222009-10-09 17:19:45 +0800800 if (pkt->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800801 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800802 pkt->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700803 priv->measurement_status &= ~MEASUREMENT_READY;
804 }
805 priv->measurement_status |= MEASUREMENT_ACTIVE;
806 rc = 0;
807 break;
808
809 case 1: /* Command will not be handled */
810 rc = -EAGAIN;
811 break;
812 }
813
Zhu Yi64a76b52009-12-10 14:37:21 -0800814 iwl_free_pages(priv, cmd.reply_page);
Zhu Yib481de92007-09-25 17:54:57 -0700815
816 return rc;
817}
Zhu Yib481de92007-09-25 17:54:57 -0700818
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800819static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800820 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700821{
Zhu Yi2f301222009-10-09 17:19:45 +0800822 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800823 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700824 struct delayed_work *pwork;
825
826 palive = &pkt->u.alive_frame;
827
Tomas Winklere1623442009-01-27 14:27:56 -0800828 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700829 "0x%01X 0x%01X\n",
830 palive->is_valid, palive->ver_type,
831 palive->ver_subtype);
832
833 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800834 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800835 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
836 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700837 pwork = &priv->init_alive_start;
838 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800839 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700840 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800841 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700842 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800843 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700844 }
845
846 /* We delay the ALIVE response by 5ms to
847 * give the HW RF Kill time to activate... */
848 if (palive->is_valid == UCODE_VALID_OK)
849 queue_delayed_work(priv->workqueue, pwork,
850 msecs_to_jiffies(5));
851 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800852 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700853}
854
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800855static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800856 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700857{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100858#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800859 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Helmut Schaac7e035a2009-01-19 13:02:15 +0100860#endif
Zhu Yib481de92007-09-25 17:54:57 -0700861
Tomas Winklere1623442009-01-27 14:27:56 -0800862 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700863 return;
864}
865
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800866static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700867{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800868 struct iwl_priv *priv =
869 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700870 struct sk_buff *beacon;
871
872 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200873 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700874
875 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800876 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700877 return;
878 }
879
880 mutex_lock(&priv->mutex);
881 /* new beacon skb is allocated every time; dispose previous.*/
882 if (priv->ibss_beacon)
883 dev_kfree_skb(priv->ibss_beacon);
884
885 priv->ibss_beacon = beacon;
886 mutex_unlock(&priv->mutex);
887
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800888 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700889}
890
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800891static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800892 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700893{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800894#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800895 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800896 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700897 u8 rate = beacon->beacon_notify_hdr.rate;
898
Tomas Winklere1623442009-01-27 14:27:56 -0800899 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700900 "tsf %d %d rate %d\n",
901 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
902 beacon->beacon_notify_hdr.failure_frame,
903 le32_to_cpu(beacon->ibss_mgr_status),
904 le32_to_cpu(beacon->high_tsf),
905 le32_to_cpu(beacon->low_tsf), rate);
906#endif
907
Johannes Berg05c914f2008-09-11 00:01:58 +0200908 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700909 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
910 queue_work(priv->workqueue, &priv->beacon_update);
911}
912
Zhu Yib481de92007-09-25 17:54:57 -0700913/* Handle notification from uCode that card's power state is changing
914 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800915static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800916 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700917{
Zhu Yi2f301222009-10-09 17:19:45 +0800918 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700919 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
920 unsigned long status = priv->status;
921
Reinette Chatre4c423a22009-07-17 09:30:26 -0700922 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700923 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
924 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
925
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800926 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700927 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
928
929 if (flags & HW_CARD_DISABLED)
930 set_bit(STATUS_RF_KILL_HW, &priv->status);
931 else
932 clear_bit(STATUS_RF_KILL_HW, &priv->status);
933
934
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800935 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700936
937 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200938 test_bit(STATUS_RF_KILL_HW, &priv->status)))
939 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
940 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700941 else
942 wake_up_interruptible(&priv->wait_command_queue);
943}
944
945/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800946 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700947 *
948 * Setup the RX handlers for each of the reply types sent from the uCode
949 * to the host.
950 *
951 * This function chains into the hardware specific files for them to setup
952 * any hardware specific handlers as well.
953 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800954static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700955{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800956 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
957 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800958 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800959 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800960 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
961 iwl_rx_spectrum_measure_notif;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800962 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700963 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800964 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800965 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700966
Ben Cahill9fbab512007-11-29 11:09:47 +0800967 /*
968 * The same handler is used for both the REPLY to a discrete
969 * statistics request from the host as well as for the periodic
970 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700971 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800972 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
973 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700974
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800975 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800976 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700977
Ben Cahill9fbab512007-11-29 11:09:47 +0800978 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800979 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700980}
981
Zhu Yib481de92007-09-25 17:54:57 -0700982/************************** RX-FUNCTIONS ****************************/
983/*
984 * Rx theory of operation
985 *
986 * The host allocates 32 DMA target addresses and passes the host address
987 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
988 * 0 to 31
989 *
990 * Rx Queue Indexes
991 * The host/firmware share two index registers for managing the Rx buffers.
992 *
993 * The READ index maps to the first position that the firmware may be writing
994 * to -- the driver can read up to (but not including) this position and get
995 * good data.
996 * The READ index is managed by the firmware once the card is enabled.
997 *
998 * The WRITE index maps to the last position the driver has read from -- the
999 * position preceding WRITE is the last slot the firmware can place a packet.
1000 *
1001 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1002 * WRITE = READ.
1003 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001004 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001005 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1006 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001007 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001008 * and fire the RX interrupt. The driver can then query the READ index and
1009 * process as many packets as possible, moving the WRITE index forward as it
1010 * resets the Rx queue buffers with new memory.
1011 *
1012 * The management in the driver is as follows:
1013 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1014 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001015 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001016 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001017 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1018 * 'processed' and 'read' driver indexes as well)
1019 * + A received packet is processed and handed to the kernel network stack,
1020 * detached from the iwl->rxq. The driver 'processed' index is updated.
1021 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1022 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1023 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1024 * were enough free buffers and RX_STALLED is set it is cleared.
1025 *
1026 *
1027 * Driver sequence:
1028 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001029 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001030 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001031 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001032 * queue, updates firmware pointers, and updates
1033 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001034 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001035 *
1036 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001037 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001038 * READ INDEX, detaching the SKB from the pool.
1039 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001040 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001041 * slots.
1042 * ...
1043 *
1044 */
1045
1046/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001047 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001048 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001049static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001050 dma_addr_t dma_addr)
1051{
1052 return cpu_to_le32((u32)dma_addr);
1053}
1054
1055/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001056 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001057 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001058 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001059 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001060 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001061 *
1062 * This moves the 'write' index forward to catch up with 'processed', and
1063 * also updates the memory address in the firmware to reference the new
1064 * target buffer.
1065 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001066static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001067{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001068 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001069 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001070 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001071 unsigned long flags;
1072 int write, rc;
1073
1074 spin_lock_irqsave(&rxq->lock, flags);
1075 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001076 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001077 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001078 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001079 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001080 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001081
1082 /* Point to Rx buffer via next RBD in circular buffer */
Zhu Yi2f301222009-10-09 17:19:45 +08001083 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->page_dma);
Zhu Yib481de92007-09-25 17:54:57 -07001084 rxq->queue[rxq->write] = rxb;
1085 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1086 rxq->free_count--;
1087 }
1088 spin_unlock_irqrestore(&rxq->lock, flags);
1089 /* If the pre-allocated buffer pool is dropping low, schedule to
1090 * refill it */
1091 if (rxq->free_count <= RX_LOW_WATERMARK)
1092 queue_work(priv->workqueue, &priv->rx_replenish);
1093
1094
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001095 /* If we've added more space for the firmware to place data, tell it.
1096 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001097 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001098 || (abs(rxq->write - rxq->read) > 7)) {
1099 spin_lock_irqsave(&rxq->lock, flags);
1100 rxq->need_update = 1;
1101 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001102 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001103 if (rc)
1104 return rc;
1105 }
1106
1107 return 0;
1108}
1109
1110/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001111 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001112 *
1113 * When moving to rx_free an SKB is allocated for the slot.
1114 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001115 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001116 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001117 */
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001118static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001119{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001120 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001121 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001122 struct iwl_rx_mem_buffer *rxb;
Zhu Yi2f301222009-10-09 17:19:45 +08001123 struct page *page;
Zhu Yib481de92007-09-25 17:54:57 -07001124 unsigned long flags;
Zhu Yi29b1b262009-10-23 13:42:25 -07001125 gfp_t gfp_mask = priority;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001126
1127 while (1) {
1128 spin_lock_irqsave(&rxq->lock, flags);
1129
1130 if (list_empty(&rxq->rx_used)) {
1131 spin_unlock_irqrestore(&rxq->lock, flags);
1132 return;
1133 }
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001134 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001135
Reinette Chatref82a9242009-09-17 10:43:56 -07001136 if (rxq->free_count > RX_LOW_WATERMARK)
Zhu Yi29b1b262009-10-23 13:42:25 -07001137 gfp_mask |= __GFP_NOWARN;
Zhu Yi2f301222009-10-09 17:19:45 +08001138
1139 if (priv->hw_params.rx_page_order > 0)
Zhu Yi29b1b262009-10-23 13:42:25 -07001140 gfp_mask |= __GFP_COMP;
Zhu Yi2f301222009-10-09 17:19:45 +08001141
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001142 /* Alloc a new receive buffer */
Zhu Yi29b1b262009-10-23 13:42:25 -07001143 page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order);
Zhu Yi2f301222009-10-09 17:19:45 +08001144 if (!page) {
Zhu Yib481de92007-09-25 17:54:57 -07001145 if (net_ratelimit())
Reinette Chatref82a9242009-09-17 10:43:56 -07001146 IWL_DEBUG_INFO(priv, "Failed to allocate SKB buffer.\n");
1147 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
1148 net_ratelimit())
1149 IWL_CRIT(priv, "Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n",
1150 priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL",
1151 rxq->free_count);
Zhu Yib481de92007-09-25 17:54:57 -07001152 /* We don't reschedule replenish work here -- we will
1153 * call the restock method and if it still needs
1154 * more buffers it will schedule replenish */
1155 break;
1156 }
Zhu Yi12342c42007-12-20 11:27:32 +08001157
Reinette Chatrede0bd502009-09-11 10:38:12 -07001158 spin_lock_irqsave(&rxq->lock, flags);
1159 if (list_empty(&rxq->rx_used)) {
1160 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001161 __free_pages(page, priv->hw_params.rx_page_order);
Reinette Chatrede0bd502009-09-11 10:38:12 -07001162 return;
1163 }
1164 element = rxq->rx_used.next;
1165 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
1166 list_del(element);
1167 spin_unlock_irqrestore(&rxq->lock, flags);
1168
Zhu Yi2f301222009-10-09 17:19:45 +08001169 rxb->page = page;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001170 /* Get physical address of RB/SKB */
Zhu Yi2f301222009-10-09 17:19:45 +08001171 rxb->page_dma = pci_map_page(priv->pci_dev, page, 0,
1172 PAGE_SIZE << priv->hw_params.rx_page_order,
1173 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001174
1175 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001176
Zhu Yib481de92007-09-25 17:54:57 -07001177 list_add_tail(&rxb->list, &rxq->rx_free);
1178 rxq->free_count++;
Zhu Yi2f301222009-10-09 17:19:45 +08001179 priv->alloc_rxb_page++;
1180
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001181 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001182 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001183}
1184
Reinette Chatredf833b12009-04-21 10:55:48 -07001185void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1186{
1187 unsigned long flags;
1188 int i;
1189 spin_lock_irqsave(&rxq->lock, flags);
1190 INIT_LIST_HEAD(&rxq->rx_free);
1191 INIT_LIST_HEAD(&rxq->rx_used);
1192 /* Fill the rx_used queue with _all_ of the Rx buffers */
1193 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1194 /* In the reset function, these buffers may have been allocated
1195 * to an SKB, so we need to unmap and free potential storage */
Zhu Yi2f301222009-10-09 17:19:45 +08001196 if (rxq->pool[i].page != NULL) {
1197 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1198 PAGE_SIZE << priv->hw_params.rx_page_order,
1199 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001200 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001201 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001202 }
1203 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1204 }
1205
1206 /* Set us so that we have processed and used all buffers, but have
1207 * not restocked the Rx queue with fresh buffers */
1208 rxq->read = rxq->write = 0;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001209 rxq->write_actual = 0;
Zhu Yi2f301222009-10-09 17:19:45 +08001210 rxq->free_count = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001211 spin_unlock_irqrestore(&rxq->lock, flags);
1212}
Reinette Chatredf833b12009-04-21 10:55:48 -07001213
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001214void iwl3945_rx_replenish(void *data)
1215{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001216 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001217 unsigned long flags;
1218
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001219 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001220
1221 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001222 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001223 spin_unlock_irqrestore(&priv->lock, flags);
1224}
1225
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001226static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1227{
1228 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1229
1230 iwl3945_rx_queue_restock(priv);
1231}
1232
1233
Reinette Chatredf833b12009-04-21 10:55:48 -07001234/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1235 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1236 * This free routine walks the list of POOL entries and if SKB is set to
1237 * non NULL it is unmapped and freed
1238 */
1239static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1240{
1241 int i;
1242 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
Zhu Yi2f301222009-10-09 17:19:45 +08001243 if (rxq->pool[i].page != NULL) {
1244 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1245 PAGE_SIZE << priv->hw_params.rx_page_order,
1246 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001247 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001248 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001249 }
1250 }
1251
1252 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1253 rxq->dma_addr);
1254 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1255 rxq->rb_stts, rxq->rb_stts_dma);
1256 rxq->bd = NULL;
1257 rxq->rb_stts = NULL;
1258}
Reinette Chatredf833b12009-04-21 10:55:48 -07001259
1260
Zhu Yib481de92007-09-25 17:54:57 -07001261/* Convert linear signal-to-noise ratio into dB */
1262static u8 ratio2dB[100] = {
1263/* 0 1 2 3 4 5 6 7 8 9 */
1264 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1265 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1266 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1267 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1268 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1269 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1270 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1271 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1272 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1273 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1274};
1275
1276/* Calculates a relative dB value from a ratio of linear
1277 * (i.e. not dB) signal levels.
1278 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001279int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001280{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001281 /* 1000:1 or higher just report as 60 dB */
1282 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001283 return 60;
1284
Adrian Bunk221c80c2008-02-02 23:19:01 +02001285 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001286 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001287 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001288 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001289
1290 /* We shouldn't see this */
1291 if (sig_ratio < 1)
1292 return 0;
1293
1294 /* Use table for ratios 1:1 - 99:1 */
1295 return (int)ratio2dB[sig_ratio];
1296}
1297
Zhu Yib481de92007-09-25 17:54:57 -07001298/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001299 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001300 *
1301 * Uses the priv->rx_handlers callback function array to invoke
1302 * the appropriate handlers, including command responses,
1303 * frame-received notifications, and other notifications.
1304 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001305static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001306{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001307 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001308 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001309 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001310 u32 r, i;
1311 int reclaim;
1312 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001313 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001314 u32 count = 8;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001315 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001316
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001317 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1318 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001319 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001320 i = rxq->read;
1321
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001322 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001323 total_empty = r - rxq->write_actual;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001324 if (total_empty < 0)
1325 total_empty += RX_QUEUE_SIZE;
1326
1327 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001328 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001329 /* Rx interrupt, but nothing sent from uCode */
1330 if (i == r)
Reinette Chatreaf472a952009-08-28 09:58:50 -07001331 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001332
1333 while (i != r) {
1334 rxb = rxq->queue[i];
1335
Ben Cahill9fbab512007-11-29 11:09:47 +08001336 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001337 * then a bug has been introduced in the queue refilling
1338 * routines -- catch it here */
1339 BUG_ON(rxb == NULL);
1340
1341 rxq->queue[i] = NULL;
1342
Zhu Yi2f301222009-10-09 17:19:45 +08001343 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1344 PAGE_SIZE << priv->hw_params.rx_page_order,
1345 PCI_DMA_FROMDEVICE);
1346 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001347
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001348 trace_iwlwifi_dev_rx(priv, pkt,
1349 le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK);
1350
Zhu Yib481de92007-09-25 17:54:57 -07001351 /* Reclaim a command buffer only if this packet is a response
1352 * to a (driver-originated) command.
1353 * If the packet (e.g. Rx frame) originated from uCode,
1354 * there is no command buffer to reclaim.
1355 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1356 * but apparently a few don't get set; catch them here. */
1357 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1358 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1359 (pkt->hdr.cmd != REPLY_TX);
1360
1361 /* Based on type of command response or notification,
1362 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001363 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001364 if (priv->rx_handlers[pkt->hdr.cmd]) {
Reinette Chatreaf472a952009-08-28 09:58:50 -07001365 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r, i,
Zhu Yib481de92007-09-25 17:54:57 -07001366 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001367 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001368 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001369 } else {
1370 /* No handling needed */
Zhu Yi2f301222009-10-09 17:19:45 +08001371 IWL_DEBUG_RX(priv,
1372 "r %d i %d No handler needed for %s, 0x%02x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001373 r, i, get_cmd_string(pkt->hdr.cmd),
1374 pkt->hdr.cmd);
1375 }
1376
Zhu Yi29b1b262009-10-23 13:42:25 -07001377 /*
1378 * XXX: After here, we should always check rxb->page
1379 * against NULL before touching it or its virtual
1380 * memory (pkt). Because some rx_handler might have
1381 * already taken or freed the pages.
1382 */
1383
Zhu Yib481de92007-09-25 17:54:57 -07001384 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001385 /* Invoke any callbacks, transfer the buffer to caller,
1386 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001387 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001388 if (rxb->page)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001389 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001390 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001391 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001392 }
1393
Zhu Yi73005152009-10-23 13:42:32 -07001394 /* Reuse the page if possible. For notification packets and
1395 * SKBs that fail to Rx correctly, add them back into the
1396 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001397 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001398 if (rxb->page != NULL) {
1399 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1400 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1401 PCI_DMA_FROMDEVICE);
1402 list_add_tail(&rxb->list, &rxq->rx_free);
1403 rxq->free_count++;
1404 } else
1405 list_add_tail(&rxb->list, &rxq->rx_used);
1406
Zhu Yib481de92007-09-25 17:54:57 -07001407 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001408
Zhu Yib481de92007-09-25 17:54:57 -07001409 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001410 /* If there are a lot of unused frames,
1411 * restock the Rx queue so ucode won't assert. */
1412 if (fill_rx) {
1413 count++;
1414 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001415 rxq->read = i;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001416 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001417 count = 0;
1418 }
1419 }
Zhu Yib481de92007-09-25 17:54:57 -07001420 }
1421
1422 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001423 rxq->read = i;
Abhijeet Kolekard14d44402009-06-03 11:44:08 -07001424 if (fill_rx)
1425 iwl3945_rx_replenish_now(priv);
1426 else
1427 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001428}
1429
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001430/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001431static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001432{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001433 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001434 synchronize_irq(priv->pci_dev->irq);
1435 tasklet_kill(&priv->irq_tasklet);
1436}
1437
Zhu Yib481de92007-09-25 17:54:57 -07001438static const char *desc_lookup(int i)
1439{
1440 switch (i) {
1441 case 1:
1442 return "FAIL";
1443 case 2:
1444 return "BAD_PARAM";
1445 case 3:
1446 return "BAD_CHECKSUM";
1447 case 4:
1448 return "NMI_INTERRUPT";
1449 case 5:
1450 return "SYSASSERT";
1451 case 6:
1452 return "FATAL_ERROR";
1453 }
1454
1455 return "UNKNOWN";
1456}
1457
1458#define ERROR_START_OFFSET (1 * sizeof(u32))
1459#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1460
Reinette Chatreb7a79402009-09-25 14:24:23 -07001461void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001462{
1463 u32 i;
1464 u32 desc, time, count, base, data1;
1465 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001466
1467 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1468
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001469 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001470 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001471 return;
1472 }
1473
Zhu Yib481de92007-09-25 17:54:57 -07001474
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001475 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001476
1477 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001478 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1479 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1480 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001481 }
1482
Winkler, Tomas15b16872008-12-19 10:37:33 +08001483 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001484 "ilink1 nmiPC Line\n");
1485 for (i = ERROR_START_OFFSET;
1486 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1487 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001488 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001489 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001490 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001491 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001492 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001493 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001494 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001495 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001496 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001497 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001498 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001499 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001500 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001501
Winkler, Tomas15b16872008-12-19 10:37:33 +08001502 IWL_ERR(priv,
1503 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1504 desc_lookup(desc), desc, time, blink1, blink2,
1505 ilink1, ilink2, data1);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001506 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, 0,
1507 0, blink1, blink2, ilink1, ilink2);
Zhu Yib481de92007-09-25 17:54:57 -07001508 }
Zhu Yib481de92007-09-25 17:54:57 -07001509}
1510
Ben Cahillf58177b2007-11-29 11:09:43 +08001511#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001512
1513/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001514 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001515 *
Zhu Yib481de92007-09-25 17:54:57 -07001516 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001517static int iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
1518 u32 num_events, u32 mode,
1519 int pos, char **buf, size_t bufsz)
Zhu Yib481de92007-09-25 17:54:57 -07001520{
1521 u32 i;
1522 u32 base; /* SRAM byte address of event log header */
1523 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1524 u32 ptr; /* SRAM byte address of log data */
1525 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08001526 unsigned long reg_flags;
Zhu Yib481de92007-09-25 17:54:57 -07001527
1528 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001529 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001530
1531 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1532
1533 if (mode == 0)
1534 event_size = 2 * sizeof(u32);
1535 else
1536 event_size = 3 * sizeof(u32);
1537
1538 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1539
Ben Cahille5854472009-11-06 14:52:58 -08001540 /* Make sure device is powered up for SRAM reads */
1541 spin_lock_irqsave(&priv->reg_lock, reg_flags);
1542 iwl_grab_nic_access(priv);
1543
1544 /* Set starting address; reads will auto-increment */
1545 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1546 rmb();
1547
Zhu Yib481de92007-09-25 17:54:57 -07001548 /* "time" is actually "data" for mode 0 (no timestamp).
1549 * place event id # at far right for easier visual parsing. */
1550 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08001551 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1552 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001553 if (mode == 0) {
1554 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001555 if (bufsz) {
1556 pos += scnprintf(*buf + pos, bufsz - pos,
1557 "0x%08x:%04u\n",
1558 time, ev);
1559 } else {
1560 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1561 trace_iwlwifi_dev_ucode_event(priv, 0,
1562 time, ev);
1563 }
Winkler, Tomas15b16872008-12-19 10:37:33 +08001564 } else {
Ben Cahille5854472009-11-06 14:52:58 -08001565 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001566 if (bufsz) {
1567 pos += scnprintf(*buf + pos, bufsz - pos,
1568 "%010u:0x%08x:%04u\n",
1569 time, data, ev);
1570 } else {
1571 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n",
1572 time, data, ev);
1573 trace_iwlwifi_dev_ucode_event(priv, time,
1574 data, ev);
1575 }
Zhu Yib481de92007-09-25 17:54:57 -07001576 }
1577 }
Ben Cahille5854472009-11-06 14:52:58 -08001578
1579 /* Allow device to power down */
1580 iwl_release_nic_access(priv);
1581 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001582 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001583}
1584
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001585/**
1586 * iwl3945_print_last_event_logs - Dump the newest # of event log to syslog
1587 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001588static int iwl3945_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001589 u32 num_wraps, u32 next_entry,
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001590 u32 size, u32 mode,
1591 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001592{
1593 /*
1594 * display the newest DEFAULT_LOG_ENTRIES entries
1595 * i.e the entries just before the next ont that uCode would fill.
1596 */
1597 if (num_wraps) {
1598 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001599 pos = iwl3945_print_event_log(priv,
1600 capacity - (size - next_entry),
1601 size - next_entry, mode,
1602 pos, buf, bufsz);
1603 pos = iwl3945_print_event_log(priv, 0,
1604 next_entry, mode,
1605 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001606 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001607 pos = iwl3945_print_event_log(priv, next_entry - size,
1608 size, mode,
1609 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001610 } else {
1611 if (next_entry < size)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001612 pos = iwl3945_print_event_log(priv, 0,
1613 next_entry, mode,
1614 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001615 else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001616 pos = iwl3945_print_event_log(priv, next_entry - size,
1617 size, mode,
1618 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001619 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001620 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001621}
1622
Ben Cahill84c40692009-11-06 14:52:57 -08001623/* For sanity check only. Actual size is determined by uCode, typ. 512 */
1624#define IWL3945_MAX_EVENT_LOG_SIZE (512)
1625
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001626#define DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES (20)
1627
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001628int iwl3945_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
1629 char **buf, bool display)
Zhu Yib481de92007-09-25 17:54:57 -07001630{
Zhu Yib481de92007-09-25 17:54:57 -07001631 u32 base; /* SRAM byte address of event log header */
1632 u32 capacity; /* event log capacity in # entries */
1633 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1634 u32 num_wraps; /* # times uCode wrapped to top of log */
1635 u32 next_entry; /* index of next entry to be written by uCode */
1636 u32 size; /* # entries that we'll print */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001637 int pos = 0;
1638 size_t bufsz = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001639
1640 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001641 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001642 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001643 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001644 }
1645
Zhu Yib481de92007-09-25 17:54:57 -07001646 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001647 capacity = iwl_read_targ_mem(priv, base);
1648 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1649 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1650 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001651
Ben Cahill84c40692009-11-06 14:52:57 -08001652 if (capacity > IWL3945_MAX_EVENT_LOG_SIZE) {
1653 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
1654 capacity, IWL3945_MAX_EVENT_LOG_SIZE);
1655 capacity = IWL3945_MAX_EVENT_LOG_SIZE;
1656 }
1657
1658 if (next_entry > IWL3945_MAX_EVENT_LOG_SIZE) {
1659 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
1660 next_entry, IWL3945_MAX_EVENT_LOG_SIZE);
1661 next_entry = IWL3945_MAX_EVENT_LOG_SIZE;
1662 }
1663
Zhu Yib481de92007-09-25 17:54:57 -07001664 size = num_wraps ? capacity : next_entry;
1665
1666 /* bail out if nothing in log */
1667 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001668 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001669 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001670 }
1671
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001672#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08001673 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001674 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1675 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1676#else
1677 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1678 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1679#endif
1680
1681 IWL_ERR(priv, "Start IWL Event Log Dump: display last %d count\n",
1682 size);
Zhu Yib481de92007-09-25 17:54:57 -07001683
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001684#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001685 if (display) {
1686 if (full_log)
1687 bufsz = capacity * 48;
1688 else
1689 bufsz = size * 48;
1690 *buf = kmalloc(bufsz, GFP_KERNEL);
1691 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001692 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001693 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001694 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
1695 /* if uCode has wrapped back to top of log,
1696 * start at the oldest entry,
1697 * i.e the next one that uCode would fill.
1698 */
1699 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001700 pos = iwl3945_print_event_log(priv, next_entry,
1701 capacity - next_entry, mode,
1702 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001703
1704 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001705 pos = iwl3945_print_event_log(priv, 0, next_entry, mode,
1706 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001707 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001708 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1709 next_entry, size, mode,
1710 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001711#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001712 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1713 next_entry, size, mode,
1714 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001715#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001716 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001717}
1718
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001719static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001720{
1721 u32 inta, handled = 0;
1722 u32 inta_fh;
1723 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001724#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001725 u32 inta_mask;
1726#endif
1727
1728 spin_lock_irqsave(&priv->lock, flags);
1729
1730 /* Ack/clear/reset pending uCode interrupts.
1731 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1732 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001733 inta = iwl_read32(priv, CSR_INT);
1734 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001735
1736 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1737 * Any new interrupts that happen after this, either while we're
1738 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001739 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1740 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001741
Samuel Ortizd08853a2009-01-23 13:45:17 -08001742#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001743 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001744 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001745 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001746 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001747 inta, inta_mask, inta_fh);
1748 }
1749#endif
1750
Zhu Yi2f301222009-10-09 17:19:45 +08001751 spin_unlock_irqrestore(&priv->lock, flags);
1752
Zhu Yib481de92007-09-25 17:54:57 -07001753 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1754 * atomic, make sure that inta covers all the interrupts that
1755 * we've discovered, even if FH interrupt came in just after
1756 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001757 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001758 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001759 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001760 inta |= CSR_INT_BIT_FH_TX;
1761
1762 /* Now service all interrupt bits discovered above. */
1763 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001764 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001765
1766 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001767 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001768
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001769 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001770 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001771
1772 handled |= CSR_INT_BIT_HW_ERR;
1773
Zhu Yib481de92007-09-25 17:54:57 -07001774 return;
1775 }
1776
Samuel Ortizd08853a2009-01-23 13:45:17 -08001777#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001778 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001779 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001780 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001781 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001782 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001783 priv->isr_stats.sch++;
1784 }
Zhu Yib481de92007-09-25 17:54:57 -07001785
1786 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001787 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001788 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001789 priv->isr_stats.alive++;
1790 }
Zhu Yib481de92007-09-25 17:54:57 -07001791 }
1792#endif
1793 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001794 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001795
Zhu Yib481de92007-09-25 17:54:57 -07001796 /* Error detected by uCode */
1797 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001798 IWL_ERR(priv, "Microcode SW error detected. "
1799 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001800 priv->isr_stats.sw++;
1801 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001802 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001803 handled |= CSR_INT_BIT_SW_ERR;
1804 }
1805
1806 /* uCode wakes up after power-down sleep */
1807 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001808 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001809 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001810 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1811 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1812 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1813 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1814 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1815 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001816
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001817 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001818 handled |= CSR_INT_BIT_WAKEUP;
1819 }
1820
1821 /* All uCode command responses, including Tx command responses,
1822 * Rx "responses" (frame-received notification), and other
1823 * notifications from uCode come through here*/
1824 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001825 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001826 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001827 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1828 }
1829
1830 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001831 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001832 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001833
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001834 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001835 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1836 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001837 handled |= CSR_INT_BIT_FH_TX;
1838 }
1839
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001840 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001841 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001842 priv->isr_stats.unhandled++;
1843 }
Zhu Yib481de92007-09-25 17:54:57 -07001844
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001845 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001846 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001847 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001848 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001849 }
1850
1851 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001852 /* only Re-enable if disabled by irq */
1853 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001854 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001855
Samuel Ortizd08853a2009-01-23 13:45:17 -08001856#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001857 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001858 inta = iwl_read32(priv, CSR_INT);
1859 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1860 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001861 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001862 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1863 }
1864#endif
Zhu Yib481de92007-09-25 17:54:57 -07001865}
1866
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001867static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001868 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001869 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001870 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001871{
Johannes Berg4e05c232009-06-19 13:52:44 -07001872 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001873 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001874 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001875 u16 passive_dwell = 0;
1876 u16 active_dwell = 0;
1877 int added, i;
1878
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001879 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001880 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001881 return 0;
1882
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001883 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1884 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001885
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001886 if (passive_dwell <= active_dwell)
1887 passive_dwell = active_dwell + 1;
1888
Johannes Berg4e05c232009-06-19 13:52:44 -07001889 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1890 chan = priv->scan_request->channels[i];
1891
1892 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001893 continue;
1894
Johannes Berg4e05c232009-06-19 13:52:44 -07001895 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001896
Samuel Ortize6148912009-01-23 13:45:15 -08001897 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001898 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001899 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001900 scan_ch->channel);
1901 continue;
1902 }
1903
Zhu Yib481de92007-09-25 17:54:57 -07001904 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1905 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001906 /* If passive , set up for auto-switch
1907 * and use long active_dwell time.
1908 */
1909 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001910 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001911 scan_ch->type = 0; /* passive */
1912 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1913 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1914 } else {
1915 scan_ch->type = 1; /* active */
1916 }
1917
1918 /* Set direct probe bits. These may be used both for active
1919 * scan channels (probes gets sent right away),
1920 * or for passive channels (probes get se sent only after
1921 * hearing clear Rx packet).*/
1922 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1923 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001924 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001925 } else {
1926 /* uCode v1 does not allow setting direct probe bits on
1927 * passive channel. */
1928 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001929 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001930 }
Zhu Yib481de92007-09-25 17:54:57 -07001931
Ben Cahill9fbab512007-11-29 11:09:47 +08001932 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001933 scan_ch->tpc.dsp_atten = 110;
1934 /* scan_pwr_info->tpc.dsp_atten; */
1935
1936 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001937 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001938 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1939 else {
1940 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1941 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001942 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001943 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001944 */
1945 }
1946
Tomas Winklere1623442009-01-27 14:27:56 -08001947 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001948 scan_ch->channel,
1949 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1950 (scan_ch->type & 1) ?
1951 active_dwell : passive_dwell);
1952
1953 scan_ch++;
1954 added++;
1955 }
1956
Tomas Winklere1623442009-01-27 14:27:56 -08001957 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001958 return added;
1959}
1960
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001961static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001962 struct ieee80211_rate *rates)
1963{
1964 int i;
1965
1966 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001967 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1968 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1969 rates[i].hw_value_short = i;
1970 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001971 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001972 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001973 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001974 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001975 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001976 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001977 }
Zhu Yib481de92007-09-25 17:54:57 -07001978 }
1979}
1980
Zhu Yib481de92007-09-25 17:54:57 -07001981/******************************************************************************
1982 *
1983 * uCode download functions
1984 *
1985 ******************************************************************************/
1986
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001987static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001988{
Tomas Winkler98c92212008-01-14 17:46:20 -08001989 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1990 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1991 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1992 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1993 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1994 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001995}
1996
1997/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001998 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001999 * looking at all data.
2000 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002001static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002002{
2003 u32 val;
2004 u32 save_len = len;
2005 int rc = 0;
2006 u32 errcnt;
2007
Tomas Winklere1623442009-01-27 14:27:56 -08002008 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002009
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002010 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002011 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07002012
2013 errcnt = 0;
2014 for (; len > 0; len -= sizeof(u32), image++) {
2015 /* read data comes through single port, auto-incr addr */
2016 /* NOTE: Use the debugless read so we don't flood kernel log
2017 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002018 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002019 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002020 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002021 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2022 save_len - len, val, le32_to_cpu(*image));
2023 rc = -EIO;
2024 errcnt++;
2025 if (errcnt >= 20)
2026 break;
2027 }
2028 }
2029
Zhu Yib481de92007-09-25 17:54:57 -07002030
2031 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002032 IWL_DEBUG_INFO(priv,
2033 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002034
2035 return rc;
2036}
2037
2038
2039/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002040 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002041 * using sample data 100 bytes apart. If these sample points are good,
2042 * it's a pretty good bet that everything between them is good, too.
2043 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002044static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002045{
2046 u32 val;
2047 int rc = 0;
2048 u32 errcnt = 0;
2049 u32 i;
2050
Tomas Winklere1623442009-01-27 14:27:56 -08002051 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002052
Zhu Yib481de92007-09-25 17:54:57 -07002053 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2054 /* read data comes through single port, auto-incr addr */
2055 /* NOTE: Use the debugless read so we don't flood kernel log
2056 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002057 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002058 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002059 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002060 if (val != le32_to_cpu(*image)) {
2061#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002062 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002063 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2064 i, val, *image);
2065#endif
2066 rc = -EIO;
2067 errcnt++;
2068 if (errcnt >= 3)
2069 break;
2070 }
2071 }
2072
Zhu Yib481de92007-09-25 17:54:57 -07002073 return rc;
2074}
2075
2076
2077/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002078 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002079 * and verify its contents
2080 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002081static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002082{
2083 __le32 *image;
2084 u32 len;
2085 int rc = 0;
2086
2087 /* Try bootstrap */
2088 image = (__le32 *)priv->ucode_boot.v_addr;
2089 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002090 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002091 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002092 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002093 return 0;
2094 }
2095
2096 /* Try initialize */
2097 image = (__le32 *)priv->ucode_init.v_addr;
2098 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002099 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002100 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002101 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002102 return 0;
2103 }
2104
2105 /* Try runtime/protocol */
2106 image = (__le32 *)priv->ucode_code.v_addr;
2107 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002108 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002109 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002110 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002111 return 0;
2112 }
2113
Winkler, Tomas15b16872008-12-19 10:37:33 +08002114 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002115
Ben Cahill9fbab512007-11-29 11:09:47 +08002116 /* Since nothing seems to match, show first several data entries in
2117 * instruction SRAM, so maybe visual inspection will give a clue.
2118 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002119 image = (__le32 *)priv->ucode_boot.v_addr;
2120 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002121 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002122
2123 return rc;
2124}
2125
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002126static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002127{
2128 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002129 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002130}
2131
2132/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002133 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002134 *
2135 * Copy into buffers for card to fetch via bus-mastering
2136 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002137static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002138{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002139 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002140 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002141 const struct firmware *ucode_raw;
2142 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002143 const char *name_pre = priv->cfg->fw_name_pre;
2144 const unsigned int api_max = priv->cfg->ucode_api_max;
2145 const unsigned int api_min = priv->cfg->ucode_api_min;
2146 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002147 u8 *src;
2148 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002149 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002150
2151 /* Ask kernel firmware_class module to get the boot firmware off disk.
2152 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002153 for (index = api_max; index >= api_min; index--) {
2154 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2155 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2156 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002157 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002158 buf, ret);
2159 if (ret == -ENOENT)
2160 continue;
2161 else
2162 goto error;
2163 } else {
2164 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002165 IWL_ERR(priv, "Loaded firmware %s, "
2166 "which is deprecated. "
2167 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002168 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002169 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2170 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002171 buf, ucode_raw->size);
2172 break;
2173 }
Zhu Yib481de92007-09-25 17:54:57 -07002174 }
2175
Reinette Chatrea0987a82008-12-02 12:14:06 -08002176 if (ret < 0)
2177 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002178
2179 /* Make sure that we got at least our header! */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002180 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002181 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002182 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002183 goto err_release;
2184 }
2185
2186 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002187 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002188
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002189 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002190 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002191 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2192 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2193 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2194 init_data_size =
2195 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2196 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2197 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002198
Reinette Chatrea0987a82008-12-02 12:14:06 -08002199 /* api_ver should match the api version forming part of the
2200 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002201 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002202
2203 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002204 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002205 "Driver supports v%u, firmware is v%u.\n",
2206 api_max, api_ver);
2207 priv->ucode_ver = 0;
2208 ret = -EINVAL;
2209 goto err_release;
2210 }
2211 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002212 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002213 "got %u. New firmware can be obtained "
2214 "from http://www.intellinuxwireless.org.\n",
2215 api_max, api_ver);
2216
Tomas Winkler978785a2008-12-19 10:37:31 +08002217 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2218 IWL_UCODE_MAJOR(priv->ucode_ver),
2219 IWL_UCODE_MINOR(priv->ucode_ver),
2220 IWL_UCODE_API(priv->ucode_ver),
2221 IWL_UCODE_SERIAL(priv->ucode_ver));
2222
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002223 snprintf(priv->hw->wiphy->fw_version,
2224 sizeof(priv->hw->wiphy->fw_version),
2225 "%u.%u.%u.%u",
2226 IWL_UCODE_MAJOR(priv->ucode_ver),
2227 IWL_UCODE_MINOR(priv->ucode_ver),
2228 IWL_UCODE_API(priv->ucode_ver),
2229 IWL_UCODE_SERIAL(priv->ucode_ver));
2230
Tomas Winklere1623442009-01-27 14:27:56 -08002231 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002232 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002233 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2234 inst_size);
2235 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2236 data_size);
2237 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2238 init_size);
2239 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2240 init_data_size);
2241 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2242 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002243
Reinette Chatrea0987a82008-12-02 12:14:06 -08002244
Zhu Yib481de92007-09-25 17:54:57 -07002245 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002246 if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002247 inst_size + data_size + init_size +
2248 init_data_size + boot_size) {
2249
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002250 IWL_DEBUG_INFO(priv,
2251 "uCode file size %zd does not match expected size\n",
2252 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002253 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002254 goto err_release;
2255 }
2256
2257 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002258 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002259 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002260 inst_size);
2261 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002262 goto err_release;
2263 }
2264
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002265 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002266 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002267 data_size);
2268 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002269 goto err_release;
2270 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002271 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002272 IWL_DEBUG_INFO(priv,
2273 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002274 init_size);
2275 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002276 goto err_release;
2277 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002278 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002279 IWL_DEBUG_INFO(priv,
2280 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002281 init_data_size);
2282 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002283 goto err_release;
2284 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002285 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002286 IWL_DEBUG_INFO(priv,
2287 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002288 boot_size);
2289 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002290 goto err_release;
2291 }
2292
2293 /* Allocate ucode buffers for card's bus-master loading ... */
2294
2295 /* Runtime instructions and 2 copies of data:
2296 * 1) unmodified from disk
2297 * 2) backup cache for save/restore during power-downs */
2298 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002299 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002300
2301 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002302 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002303
2304 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002305 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002306
2307 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002308 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002309 goto err_pci_alloc;
2310
Tomas Winkler90e759d2007-11-29 11:09:41 +08002311 /* Initialization instructions and data */
2312 if (init_size && init_data_size) {
2313 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002314 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002315
2316 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002317 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002318
2319 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2320 goto err_pci_alloc;
2321 }
2322
2323 /* Bootstrap (instructions only, no data) */
2324 if (boot_size) {
2325 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002326 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002327
2328 if (!priv->ucode_boot.v_addr)
2329 goto err_pci_alloc;
2330 }
2331
Zhu Yib481de92007-09-25 17:54:57 -07002332 /* Copy images into buffers for card's bus-master reads ... */
2333
2334 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002335 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002336 IWL_DEBUG_INFO(priv,
2337 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002338 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002339 src += len;
2340
Tomas Winklere1623442009-01-27 14:27:56 -08002341 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002342 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2343
2344 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002345 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002346 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002347 IWL_DEBUG_INFO(priv,
2348 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002349 memcpy(priv->ucode_data.v_addr, src, len);
2350 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002351 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002352
2353 /* Initialization instructions (3rd block) */
2354 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002355 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002356 IWL_DEBUG_INFO(priv,
2357 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002358 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002359 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002360 }
2361
2362 /* Initialization data (4th block) */
2363 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002364 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002365 IWL_DEBUG_INFO(priv,
2366 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002367 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002368 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002369 }
2370
2371 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002372 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002373 IWL_DEBUG_INFO(priv,
2374 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002375 memcpy(priv->ucode_boot.v_addr, src, len);
2376
2377 /* We have our copies now, allow OS release its copies */
2378 release_firmware(ucode_raw);
2379 return 0;
2380
2381 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002382 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002383 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002384 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002385
2386 err_release:
2387 release_firmware(ucode_raw);
2388
2389 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002390 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002391}
2392
2393
2394/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002395 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002396 *
2397 * Tell initialization uCode where to find runtime uCode.
2398 *
2399 * BSM registers initially contain pointers to initialization uCode.
2400 * We need to replace them to load runtime uCode inst and data,
2401 * and to save runtime data when powering down.
2402 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002403static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002404{
2405 dma_addr_t pinst;
2406 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002407
2408 /* bits 31:0 for 3945 */
2409 pinst = priv->ucode_code.p_addr;
2410 pdata = priv->ucode_data_backup.p_addr;
2411
Zhu Yib481de92007-09-25 17:54:57 -07002412 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002413 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2414 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2415 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002416 priv->ucode_data.len);
2417
Tomas Winklera96a27f2008-10-23 23:48:56 -07002418 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002419 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002420 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002421 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2422
Tomas Winklere1623442009-01-27 14:27:56 -08002423 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002424
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002425 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002426}
2427
2428/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002429 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002430 *
2431 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2432 *
Zhu Yib481de92007-09-25 17:54:57 -07002433 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002434 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002435static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002436{
2437 /* Check alive response for "valid" sign from uCode */
2438 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2439 /* We had an error bringing up the hardware, so take it
2440 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002441 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002442 goto restart;
2443 }
2444
2445 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2446 * This is a paranoid check, because we would not have gotten the
2447 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002448 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002449 /* Runtime instruction load was bad;
2450 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002451 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002452 goto restart;
2453 }
2454
2455 /* Send pointers to protocol/runtime uCode image ... init code will
2456 * load and launch runtime uCode, which will send us another "Alive"
2457 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002458 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002459 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002460 /* Runtime instruction load won't happen;
2461 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002462 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002463 goto restart;
2464 }
2465 return;
2466
2467 restart:
2468 queue_work(priv->workqueue, &priv->restart);
2469}
2470
Zhu Yib481de92007-09-25 17:54:57 -07002471/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002472 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002473 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002474 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002475 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002476static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002477{
Zhu Yib481de92007-09-25 17:54:57 -07002478 int thermal_spin = 0;
2479 u32 rfkill;
2480
Tomas Winklere1623442009-01-27 14:27:56 -08002481 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002482
2483 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2484 /* We had an error bringing up the hardware, so take it
2485 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002486 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002487 goto restart;
2488 }
2489
2490 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2491 * This is a paranoid check, because we would not have gotten the
2492 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002493 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002494 /* Runtime instruction load was bad;
2495 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002496 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002497 goto restart;
2498 }
2499
Tomas Winklerc587de02009-06-03 11:44:07 -07002500 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002501
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002502 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002503 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002504
2505 if (rfkill & 0x1) {
2506 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002507 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002508 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002509 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002510 thermal_spin++;
2511 udelay(10);
2512 }
2513
2514 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002515 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002516 thermal_spin * 10);
2517 } else
2518 set_bit(STATUS_RF_KILL_HW, &priv->status);
2519
Ben Cahill9fbab512007-11-29 11:09:47 +08002520 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002521 set_bit(STATUS_ALIVE, &priv->status);
2522
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002523 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002524 return;
2525
Johannes Berg36d68252008-05-15 12:55:26 +02002526 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002527
2528 priv->active_rate = priv->rates_mask;
2529 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2530
Ben Cahill4d6ccbf2009-11-13 11:56:29 -08002531 iwl_power_update_mode(priv, true);
Zhu Yib481de92007-09-25 17:54:57 -07002532
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002533 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002534 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002535 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002536
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002537 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002538 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2539 } else {
2540 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002541 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002542 }
2543
Ben Cahill9fbab512007-11-29 11:09:47 +08002544 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002545 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002546
2547 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002548 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002549
Zhu Yib481de92007-09-25 17:54:57 -07002550 iwl3945_reg_txpower_periodic(priv);
2551
Johannes Berge932a602009-10-02 13:44:03 -07002552 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002553
Tomas Winklere1623442009-01-27 14:27:56 -08002554 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002555 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002556 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002557
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002558 /* reassociate for ADHOC mode */
2559 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2560 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2561 priv->vif);
2562 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002563 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002564 }
2565
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002566 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002567 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002568
Zhu Yib481de92007-09-25 17:54:57 -07002569 return;
2570
2571 restart:
2572 queue_work(priv->workqueue, &priv->restart);
2573}
2574
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002575static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002576
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002577static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002578{
2579 unsigned long flags;
2580 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2581 struct ieee80211_conf *conf = NULL;
2582
Tomas Winklere1623442009-01-27 14:27:56 -08002583 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002584
2585 conf = ieee80211_get_hw_conf(priv->hw);
2586
2587 if (!exit_pending)
2588 set_bit(STATUS_EXIT_PENDING, &priv->status);
2589
Tomas Winklerc587de02009-06-03 11:44:07 -07002590 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002591
2592 /* Unblock any waiting calls */
2593 wake_up_interruptible_all(&priv->wait_command_queue);
2594
Zhu Yib481de92007-09-25 17:54:57 -07002595 /* Wipe out the EXIT_PENDING status bit if we are not actually
2596 * exiting the module */
2597 if (!exit_pending)
2598 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2599
2600 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002601 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002602
2603 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002604 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002605 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002606 spin_unlock_irqrestore(&priv->lock, flags);
2607 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002608
2609 if (priv->mac80211_registered)
2610 ieee80211_stop_queues(priv->hw);
2611
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002612 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002613 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002614 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002615 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2616 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002617 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2618 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002619 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2620 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002621 goto exit;
2622 }
2623
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002624 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002625 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002626 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2627 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002628 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2629 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002630 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002631 STATUS_FW_ERROR |
2632 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2633 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002634
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002635 iwl3945_hw_txq_ctx_stop(priv);
2636 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002637
Ben Cahill309e7312009-11-06 14:53:03 -08002638 /* Power-down device's busmaster DMA clocks */
2639 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002640 udelay(5);
2641
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002642 /* Stop the device, and put it in low power state */
2643 priv->cfg->ops->lib->apm_ops.stop(priv);
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002644
Zhu Yib481de92007-09-25 17:54:57 -07002645 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002646 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002647
2648 if (priv->ibss_beacon)
2649 dev_kfree_skb(priv->ibss_beacon);
2650 priv->ibss_beacon = NULL;
2651
2652 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002653 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002654}
2655
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002656static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002657{
2658 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002659 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002660 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002661
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002662 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002663}
2664
2665#define MAX_HW_RESTARTS 5
2666
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002667static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002668{
2669 int rc, i;
2670
2671 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002672 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002673 return -EIO;
2674 }
2675
Reinette Chatree903fbd2008-01-30 22:05:15 -08002676 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002677 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002678 return -EIO;
2679 }
2680
Zhu Yie655b9f2008-01-24 02:19:38 -08002681 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002682 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002683 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2684 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2685 else {
2686 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002687 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2688 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002689 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002690
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002691 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002693 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002694 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002695 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002696 return rc;
2697 }
2698
2699 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002700 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2701 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002702 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2703
2704 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002705 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002706 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002707
2708 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002709 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2710 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002711
2712 /* Copy original ucode data image from disk into backup cache.
2713 * This will be used to initialize the on-board processor's
2714 * data SRAM for a clean start when the runtime program first loads. */
2715 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08002716 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002717
Zhu Yie655b9f2008-01-24 02:19:38 -08002718 /* We return success when we resume from suspend and rf_kill is on. */
2719 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2720 return 0;
2721
Zhu Yib481de92007-09-25 17:54:57 -07002722 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2723
Tomas Winklerc587de02009-06-03 11:44:07 -07002724 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002725
2726 /* load bootstrap state machine,
2727 * load bootstrap program into processor's memory,
2728 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002729 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002730
2731 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002732 IWL_ERR(priv,
2733 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002734 continue;
2735 }
2736
2737 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002738 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002739
Tomas Winklere1623442009-01-27 14:27:56 -08002740 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002741
2742 return 0;
2743 }
2744
2745 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002746 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002747 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002748
2749 /* tried to restart and config the device for as long as our
2750 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002751 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002752 return -EIO;
2753}
2754
2755
2756/*****************************************************************************
2757 *
2758 * Workqueue callbacks
2759 *
2760 *****************************************************************************/
2761
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002762static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002763{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002764 struct iwl_priv *priv =
2765 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002766
2767 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2768 return;
2769
2770 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002771 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002772 mutex_unlock(&priv->mutex);
2773}
2774
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002775static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002776{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002777 struct iwl_priv *priv =
2778 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002779
2780 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2781 return;
2782
2783 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002784 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002785 mutex_unlock(&priv->mutex);
2786}
2787
Ben Cahill743cdf12009-10-09 13:20:26 -07002788/*
2789 * 3945 cannot interrupt driver when hardware rf kill switch toggles;
2790 * driver must poll CSR_GP_CNTRL_REG register for change. This register
2791 * *is* readable even when device has been SW_RESET into low power mode
2792 * (e.g. during RF KILL).
2793 */
Helmut Schaa26635162009-01-15 09:38:44 +01002794static void iwl3945_rfkill_poll(struct work_struct *data)
2795{
2796 struct iwl_priv *priv =
2797 container_of(data, struct iwl_priv, rfkill_poll.work);
Ben Cahill743cdf12009-10-09 13:20:26 -07002798 bool old_rfkill = test_bit(STATUS_RF_KILL_HW, &priv->status);
2799 bool new_rfkill = !(iwl_read32(priv, CSR_GP_CNTRL)
2800 & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
Helmut Schaa26635162009-01-15 09:38:44 +01002801
Ben Cahill743cdf12009-10-09 13:20:26 -07002802 if (new_rfkill != old_rfkill) {
2803 if (new_rfkill)
2804 set_bit(STATUS_RF_KILL_HW, &priv->status);
2805 else
2806 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Helmut Schaa26635162009-01-15 09:38:44 +01002807
Ben Cahill743cdf12009-10-09 13:20:26 -07002808 wiphy_rfkill_set_hw_state(priv->hw->wiphy, new_rfkill);
Helmut Schaa26635162009-01-15 09:38:44 +01002809
Ben Cahill743cdf12009-10-09 13:20:26 -07002810 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
2811 new_rfkill ? "disable radio" : "enable radio");
2812 }
2813
2814 /* Keep this running, even if radio now enabled. This will be
2815 * cancelled in mac_start() if system decides to start again */
Helmut Schaa26635162009-01-15 09:38:44 +01002816 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2817 round_jiffies_relative(2 * HZ));
2818
2819}
2820
Zhu Yib481de92007-09-25 17:54:57 -07002821#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002822static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002823{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002824 struct iwl_priv *priv =
2825 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08002826 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002827 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002828 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002829 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002830 };
2831 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002832 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002833 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002834 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002835 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002836 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002837
2838 conf = ieee80211_get_hw_conf(priv->hw);
2839
2840 mutex_lock(&priv->mutex);
2841
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002842 cancel_delayed_work(&priv->scan_check);
2843
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002844 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002845 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002846 goto done;
2847 }
2848
Tomas Winklera96a27f2008-10-23 23:48:56 -07002849 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002850 * was given the chance to run... */
2851 if (!test_bit(STATUS_SCANNING, &priv->status))
2852 goto done;
2853
2854 /* This should never be called or scheduled if there is currently
2855 * a scan active in the hardware. */
2856 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002857 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2858 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002859 rc = -EIO;
2860 goto done;
2861 }
2862
2863 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002864 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002865 goto done;
2866 }
2867
2868 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002869 IWL_DEBUG_HC(priv,
2870 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002871 goto done;
2872 }
2873
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002874 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002875 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002876 goto done;
2877 }
2878
2879 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002880 IWL_DEBUG_HC(priv,
2881 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002882 goto done;
2883 }
2884
2885 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002886 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002887 goto done;
2888 }
2889
Winkler, Tomas805cee52009-01-19 15:30:28 -08002890 if (!priv->scan) {
2891 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07002892 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08002893 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07002894 rc = -ENOMEM;
2895 goto done;
2896 }
2897 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08002898 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002899 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002900
2901 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2902 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2903
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002904 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002905 u16 interval = 0;
2906 u32 extra;
2907 u32 suspend_time = 100;
2908 u32 scan_suspend_time = 100;
2909 unsigned long flags;
2910
Tomas Winklere1623442009-01-27 14:27:56 -08002911 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002912
2913 spin_lock_irqsave(&priv->lock, flags);
2914 interval = priv->beacon_int;
2915 spin_unlock_irqrestore(&priv->lock, flags);
2916
2917 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002918 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002919 if (!interval)
2920 interval = suspend_time;
2921 /*
2922 * suspend time format:
2923 * 0-19: beacon interval in usec (time before exec.)
2924 * 20-23: 0
2925 * 24-31: number of beacons (suspend between channels)
2926 */
2927
2928 extra = (suspend_time / interval) << 24;
2929 scan_suspend_time = 0xFF0FFFFF &
2930 (extra | ((suspend_time % interval) * 1024));
2931
2932 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002933 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002934 scan_suspend_time, interval);
2935 }
2936
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002937 if (priv->scan_request->n_ssids) {
2938 int i, p = 0;
2939 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2940 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2941 /* always does wildcard anyway */
2942 if (!priv->scan_request->ssids[i].ssid_len)
2943 continue;
2944 scan->direct_scan[p].id = WLAN_EID_SSID;
2945 scan->direct_scan[p].len =
2946 priv->scan_request->ssids[i].ssid_len;
2947 memcpy(scan->direct_scan[p].ssid,
2948 priv->scan_request->ssids[i].ssid,
2949 priv->scan_request->ssids[i].ssid_len);
2950 n_probes++;
2951 p++;
2952 }
2953 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002954 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002955 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002956
2957 /* We don't build a direct scan probe request; the uCode will do
2958 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002959 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002960 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002961 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2962
2963 /* flags + rate selection */
2964
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002965 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002966 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2967 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2968 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002969 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002970 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002971 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002972 /*
2973 * If active scaning is requested but a certain channel
2974 * is marked passive, we can do active scanning if we
2975 * detect transmissions.
2976 */
2977 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002978 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002979 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002980 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07002981 goto done;
2982 }
2983
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002984 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002985 iwl_fill_probe_req(priv,
2986 (struct ieee80211_mgmt *)scan->data,
2987 priv->scan_request->ie,
2988 priv->scan_request->ie_len,
2989 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002990
Zhu Yib481de92007-09-25 17:54:57 -07002991 /* select Rx antennas */
2992 scan->flags |= iwl3945_get_antenna_flags(priv);
2993
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07002994 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002995 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2996
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002997 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002998 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002999 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07003000
Reinette Chatre14b54332008-11-04 12:21:35 -08003001 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003002 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08003003 goto done;
3004 }
3005
Zhu Yib481de92007-09-25 17:54:57 -07003006 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003007 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003008 cmd.data = scan;
3009 scan->len = cpu_to_le16(cmd.len);
3010
3011 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003012 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003013 if (rc)
3014 goto done;
3015
3016 queue_delayed_work(priv->workqueue, &priv->scan_check,
3017 IWL_SCAN_CHECK_WATCHDOG);
3018
3019 mutex_unlock(&priv->mutex);
3020 return;
3021
3022 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003023 /* can not perform scan make sure we clear scanning
3024 * bits from status so next scan request can be performed.
3025 * if we dont clear scanning status bit here all next scan
3026 * will fail
3027 */
3028 clear_bit(STATUS_SCAN_HW, &priv->status);
3029 clear_bit(STATUS_SCANNING, &priv->status);
3030
Ian Schram01ebd062007-10-25 17:15:22 +08003031 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003032 queue_work(priv->workqueue, &priv->scan_completed);
3033 mutex_unlock(&priv->mutex);
3034}
3035
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003036static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003037{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003038 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07003039
3040 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3041 return;
3042
3043 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003044 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003045 mutex_unlock(&priv->mutex);
3046}
3047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003048static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003049{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003050 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003051
3052 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3053 return;
3054
Johannes Berg19cc1082009-05-08 13:44:36 -07003055 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3056 mutex_lock(&priv->mutex);
3057 priv->vif = NULL;
3058 priv->is_open = 0;
3059 mutex_unlock(&priv->mutex);
3060 iwl3945_down(priv);
3061 ieee80211_restart_hw(priv->hw);
3062 } else {
3063 iwl3945_down(priv);
3064 queue_work(priv->workqueue, &priv->up);
3065 }
Zhu Yib481de92007-09-25 17:54:57 -07003066}
3067
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003068static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003069{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003070 struct iwl_priv *priv =
3071 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003072
3073 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3074 return;
3075
3076 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003077 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003078 mutex_unlock(&priv->mutex);
3079}
3080
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003081#define IWL_DELAY_NEXT_SCAN (HZ*2)
3082
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003083void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003084{
Zhu Yib481de92007-09-25 17:54:57 -07003085 int rc = 0;
3086 struct ieee80211_conf *conf = NULL;
3087
Johannes Berg05c914f2008-09-11 00:01:58 +02003088 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003089 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003090 return;
3091 }
3092
3093
Tomas Winklere1623442009-01-27 14:27:56 -08003094 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003095 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003096
3097 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3098 return;
3099
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003100 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003101 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003102
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003103 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003104
Zhu Yib481de92007-09-25 17:54:57 -07003105 conf = ieee80211_get_hw_conf(priv->hw);
3106
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003107 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003108 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003109
Tomas Winkler28afaf92008-12-19 10:37:06 +08003110 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003111 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003112 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003113 sizeof(priv->rxon_timing), &priv->rxon_timing);
3114 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003115 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003116 "Attempting to continue.\n");
3117
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003118 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003119
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003120 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003121
Tomas Winklere1623442009-01-27 14:27:56 -08003122 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003123 priv->assoc_id, priv->beacon_int);
3124
3125 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003126 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003127 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003128 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003129
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003130 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003131 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003132 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003133 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003134 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003135
Johannes Berg05c914f2008-09-11 00:01:58 +02003136 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003137 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003138
3139 }
3140
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003141 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003142
3143 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003144 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003145 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003146 break;
3147
Johannes Berg05c914f2008-09-11 00:01:58 +02003148 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003149
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003150 priv->assoc_id = 1;
Tomas Winklerc587de02009-06-03 11:44:07 -07003151 iwl_add_station(priv, priv->bssid, 0, CMD_SYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003152 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003153 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003154 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3155 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003156 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3157 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003158
3159 break;
3160
3161 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003162 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003163 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003164 break;
3165 }
3166
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003167 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003168
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003169 /* we have just associated, don't start scan too early */
3170 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003171}
3172
Zhu Yib481de92007-09-25 17:54:57 -07003173/*****************************************************************************
3174 *
3175 * mac80211 entry point functions
3176 *
3177 *****************************************************************************/
3178
Zhu Yi5a66926a2008-01-14 17:46:18 -08003179#define UCODE_READY_TIMEOUT (2 * HZ)
3180
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003181static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003182{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003183 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003184 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003185
Tomas Winklere1623442009-01-27 14:27:56 -08003186 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003187
3188 /* we should be verifying the device is ready to be opened */
3189 mutex_lock(&priv->mutex);
3190
Zhu Yi5a66926a2008-01-14 17:46:18 -08003191 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3192 * ucode filename and max sizes are card-specific. */
3193
3194 if (!priv->ucode_code.len) {
3195 ret = iwl3945_read_ucode(priv);
3196 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003197 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003198 mutex_unlock(&priv->mutex);
3199 goto out_release_irq;
3200 }
3201 }
3202
Zhu Yie655b9f2008-01-24 02:19:38 -08003203 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003204
Zhu Yib481de92007-09-25 17:54:57 -07003205 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003206
Zhu Yie655b9f2008-01-24 02:19:38 -08003207 if (ret)
3208 goto out_release_irq;
3209
Tomas Winklere1623442009-01-27 14:27:56 -08003210 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003211
Zhu Yi5a66926a2008-01-14 17:46:18 -08003212 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3213 * mac80211 will not be run successfully. */
3214 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3215 test_bit(STATUS_READY, &priv->status),
3216 UCODE_READY_TIMEOUT);
3217 if (!ret) {
3218 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003219 IWL_ERR(priv,
3220 "Wait for START_ALIVE timeout after %dms.\n",
3221 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a66926a2008-01-14 17:46:18 -08003222 ret = -ETIMEDOUT;
3223 goto out_release_irq;
3224 }
3225 }
3226
Helmut Schaa26635162009-01-15 09:38:44 +01003227 /* ucode is running and will send rfkill notifications,
3228 * no need to poll the killswitch state anymore */
3229 cancel_delayed_work(&priv->rfkill_poll);
3230
Johannes Berge932a602009-10-02 13:44:03 -07003231 iwl_led_start(priv);
3232
Zhu Yie655b9f2008-01-24 02:19:38 -08003233 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003234 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003235 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003236
3237out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003238 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003239 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08003240 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003241}
3242
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003243static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003244{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003245 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003246
Tomas Winklere1623442009-01-27 14:27:56 -08003247 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003248
Zhu Yie655b9f2008-01-24 02:19:38 -08003249 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003250 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003251 return;
3252 }
3253
Zhu Yib481de92007-09-25 17:54:57 -07003254 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003255
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003256 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003257 /* stop mac, cancel any scan request and clear
3258 * RXON_FILTER_ASSOC_MSK BIT
3259 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003260 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003261 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003262 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003263 }
3264
Zhu Yi5a66926a2008-01-14 17:46:18 -08003265 iwl3945_down(priv);
3266
3267 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003268
3269 /* start polling the killswitch state again */
3270 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3271 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003272
Tomas Winklere1623442009-01-27 14:27:56 -08003273 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003274}
3275
Johannes Berge039fa42008-05-15 12:55:29 +02003276static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003277{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003278 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003279
Tomas Winklere1623442009-01-27 14:27:56 -08003280 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003281
Tomas Winklere1623442009-01-27 14:27:56 -08003282 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003283 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003284
Johannes Berge039fa42008-05-15 12:55:29 +02003285 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003286 dev_kfree_skb_any(skb);
3287
Tomas Winklere1623442009-01-27 14:27:56 -08003288 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003289 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003290}
3291
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003292void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003293{
3294 int rc = 0;
3295
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003296 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003297 return;
3298
3299 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003300 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003301
3302 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003303 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003304 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003305
3306 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003307 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003308 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003309 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3310 sizeof(priv->rxon_timing),
3311 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003312 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003313 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003314 "Attempting to continue.\n");
3315
3316 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003317 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003318 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003319 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003320 RXON_FLG_SHORT_PREAMBLE_MSK;
3321 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003322 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003323 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3324
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003325 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003326 if (priv->assoc_capability &
3327 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003328 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003329 RXON_FLG_SHORT_SLOT_MSK;
3330 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003331 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003332 ~RXON_FLG_SHORT_SLOT_MSK;
3333
Johannes Berg05c914f2008-09-11 00:01:58 +02003334 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003335 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003336 ~RXON_FLG_SHORT_SLOT_MSK;
3337 }
3338 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003339 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003340 iwlcore_commit_rxon(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07003341 iwl_add_station(priv, iwl_bcast_addr, 0, CMD_SYNC, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003342 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003343 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003344
3345 /* FIXME - we need to add code here to detect a totally new
3346 * configuration, reset the AP, unassoc, rxon timing, assoc,
3347 * clear sta table, add BCAST sta... */
3348}
3349
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003350static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003351 struct ieee80211_vif *vif,
3352 struct ieee80211_sta *sta,
3353 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003354{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003355 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003356 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003357 int ret = 0;
3358 u8 sta_id = IWL_INVALID_STATION;
3359 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003360
Tomas Winklere1623442009-01-27 14:27:56 -08003361 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003362
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003363 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003364 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003365 return -EOPNOTSUPP;
3366 }
3367
Winkler, Tomas42986792009-01-19 15:30:22 -08003368 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003369 static_key = !iwl_is_associated(priv);
3370
3371 if (!static_key) {
Tomas Winklerc587de02009-06-03 11:44:07 -07003372 sta_id = iwl_find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003373 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003374 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003375 addr);
3376 return -EINVAL;
3377 }
Zhu Yib481de92007-09-25 17:54:57 -07003378 }
3379
3380 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003381 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003382 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003383
Zhu Yib481de92007-09-25 17:54:57 -07003384 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003385 case SET_KEY:
3386 if (static_key)
3387 ret = iwl3945_set_static_key(priv, key);
3388 else
3389 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3390 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003391 break;
3392 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003393 if (static_key)
3394 ret = iwl3945_remove_static_key(priv);
3395 else
3396 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3397 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003398 break;
3399 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003400 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003401 }
3402
Tomas Winklere1623442009-01-27 14:27:56 -08003403 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003404
Winkler, Tomas42986792009-01-19 15:30:22 -08003405 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003406}
3407
Zhu Yib481de92007-09-25 17:54:57 -07003408/*****************************************************************************
3409 *
3410 * sysfs attributes
3411 *
3412 *****************************************************************************/
3413
Samuel Ortizd08853a2009-01-23 13:45:17 -08003414#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003415
3416/*
3417 * The following adds a new attribute to the sysfs representation
3418 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3419 * used for controlling the debug level.
3420 *
3421 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003422 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003423 * The debug_level being managed using sysfs below is a per device debug
3424 * level that is used instead of the global debug level if it (the per
3425 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003426 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003427static ssize_t show_debug_level(struct device *d,
3428 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003429{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003430 struct iwl_priv *priv = dev_get_drvdata(d);
3431 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003432}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003433static ssize_t store_debug_level(struct device *d,
3434 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003435 const char *buf, size_t count)
3436{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003437 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003438 unsigned long val;
3439 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003440
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003441 ret = strict_strtoul(buf, 0, &val);
3442 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003443 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003444 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003445 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003446 if (iwl_alloc_traffic_mem(priv))
3447 IWL_ERR(priv,
3448 "Not enough memory to generate traffic log\n");
3449 }
Zhu Yib481de92007-09-25 17:54:57 -07003450 return strnlen(buf, count);
3451}
3452
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003453static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3454 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003455
Samuel Ortizd08853a2009-01-23 13:45:17 -08003456#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003457
Zhu Yib481de92007-09-25 17:54:57 -07003458static ssize_t show_temperature(struct device *d,
3459 struct device_attribute *attr, char *buf)
3460{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003461 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003462
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003463 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003464 return -EAGAIN;
3465
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003466 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003467}
3468
3469static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3470
Zhu Yib481de92007-09-25 17:54:57 -07003471static ssize_t show_tx_power(struct device *d,
3472 struct device_attribute *attr, char *buf)
3473{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003474 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003475 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003476}
3477
3478static ssize_t store_tx_power(struct device *d,
3479 struct device_attribute *attr,
3480 const char *buf, size_t count)
3481{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003482 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003483 char *p = (char *)buf;
3484 u32 val;
3485
3486 val = simple_strtoul(p, &p, 10);
3487 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003488 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003489 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003490 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003491
3492 return count;
3493}
3494
3495static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3496
3497static ssize_t show_flags(struct device *d,
3498 struct device_attribute *attr, char *buf)
3499{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003500 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003501
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003502 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003503}
3504
3505static ssize_t store_flags(struct device *d,
3506 struct device_attribute *attr,
3507 const char *buf, size_t count)
3508{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003509 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003510 u32 flags = simple_strtoul(buf, NULL, 0);
3511
3512 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003513 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003514 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003515 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003516 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003517 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003518 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003519 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003520 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003521 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003522 }
3523 }
3524 mutex_unlock(&priv->mutex);
3525
3526 return count;
3527}
3528
3529static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3530
3531static ssize_t show_filter_flags(struct device *d,
3532 struct device_attribute *attr, char *buf)
3533{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003534 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003535
3536 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003537 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003538}
3539
3540static ssize_t store_filter_flags(struct device *d,
3541 struct device_attribute *attr,
3542 const char *buf, size_t count)
3543{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003544 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003545 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3546
3547 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003548 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003549 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003550 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003551 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003552 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003553 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003554 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003555 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003556 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003557 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003558 }
3559 }
3560 mutex_unlock(&priv->mutex);
3561
3562 return count;
3563}
3564
3565static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3566 store_filter_flags);
3567
Zhu Yib481de92007-09-25 17:54:57 -07003568static ssize_t show_measurement(struct device *d,
3569 struct device_attribute *attr, char *buf)
3570{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003571 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003572 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003573 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003574 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003575 unsigned long flags;
3576
3577 spin_lock_irqsave(&priv->lock, flags);
3578 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3579 spin_unlock_irqrestore(&priv->lock, flags);
3580 return 0;
3581 }
3582 memcpy(&measure_report, &priv->measure_report, size);
3583 priv->measurement_status = 0;
3584 spin_unlock_irqrestore(&priv->lock, flags);
3585
3586 while (size && (PAGE_SIZE - len)) {
3587 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3588 PAGE_SIZE - len, 1);
3589 len = strlen(buf);
3590 if (PAGE_SIZE - len)
3591 buf[len++] = '\n';
3592
3593 ofs += 16;
3594 size -= min(size, 16U);
3595 }
3596
3597 return len;
3598}
3599
3600static ssize_t store_measurement(struct device *d,
3601 struct device_attribute *attr,
3602 const char *buf, size_t count)
3603{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003604 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003605 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003606 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003607 .start_time = cpu_to_le64(priv->last_tsf),
3608 .duration = cpu_to_le16(1),
3609 };
3610 u8 type = IWL_MEASURE_BASIC;
3611 u8 buffer[32];
3612 u8 channel;
3613
3614 if (count) {
3615 char *p = buffer;
3616 strncpy(buffer, buf, min(sizeof(buffer), count));
3617 channel = simple_strtoul(p, NULL, 0);
3618 if (channel)
3619 params.channel = channel;
3620
3621 p = buffer;
3622 while (*p && *p != ' ')
3623 p++;
3624 if (*p)
3625 type = simple_strtoul(p + 1, NULL, 0);
3626 }
3627
Tomas Winklere1623442009-01-27 14:27:56 -08003628 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003629 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003630 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003631
3632 return count;
3633}
3634
3635static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3636 show_measurement, store_measurement);
Zhu Yib481de92007-09-25 17:54:57 -07003637
Zhu Yib481de92007-09-25 17:54:57 -07003638static ssize_t store_retry_rate(struct device *d,
3639 struct device_attribute *attr,
3640 const char *buf, size_t count)
3641{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003642 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003643
3644 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3645 if (priv->retry_rate <= 0)
3646 priv->retry_rate = 1;
3647
3648 return count;
3649}
3650
3651static ssize_t show_retry_rate(struct device *d,
3652 struct device_attribute *attr, char *buf)
3653{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003654 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003655 return sprintf(buf, "%d", priv->retry_rate);
3656}
3657
3658static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3659 store_retry_rate);
3660
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003661
Zhu Yib481de92007-09-25 17:54:57 -07003662static ssize_t show_channels(struct device *d,
3663 struct device_attribute *attr, char *buf)
3664{
Johannes Berg8318d782008-01-24 19:38:38 +01003665 /* all this shit doesn't belong into sysfs anyway */
3666 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003667}
3668
3669static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3670
3671static ssize_t show_statistics(struct device *d,
3672 struct device_attribute *attr, char *buf)
3673{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003674 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003675 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003676 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003677 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003678 int rc = 0;
3679
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003680 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003681 return -EAGAIN;
3682
3683 mutex_lock(&priv->mutex);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08003684 rc = iwl_send_statistics_request(priv, CMD_SYNC, false);
Zhu Yib481de92007-09-25 17:54:57 -07003685 mutex_unlock(&priv->mutex);
3686
3687 if (rc) {
3688 len = sprintf(buf,
3689 "Error sending statistics request: 0x%08X\n", rc);
3690 return len;
3691 }
3692
3693 while (size && (PAGE_SIZE - len)) {
3694 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3695 PAGE_SIZE - len, 1);
3696 len = strlen(buf);
3697 if (PAGE_SIZE - len)
3698 buf[len++] = '\n';
3699
3700 ofs += 16;
3701 size -= min(size, 16U);
3702 }
3703
3704 return len;
3705}
3706
3707static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3708
3709static ssize_t show_antenna(struct device *d,
3710 struct device_attribute *attr, char *buf)
3711{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003712 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003713
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003714 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003715 return -EAGAIN;
3716
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003717 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003718}
3719
3720static ssize_t store_antenna(struct device *d,
3721 struct device_attribute *attr,
3722 const char *buf, size_t count)
3723{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003724 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003725 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003726
3727 if (count == 0)
3728 return 0;
3729
3730 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003731 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003732 return count;
3733 }
3734
3735 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003736 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003737 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003738 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003739 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003740
3741
3742 return count;
3743}
3744
3745static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3746
3747static ssize_t show_status(struct device *d,
3748 struct device_attribute *attr, char *buf)
3749{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003750 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003751 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003752 return -EAGAIN;
3753 return sprintf(buf, "0x%08x\n", (int)priv->status);
3754}
3755
3756static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3757
3758static ssize_t dump_error_log(struct device *d,
3759 struct device_attribute *attr,
3760 const char *buf, size_t count)
3761{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003762 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003763 char *p = (char *)buf;
3764
3765 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003766 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003767
3768 return strnlen(buf, count);
3769}
3770
3771static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3772
Zhu Yib481de92007-09-25 17:54:57 -07003773/*****************************************************************************
3774 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003775 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003776 *
3777 *****************************************************************************/
3778
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003779static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003780{
Reinette Chatred21050c2009-02-13 11:51:18 -08003781 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003782
3783 init_waitqueue_head(&priv->wait_command_queue);
3784
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003785 INIT_WORK(&priv->up, iwl3945_bg_up);
3786 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3787 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003788 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003789 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3790 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003791 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003792 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3793 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3794 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3795 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003796
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003797 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003798
3799 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003800 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003801}
3802
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003803static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003804{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003805 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003806
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003807 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003808 cancel_delayed_work(&priv->scan_check);
3809 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003810 cancel_work_sync(&priv->beacon_update);
3811}
3812
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003813static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003814 &dev_attr_antenna.attr,
3815 &dev_attr_channels.attr,
3816 &dev_attr_dump_errors.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003817 &dev_attr_flags.attr,
3818 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003819 &dev_attr_measurement.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003820 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003821 &dev_attr_statistics.attr,
3822 &dev_attr_status.attr,
3823 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003824 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003825#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003826 &dev_attr_debug_level.attr,
3827#endif
Zhu Yib481de92007-09-25 17:54:57 -07003828 NULL
3829};
3830
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003831static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003832 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003833 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003834};
3835
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003836static struct ieee80211_ops iwl3945_hw_ops = {
3837 .tx = iwl3945_mac_tx,
3838 .start = iwl3945_mac_start,
3839 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003840 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003841 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003842 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003843 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003844 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07003845 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003846 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003847 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003848 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08003849 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003850};
3851
Winkler, Tomase52119c2008-12-22 11:31:19 +08003852static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003853{
3854 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003855 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003856
3857 priv->retry_rate = 1;
3858 priv->ibss_beacon = NULL;
3859
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003860 spin_lock_init(&priv->sta_lock);
3861 spin_lock_init(&priv->hcmd_lock);
3862
3863 INIT_LIST_HEAD(&priv->free_frames);
3864
3865 mutex_init(&priv->mutex);
3866
3867 /* Clear the driver's (not device's) station table */
Tomas Winklerc587de02009-06-03 11:44:07 -07003868 iwl_clear_stations_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003869
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003870 priv->ieee_channels = NULL;
3871 priv->ieee_rates = NULL;
3872 priv->band = IEEE80211_BAND_2GHZ;
3873
3874 priv->iw_mode = NL80211_IFTYPE_STATION;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08003875 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003876
3877 iwl_reset_qos(priv);
3878
3879 priv->qos_data.qos_active = 0;
3880 priv->qos_data.qos_cap.val = 0;
3881
3882 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003883 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003884
Samuel Ortize6148912009-01-23 13:45:15 -08003885 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3886 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3887 eeprom->version);
3888 ret = -EINVAL;
3889 goto err;
3890 }
3891 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003892 if (ret) {
3893 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3894 goto err;
3895 }
3896
Samuel Ortize6148912009-01-23 13:45:15 -08003897 /* Set up txpower settings in driver for all channels */
3898 if (iwl3945_txpower_set_from_eeprom(priv)) {
3899 ret = -EIO;
3900 goto err_free_channel_map;
3901 }
3902
Samuel Ortiz534166d2009-01-23 13:45:16 -08003903 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003904 if (ret) {
3905 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3906 goto err_free_channel_map;
3907 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003908 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3909
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003910 return 0;
3911
3912err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003913 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003914err:
3915 return ret;
3916}
3917
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003918static int iwl3945_setup_mac(struct iwl_priv *priv)
3919{
3920 int ret;
3921 struct ieee80211_hw *hw = priv->hw;
3922
3923 hw->rate_control_algorithm = "iwl-3945-rs";
3924 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3925
3926 /* Tell mac80211 our characteristics */
3927 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07003928 IEEE80211_HW_NOISE_DBM |
Reinette Chatrebc45a672009-12-14 14:12:10 -08003929 IEEE80211_HW_SPECTRUM_MGMT;
3930
3931 if (!priv->cfg->broken_powersave)
3932 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3933 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003934
3935 hw->wiphy->interface_modes =
3936 BIT(NL80211_IFTYPE_STATION) |
3937 BIT(NL80211_IFTYPE_ADHOC);
3938
Johannes Berg5be83de2009-11-19 00:56:28 +01003939 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY |
3940 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003941
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003942 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3943 /* we create the 802.11 header and a zero-length SSID element */
3944 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003945
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003946 /* Default value; 4 EDCA QOS priorities */
3947 hw->queues = 4;
3948
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003949 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3950 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3951 &priv->bands[IEEE80211_BAND_2GHZ];
3952
3953 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3954 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3955 &priv->bands[IEEE80211_BAND_5GHZ];
3956
3957 ret = ieee80211_register_hw(priv->hw);
3958 if (ret) {
3959 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3960 return ret;
3961 }
3962 priv->mac80211_registered = 1;
3963
3964 return 0;
3965}
3966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003967static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003968{
3969 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003970 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003971 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003972 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003973 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003974 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003975
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003976 /***********************
3977 * 1. Allocating HW data
3978 * ********************/
3979
Zhu Yib481de92007-09-25 17:54:57 -07003980 /* mac80211 allocates memory for this device instance, including
3981 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003982 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003983 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003984 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003985 err = -ENOMEM;
3986 goto out;
3987 }
Zhu Yib481de92007-09-25 17:54:57 -07003988 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003989 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003990
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003991 /*
3992 * Disabling hardware scan means that mac80211 will perform scans
3993 * "the hard way", rather than using device's scan.
3994 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003995 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003996 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003997 iwl3945_hw_ops.hw_scan = NULL;
3998 }
3999
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004000
Tomas Winklere1623442009-01-27 14:27:56 -08004001 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004002 priv->cfg = cfg;
4003 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004004 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004005
Samuel Ortizd08853a2009-01-23 13:45:17 -08004006#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004007 atomic_set(&priv->restrict_refcnt, 0);
4008#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004009 if (iwl_alloc_traffic_mem(priv))
4010 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004011
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004012 /***************************
4013 * 2. Initializing PCI bus
4014 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07004015 if (pci_enable_device(pdev)) {
4016 err = -ENODEV;
4017 goto out_ieee80211_free_hw;
4018 }
4019
4020 pci_set_master(pdev);
4021
Yang Hongyang284901a2009-04-06 19:01:15 -07004022 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004023 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07004024 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004025 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004026 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004027 goto out_pci_disable_device;
4028 }
4029
4030 pci_set_drvdata(pdev, priv);
4031 err = pci_request_regions(pdev, DRV_NAME);
4032 if (err)
4033 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004034
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004035 /***********************
4036 * 3. Read REV Register
4037 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07004038 priv->hw_base = pci_iomap(pdev, 0, 0);
4039 if (!priv->hw_base) {
4040 err = -ENODEV;
4041 goto out_pci_release_regions;
4042 }
4043
Tomas Winklere1623442009-01-27 14:27:56 -08004044 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07004045 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004046 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07004047
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004048 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4049 * PCI Tx retries from interfering with C3 CPU state */
4050 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07004051
Reinette Chatre731a29b2009-12-14 14:12:11 -08004052 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004053 * we should init now
4054 */
4055 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004056 spin_lock_init(&priv->lock);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004057
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004058 /***********************
4059 * 4. Read EEPROM
4060 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004061
Zhu Yi5a66926a2008-01-14 17:46:18 -08004062 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004063 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004064 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004065 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004066 goto out_iounmap;
Zhu Yi5a66926a2008-01-14 17:46:18 -08004067 }
4068 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004069 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4070 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004071 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08004072 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4073
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004074 /***********************
4075 * 5. Setup HW Constants
4076 * ********************/
4077 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004078 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004079 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004080 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004081 }
4082
4083 /***********************
4084 * 6. Setup priv
4085 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004086
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004087 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004088 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004089 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004090 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004091 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004092
Tomas Winkler978785a2008-12-19 10:37:31 +08004093 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4094 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004095
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004096 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004097 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004098 * ********************/
4099
4100 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004101 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004102 spin_unlock_irqrestore(&priv->lock, flags);
4103
Helmut Schaa26635162009-01-15 09:38:44 +01004104 pci_enable_msi(priv->pci_dev);
4105
Mohamed Abbasef850d72009-05-22 11:01:50 -07004106 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4107 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004108 if (err) {
4109 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4110 goto out_disable_msi;
4111 }
4112
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004113 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4114 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004115 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004116 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004117 }
4118
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004119 iwl_set_rxon_channel(priv,
4120 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004121 iwl3945_setup_deferred_work(priv);
4122 iwl3945_setup_rx_handlers(priv);
Ben Cahill008a9e32009-10-09 13:20:27 -07004123 iwl_power_initialize(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004124
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004125 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004126 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004127 * *******************************/
4128
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004129 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004130
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004131 err = iwl3945_setup_mac(priv);
4132 if (err)
4133 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004134
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004135 err = iwl_dbgfs_register(priv, DRV_NAME);
4136 if (err)
4137 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4138
Helmut Schaa26635162009-01-15 09:38:44 +01004139 /* Start monitoring the killswitch */
4140 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4141 2 * HZ);
4142
Zhu Yib481de92007-09-25 17:54:57 -07004143 return 0;
4144
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004145 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004146 destroy_workqueue(priv->workqueue);
4147 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004148 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4149 out_release_irq:
4150 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004151 out_disable_msi:
4152 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004153 iwlcore_free_geos(priv);
4154 iwl_free_channel_map(priv);
4155 out_unset_hw_params:
4156 iwl3945_unset_hw_params(priv);
4157 out_eeprom_free:
4158 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004159 out_iounmap:
4160 pci_iounmap(pdev, priv->hw_base);
4161 out_pci_release_regions:
4162 pci_release_regions(pdev);
4163 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004164 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004165 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004166 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004167 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004168 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004169 out:
4170 return err;
4171}
4172
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004173static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004174{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004175 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004176 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004177
4178 if (!priv)
4179 return;
4180
Tomas Winklere1623442009-01-27 14:27:56 -08004181 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004182
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004183 iwl_dbgfs_unregister(priv);
4184
Zhu Yib481de92007-09-25 17:54:57 -07004185 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004186
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004187 if (priv->mac80211_registered) {
4188 ieee80211_unregister_hw(priv->hw);
4189 priv->mac80211_registered = 0;
4190 } else {
4191 iwl3945_down(priv);
4192 }
Zhu Yib481de92007-09-25 17:54:57 -07004193
Ben Cahillc166b252009-10-23 13:42:35 -07004194 /*
4195 * Make sure device is reset to low power before unloading driver.
4196 * This may be redundant with iwl_down(), but there are paths to
4197 * run iwl_down() without calling apm_ops.stop(), and there are
4198 * paths to avoid running iwl_down() at all before leaving driver.
4199 * This (inexpensive) call *makes sure* device is reset.
4200 */
4201 priv->cfg->ops->lib->apm_ops.stop(priv);
4202
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004203 /* make sure we flush any pending irq or
4204 * tasklet for the driver
4205 */
4206 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004207 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004208 spin_unlock_irqrestore(&priv->lock, flags);
4209
4210 iwl_synchronize_irq(priv);
4211
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004212 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004213
Reinette Chatre71d449b2009-04-20 14:37:01 -07004214 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004215
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004216 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004217
4218 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004219 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004220 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004221
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004222 iwl3945_unset_hw_params(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07004223 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004224
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004225 /*netif_stop_queue(dev); */
4226 flush_workqueue(priv->workqueue);
4227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004228 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004229 * priv->workqueue... so we can't take down the workqueue
4230 * until now... */
4231 destroy_workqueue(priv->workqueue);
4232 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004233 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004234
Helmut Schaa26635162009-01-15 09:38:44 +01004235 free_irq(pdev->irq, priv);
4236 pci_disable_msi(pdev);
4237
Zhu Yib481de92007-09-25 17:54:57 -07004238 pci_iounmap(pdev, priv->hw_base);
4239 pci_release_regions(pdev);
4240 pci_disable_device(pdev);
4241 pci_set_drvdata(pdev, NULL);
4242
Samuel Ortize6148912009-01-23 13:45:15 -08004243 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004244 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004245 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004246 if (priv->ibss_beacon)
4247 dev_kfree_skb(priv->ibss_beacon);
4248
4249 ieee80211_free_hw(priv->hw);
4250}
4251
Zhu Yib481de92007-09-25 17:54:57 -07004252
4253/*****************************************************************************
4254 *
4255 * driver and module entry point
4256 *
4257 *****************************************************************************/
4258
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004259static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004260 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004261 .id_table = iwl3945_hw_card_ids,
4262 .probe = iwl3945_pci_probe,
4263 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004264#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004265 .suspend = iwl_pci_suspend,
4266 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004267#endif
4268};
4269
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004270static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004271{
4272
4273 int ret;
4274 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4275 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004276
4277 ret = iwl3945_rate_control_register();
4278 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004279 printk(KERN_ERR DRV_NAME
4280 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004281 return ret;
4282 }
4283
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004284 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004285 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004286 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004287 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004288 }
Zhu Yib481de92007-09-25 17:54:57 -07004289
4290 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004291
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004292error_register:
4293 iwl3945_rate_control_unregister();
4294 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004295}
4296
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004297static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004298{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004299 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004300 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004301}
4302
Reinette Chatrea0987a82008-12-02 12:14:06 -08004303MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004304
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004305module_param_named(antenna, iwl3945_mod_params.antenna, int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004306MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004307module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, S_IRUGO);
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004308MODULE_PARM_DESC(swcrypto,
4309 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004310#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004311module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Zhu Yib481de92007-09-25 17:54:57 -07004312MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004313#endif
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004314module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan,
4315 int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004316MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004317module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, S_IRUGO);
Samuel Ortizaf48d042009-01-23 13:45:19 -08004318MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4319
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004320module_exit(iwl3945_exit);
4321module_init(iwl3945_init);