blob: 1eaa0052c11b8e7a2c06aa0eda94b52a261ae17a [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Zhu Yib481de92007-09-25 17:54:57 -070035#include <linux/dma-mapping.h>
36#include <linux/delay.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040037#include <linux/sched.h>
Zhu Yib481de92007-09-25 17:54:57 -070038#include <linux/skbuff.h>
39#include <linux/netdevice.h>
40#include <linux/wireless.h>
41#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070042#include <linux/etherdevice.h>
43#include <linux/if_arp.h>
44
45#include <net/ieee80211_radiotap.h>
46#include <net/mac80211.h>
47
48#include <asm/div64.h>
49
Samuel Ortiza3139c52008-12-19 10:37:09 +080050#define DRV_NAME "iwl3945"
51
Winkler, Tomasdbb66542008-12-22 11:31:14 +080052#include "iwl-fh.h"
53#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080054#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080055#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070056#include "iwl-3945.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Reinette Chatre4a6547c2010-02-18 22:03:02 -080058#include "iwl-helpers.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080059#include "iwl-dev.h"
Reinette Chatre81963d62010-01-22 14:22:57 -080060#include "iwl-spectrum.h"
Zhu Yib481de92007-09-25 17:54:57 -070061
Zhu Yib481de92007-09-25 17:54:57 -070062/*
63 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070064 */
65
66#define DRV_DESCRIPTION \
67"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
68
Samuel Ortizd08853a2009-01-23 13:45:17 -080069#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Reinette Chatre81963d62010-01-22 14:22:57 -080075/*
76 * add "s" to indicate spectrum measurement included.
77 * we add it here to be consistent with previous releases in which
78 * this was configurable.
79 */
80#define DRV_VERSION IWLWIFI_VERSION VD "s"
Reinette Chatre1f447802010-01-15 13:43:41 -080081#define DRV_COPYRIGHT "Copyright(c) 2003-2010 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080082#define DRV_AUTHOR "<ilw@linux.intel.com>"
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080086MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070087MODULE_LICENSE("GPL");
88
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080089 /* module parameters */
90struct iwl_mod_params iwl3945_mod_params = {
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080091 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080092 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080093 /* the rest are 0 by default */
94};
95
Zhu Yib481de92007-09-25 17:54:57 -070096/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -080097 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
98 * @priv: eeprom and antenna fields are used to determine antenna flags
99 *
100 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
101 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
102 *
103 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
104 * IWL_ANTENNA_MAIN - Force MAIN antenna
105 * IWL_ANTENNA_AUX - Force AUX antenna
106 */
107__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
108{
109 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
110
111 switch (iwl3945_mod_params.antenna) {
112 case IWL_ANTENNA_DIVERSITY:
113 return 0;
114
115 case IWL_ANTENNA_MAIN:
116 if (eeprom->antenna_switch_type)
117 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
118 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
119
120 case IWL_ANTENNA_AUX:
121 if (eeprom->antenna_switch_type)
122 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
123 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
124 }
125
126 /* bad antenna selector value */
127 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
128 iwl3945_mod_params.antenna);
129
130 return 0; /* "diversity" is default if error */
131}
132
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800133static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700134 struct ieee80211_key_conf *keyconf,
135 u8 sta_id)
136{
137 unsigned long flags;
138 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800139 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700140
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800141 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
142 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
143
144 if (sta_id == priv->hw_params.bcast_sta_id)
145 key_flags |= STA_KEY_MULTICAST_MSK;
146
147 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
148 keyconf->hw_key_idx = keyconf->keyidx;
149 key_flags &= ~STA_KEY_FLG_INVALID;
150
Zhu Yib481de92007-09-25 17:54:57 -0700151 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700152 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
153 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
154 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700155 keyconf->keylen);
156
Tomas Winklerc587de02009-06-03 11:44:07 -0700157 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700158 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800159
Tomas Winklerc587de02009-06-03 11:44:07 -0700160 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800161 == STA_KEY_FLG_NO_ENC)
Tomas Winklerc587de02009-06-03 11:44:07 -0700162 priv->stations[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800163 iwl_get_free_ucode_key_index(priv);
164 /* else, we are overriding an existing key => no need to allocated room
165 * in uCode. */
166
Tomas Winklerc587de02009-06-03 11:44:07 -0700167 WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800168 "no space for a new key");
169
Tomas Winklerc587de02009-06-03 11:44:07 -0700170 priv->stations[sta_id].sta.key.key_flags = key_flags;
171 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
172 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700173
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800174 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
175
Tomas Winklerc587de02009-06-03 11:44:07 -0700176 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800177
Zhu Yib481de92007-09-25 17:54:57 -0700178 spin_unlock_irqrestore(&priv->sta_lock, flags);
179
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800180 return ret;
181}
182
183static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
184 struct ieee80211_key_conf *keyconf,
185 u8 sta_id)
186{
187 return -EOPNOTSUPP;
188}
189
190static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
191 struct ieee80211_key_conf *keyconf,
192 u8 sta_id)
193{
194 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700195}
196
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800197static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700198{
199 unsigned long flags;
200
201 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700202 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
203 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800204 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700205 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
206 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
207 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700208 spin_unlock_irqrestore(&priv->sta_lock, flags);
209
Tomas Winklere1623442009-01-27 14:27:56 -0800210 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Tomas Winklerc587de02009-06-03 11:44:07 -0700211 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700212 return 0;
213}
214
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700215static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800216 struct ieee80211_key_conf *keyconf, u8 sta_id)
217{
218 int ret = 0;
219
220 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
221
222 switch (keyconf->alg) {
223 case ALG_CCMP:
224 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
225 break;
226 case ALG_TKIP:
227 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
228 break;
229 case ALG_WEP:
230 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
231 break;
232 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700233 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800234 ret = -EINVAL;
235 }
236
237 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
238 keyconf->alg, keyconf->keylen, keyconf->keyidx,
239 sta_id, ret);
240
241 return ret;
242}
243
244static int iwl3945_remove_static_key(struct iwl_priv *priv)
245{
246 int ret = -EOPNOTSUPP;
247
248 return ret;
249}
250
251static int iwl3945_set_static_key(struct iwl_priv *priv,
252 struct ieee80211_key_conf *key)
253{
254 if (key->alg == ALG_WEP)
255 return -EOPNOTSUPP;
256
257 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
258 return -EINVAL;
259}
260
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800261static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700262{
263 struct list_head *element;
264
Tomas Winklere1623442009-01-27 14:27:56 -0800265 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700266 priv->frames_count);
267
268 while (!list_empty(&priv->free_frames)) {
269 element = priv->free_frames.next;
270 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800271 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700272 priv->frames_count--;
273 }
274
275 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800276 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700277 priv->frames_count);
278 priv->frames_count = 0;
279 }
280}
281
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800282static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700283{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800284 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700285 struct list_head *element;
286 if (list_empty(&priv->free_frames)) {
287 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
288 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800289 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700290 return NULL;
291 }
292
293 priv->frames_count++;
294 return frame;
295 }
296
297 element = priv->free_frames.next;
298 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800299 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700300}
301
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800302static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700303{
304 memset(frame, 0, sizeof(*frame));
305 list_add(&frame->list, &priv->free_frames);
306}
307
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800308unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700309 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200310 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700311{
312
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800313 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200314 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
315 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700316 return 0;
317
318 if (priv->ibss_beacon->len > left)
319 return 0;
320
321 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
322
323 return priv->ibss_beacon->len;
324}
325
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800326static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700327{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800328 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700329 unsigned int frame_size;
330 int rc;
331 u8 rate;
332
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800333 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700334
335 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800336 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700337 "command.\n");
338 return -ENOMEM;
339 }
340
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800341 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700342
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800343 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700344
Samuel Ortiz518099a2009-01-19 15:30:27 -0800345 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700346 &frame->u.cmd[0]);
347
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800348 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700349
350 return rc;
351}
352
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800353static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700354{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800355 if (priv->shared_virt)
Stanislaw Gruszkaf36d04a2010-02-10 05:07:45 -0800356 dma_free_coherent(&priv->pci_dev->dev,
357 sizeof(struct iwl3945_shared),
358 priv->shared_virt,
359 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700360}
361
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800362static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200363 struct ieee80211_tx_info *info,
Johannes Bergc2acea82009-07-24 11:13:05 -0700364 struct iwl_device_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700365 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800366 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700367{
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700368 struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerc587de02009-06-03 11:44:07 -0700369 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700370
371 switch (keyinfo->alg) {
372 case ALG_CCMP:
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700373 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
374 memcpy(tx_cmd->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800375 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700376 break;
377
378 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700379 break;
380
381 case ALG_WEP:
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700382 tx_cmd->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200383 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700384
385 if (keyinfo->keylen == 13)
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700386 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700387
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700388 memcpy(&tx_cmd->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700389
Tomas Winklere1623442009-01-27 14:27:56 -0800390 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200391 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700392 break;
393
Zhu Yib481de92007-09-25 17:54:57 -0700394 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800395 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700396 break;
397 }
398}
399
400/*
401 * handle build REPLY_TX command notification.
402 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800403static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Johannes Bergc2acea82009-07-24 11:13:05 -0700404 struct iwl_device_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200405 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800406 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700407{
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700408 struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
409 __le32 tx_flags = tx_cmd->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700410 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700411
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700412 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200413 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700414 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700415 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700416 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700417 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700418 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
419 tx_flags |= TX_CMD_FLG_TSF_MSK;
420 } else {
421 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
422 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
423 }
424
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700425 tx_cmd->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700426 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700427 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
428
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700429 if (ieee80211_is_data_qos(fc)) {
430 u8 *qc = ieee80211_get_qos_ctl(hdr);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700431 tx_cmd->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700432 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800433 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700434 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800435 }
Zhu Yib481de92007-09-25 17:54:57 -0700436
Abhijeet Kolekar37dc70f2009-10-09 13:20:30 -0700437 priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700438
439 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
440 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
441
442 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700443 if (ieee80211_is_mgmt(fc)) {
444 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700445 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700446 else
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700447 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700448 } else {
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700449 tx_cmd->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700450 }
Zhu Yib481de92007-09-25 17:54:57 -0700451
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700452 tx_cmd->driver_txop = 0;
453 tx_cmd->tx_flags = tx_flags;
454 tx_cmd->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700455}
456
Zhu Yib481de92007-09-25 17:54:57 -0700457/*
458 * start REPLY_TX command process
459 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800460static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700461{
462 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200463 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700464 struct iwl3945_tx_cmd *tx_cmd;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800465 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800466 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700467 struct iwl_device_cmd *out_cmd;
468 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700469 dma_addr_t phys_addr;
470 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800471 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700472 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800473 u8 id;
474 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700475 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800476 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700477 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700478 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700479 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800480 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700481 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -0700482
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);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800666 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700667 spin_unlock_irqrestore(&priv->lock, flags);
668
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800669 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700670 && priv->mac80211_registered) {
671 if (wait_write_ptr) {
672 spin_lock_irqsave(&priv->lock, flags);
673 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800674 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700675 spin_unlock_irqrestore(&priv->lock, flags);
676 }
677
Johannes Berge4e72fb2009-03-23 17:28:42 +0100678 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700679 }
680
681 return 0;
682
683drop_unlock:
684 spin_unlock_irqrestore(&priv->lock, flags);
685drop:
686 return -1;
687}
688
Zhu Yib481de92007-09-25 17:54:57 -0700689#define BEACON_TIME_MASK_LOW 0x00FFFFFF
690#define BEACON_TIME_MASK_HIGH 0xFF000000
691#define TIME_UNIT 1024
692
693/*
694 * extended beacon time format
695 * time in usec will be changed into a 32-bit value in 8:24 format
696 * the high 1 byte is the beacon counts
697 * the lower 3 bytes is the time in usec within one beacon interval
698 */
699
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800700static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700701{
702 u32 quot;
703 u32 rem;
704 u32 interval = beacon_interval * 1024;
705
706 if (!interval || !usec)
707 return 0;
708
709 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
710 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
711
712 return (quot << 24) + rem;
713}
714
715/* base is usually what we get from ucode with each received frame,
716 * the same as HW timer counter counting down
717 */
718
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800719static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700720{
721 u32 base_low = base & BEACON_TIME_MASK_LOW;
722 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
723 u32 interval = beacon_interval * TIME_UNIT;
724 u32 res = (base & BEACON_TIME_MASK_HIGH) +
725 (addon & BEACON_TIME_MASK_HIGH);
726
727 if (base_low > addon_low)
728 res += base_low - addon_low;
729 else if (base_low < addon_low) {
730 res += interval + base_low - addon_low;
731 res += (1 << 24);
732 } else
733 res += (1 << 24);
734
735 return cpu_to_le32(res);
736}
737
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800738static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700739 struct ieee80211_measurement_params *params,
740 u8 type)
741{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800742 struct iwl_spectrum_cmd spectrum;
Zhu Yi2f301222009-10-09 17:19:45 +0800743 struct iwl_rx_packet *pkt;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800744 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700745 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
746 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700747 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700748 };
749 u32 add_time = le64_to_cpu(params->start_time);
750 int rc;
751 int spectrum_resp_status;
752 int duration = le16_to_cpu(params->duration);
753
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800754 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700755 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800756 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700757 le64_to_cpu(params->start_time) - priv->last_tsf,
758 le16_to_cpu(priv->rxon_timing.beacon_interval));
759
760 memset(&spectrum, 0, sizeof(spectrum));
761
762 spectrum.channel_count = cpu_to_le16(1);
763 spectrum.flags =
764 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
765 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
766 cmd.len = sizeof(spectrum);
767 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
768
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800769 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700770 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800771 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700772 add_time,
773 le16_to_cpu(priv->rxon_timing.beacon_interval));
774 else
775 spectrum.start_time = 0;
776
777 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
778 spectrum.channels[0].channel = params->channel;
779 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800780 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700781 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
782 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
783
Samuel Ortiz518099a2009-01-19 15:30:27 -0800784 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700785 if (rc)
786 return rc;
787
Zhu Yi2f301222009-10-09 17:19:45 +0800788 pkt = (struct iwl_rx_packet *)cmd.reply_page;
789 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800790 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700791 rc = -EIO;
792 }
793
Zhu Yi2f301222009-10-09 17:19:45 +0800794 spectrum_resp_status = le16_to_cpu(pkt->u.spectrum.status);
Zhu Yib481de92007-09-25 17:54:57 -0700795 switch (spectrum_resp_status) {
796 case 0: /* Command will be handled */
Zhu Yi2f301222009-10-09 17:19:45 +0800797 if (pkt->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800798 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800799 pkt->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700800 priv->measurement_status &= ~MEASUREMENT_READY;
801 }
802 priv->measurement_status |= MEASUREMENT_ACTIVE;
803 rc = 0;
804 break;
805
806 case 1: /* Command will not be handled */
807 rc = -EAGAIN;
808 break;
809 }
810
Zhu Yi64a76b52009-12-10 14:37:21 -0800811 iwl_free_pages(priv, cmd.reply_page);
Zhu Yib481de92007-09-25 17:54:57 -0700812
813 return rc;
814}
Zhu Yib481de92007-09-25 17:54:57 -0700815
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800816static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800817 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700818{
Zhu Yi2f301222009-10-09 17:19:45 +0800819 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800820 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700821 struct delayed_work *pwork;
822
823 palive = &pkt->u.alive_frame;
824
Tomas Winklere1623442009-01-27 14:27:56 -0800825 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700826 "0x%01X 0x%01X\n",
827 palive->is_valid, palive->ver_type,
828 palive->ver_subtype);
829
830 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800831 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800832 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
833 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700834 pwork = &priv->init_alive_start;
835 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800836 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700837 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800838 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700839 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800840 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700841 }
842
843 /* We delay the ALIVE response by 5ms to
844 * give the HW RF Kill time to activate... */
845 if (palive->is_valid == UCODE_VALID_OK)
846 queue_delayed_work(priv->workqueue, pwork,
847 msecs_to_jiffies(5));
848 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800849 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700850}
851
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800852static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800853 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700854{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100855#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800856 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Helmut Schaac7e035a2009-01-19 13:02:15 +0100857#endif
Zhu Yib481de92007-09-25 17:54:57 -0700858
Tomas Winklere1623442009-01-27 14:27:56 -0800859 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700860 return;
861}
862
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800863static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700864{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800865 struct iwl_priv *priv =
866 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700867 struct sk_buff *beacon;
868
869 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200870 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700871
872 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800873 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700874 return;
875 }
876
877 mutex_lock(&priv->mutex);
878 /* new beacon skb is allocated every time; dispose previous.*/
879 if (priv->ibss_beacon)
880 dev_kfree_skb(priv->ibss_beacon);
881
882 priv->ibss_beacon = beacon;
883 mutex_unlock(&priv->mutex);
884
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800885 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700886}
887
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800888static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800889 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700890{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800891#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800892 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800893 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700894 u8 rate = beacon->beacon_notify_hdr.rate;
895
Tomas Winklere1623442009-01-27 14:27:56 -0800896 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700897 "tsf %d %d rate %d\n",
898 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
899 beacon->beacon_notify_hdr.failure_frame,
900 le32_to_cpu(beacon->ibss_mgr_status),
901 le32_to_cpu(beacon->high_tsf),
902 le32_to_cpu(beacon->low_tsf), rate);
903#endif
904
Johannes Berg05c914f2008-09-11 00:01:58 +0200905 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700906 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
907 queue_work(priv->workqueue, &priv->beacon_update);
908}
909
Zhu Yib481de92007-09-25 17:54:57 -0700910/* Handle notification from uCode that card's power state is changing
911 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800912static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800913 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700914{
Zhu Yi2f301222009-10-09 17:19:45 +0800915 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700916 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
917 unsigned long status = priv->status;
918
Reinette Chatre4c423a22009-07-17 09:30:26 -0700919 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700920 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
921 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
922
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800923 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700924 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
925
926 if (flags & HW_CARD_DISABLED)
927 set_bit(STATUS_RF_KILL_HW, &priv->status);
928 else
929 clear_bit(STATUS_RF_KILL_HW, &priv->status);
930
931
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800932 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700933
934 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200935 test_bit(STATUS_RF_KILL_HW, &priv->status)))
936 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
937 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700938 else
939 wake_up_interruptible(&priv->wait_command_queue);
940}
941
942/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800943 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700944 *
945 * Setup the RX handlers for each of the reply types sent from the uCode
946 * to the host.
947 *
948 * This function chains into the hardware specific files for them to setup
949 * any hardware specific handlers as well.
950 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800951static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700952{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800953 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
954 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800955 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800956 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800957 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
958 iwl_rx_spectrum_measure_notif;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800959 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700960 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800961 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800962 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700963
Ben Cahill9fbab512007-11-29 11:09:47 +0800964 /*
965 * The same handler is used for both the REPLY to a discrete
966 * statistics request from the host as well as for the periodic
967 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700968 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800969 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
970 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700971
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800972 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800973 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700974
Ben Cahill9fbab512007-11-29 11:09:47 +0800975 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800976 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700977}
978
Zhu Yib481de92007-09-25 17:54:57 -0700979/************************** RX-FUNCTIONS ****************************/
980/*
981 * Rx theory of operation
982 *
983 * The host allocates 32 DMA target addresses and passes the host address
984 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
985 * 0 to 31
986 *
987 * Rx Queue Indexes
988 * The host/firmware share two index registers for managing the Rx buffers.
989 *
990 * The READ index maps to the first position that the firmware may be writing
991 * to -- the driver can read up to (but not including) this position and get
992 * good data.
993 * The READ index is managed by the firmware once the card is enabled.
994 *
995 * The WRITE index maps to the last position the driver has read from -- the
996 * position preceding WRITE is the last slot the firmware can place a packet.
997 *
998 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
999 * WRITE = READ.
1000 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001001 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001002 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1003 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001004 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001005 * and fire the RX interrupt. The driver can then query the READ index and
1006 * process as many packets as possible, moving the WRITE index forward as it
1007 * resets the Rx queue buffers with new memory.
1008 *
1009 * The management in the driver is as follows:
1010 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1011 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001012 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001013 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001014 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1015 * 'processed' and 'read' driver indexes as well)
1016 * + A received packet is processed and handed to the kernel network stack,
1017 * detached from the iwl->rxq. The driver 'processed' index is updated.
1018 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1019 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1020 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1021 * were enough free buffers and RX_STALLED is set it is cleared.
1022 *
1023 *
1024 * Driver sequence:
1025 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001026 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001027 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001028 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001029 * queue, updates firmware pointers, and updates
1030 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001031 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001032 *
1033 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001034 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001035 * READ INDEX, detaching the SKB from the pool.
1036 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001037 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001038 * slots.
1039 * ...
1040 *
1041 */
1042
1043/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001044 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001045 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001046static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001047 dma_addr_t dma_addr)
1048{
1049 return cpu_to_le32((u32)dma_addr);
1050}
1051
1052/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001053 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001054 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001055 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001056 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001057 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001058 *
1059 * This moves the 'write' index forward to catch up with 'processed', and
1060 * also updates the memory address in the firmware to reference the new
1061 * target buffer.
1062 */
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001063static void iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001064{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001065 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001066 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001067 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001068 unsigned long flags;
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001069 int write;
Zhu Yib481de92007-09-25 17:54:57 -07001070
1071 spin_lock_irqsave(&rxq->lock, flags);
1072 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001073 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001074 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001075 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001076 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001077 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001078
1079 /* Point to Rx buffer via next RBD in circular buffer */
Zhu Yi2f301222009-10-09 17:19:45 +08001080 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->page_dma);
Zhu Yib481de92007-09-25 17:54:57 -07001081 rxq->queue[rxq->write] = rxb;
1082 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1083 rxq->free_count--;
1084 }
1085 spin_unlock_irqrestore(&rxq->lock, flags);
1086 /* If the pre-allocated buffer pool is dropping low, schedule to
1087 * refill it */
1088 if (rxq->free_count <= RX_LOW_WATERMARK)
1089 queue_work(priv->workqueue, &priv->rx_replenish);
1090
1091
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001092 /* If we've added more space for the firmware to place data, tell it.
1093 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001094 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001095 || (abs(rxq->write - rxq->read) > 7)) {
1096 spin_lock_irqsave(&rxq->lock, flags);
1097 rxq->need_update = 1;
1098 spin_unlock_irqrestore(&rxq->lock, flags);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001099 iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001100 }
Zhu Yib481de92007-09-25 17:54:57 -07001101}
1102
1103/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001104 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001105 *
1106 * When moving to rx_free an SKB is allocated for the slot.
1107 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001108 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001109 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001110 */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001111static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001112{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001113 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001114 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001115 struct iwl_rx_mem_buffer *rxb;
Zhu Yi2f301222009-10-09 17:19:45 +08001116 struct page *page;
Zhu Yib481de92007-09-25 17:54:57 -07001117 unsigned long flags;
Zhu Yi29b1b262009-10-23 13:42:25 -07001118 gfp_t gfp_mask = priority;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001119
1120 while (1) {
1121 spin_lock_irqsave(&rxq->lock, flags);
1122
1123 if (list_empty(&rxq->rx_used)) {
1124 spin_unlock_irqrestore(&rxq->lock, flags);
1125 return;
1126 }
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001127 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001128
Reinette Chatref82a9242009-09-17 10:43:56 -07001129 if (rxq->free_count > RX_LOW_WATERMARK)
Zhu Yi29b1b262009-10-23 13:42:25 -07001130 gfp_mask |= __GFP_NOWARN;
Zhu Yi2f301222009-10-09 17:19:45 +08001131
1132 if (priv->hw_params.rx_page_order > 0)
Zhu Yi29b1b262009-10-23 13:42:25 -07001133 gfp_mask |= __GFP_COMP;
Zhu Yi2f301222009-10-09 17:19:45 +08001134
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001135 /* Alloc a new receive buffer */
Zhu Yi29b1b262009-10-23 13:42:25 -07001136 page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order);
Zhu Yi2f301222009-10-09 17:19:45 +08001137 if (!page) {
Zhu Yib481de92007-09-25 17:54:57 -07001138 if (net_ratelimit())
Reinette Chatref82a9242009-09-17 10:43:56 -07001139 IWL_DEBUG_INFO(priv, "Failed to allocate SKB buffer.\n");
1140 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
1141 net_ratelimit())
1142 IWL_CRIT(priv, "Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n",
1143 priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL",
1144 rxq->free_count);
Zhu Yib481de92007-09-25 17:54:57 -07001145 /* We don't reschedule replenish work here -- we will
1146 * call the restock method and if it still needs
1147 * more buffers it will schedule replenish */
1148 break;
1149 }
Zhu Yi12342c42007-12-20 11:27:32 +08001150
Reinette Chatrede0bd502009-09-11 10:38:12 -07001151 spin_lock_irqsave(&rxq->lock, flags);
1152 if (list_empty(&rxq->rx_used)) {
1153 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001154 __free_pages(page, priv->hw_params.rx_page_order);
Reinette Chatrede0bd502009-09-11 10:38:12 -07001155 return;
1156 }
1157 element = rxq->rx_used.next;
1158 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
1159 list_del(element);
1160 spin_unlock_irqrestore(&rxq->lock, flags);
1161
Zhu Yi2f301222009-10-09 17:19:45 +08001162 rxb->page = page;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001163 /* Get physical address of RB/SKB */
Zhu Yi2f301222009-10-09 17:19:45 +08001164 rxb->page_dma = pci_map_page(priv->pci_dev, page, 0,
1165 PAGE_SIZE << priv->hw_params.rx_page_order,
1166 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001167
1168 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001169
Zhu Yib481de92007-09-25 17:54:57 -07001170 list_add_tail(&rxb->list, &rxq->rx_free);
1171 rxq->free_count++;
Zhu Yi2f301222009-10-09 17:19:45 +08001172 priv->alloc_rxb_page++;
1173
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001174 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001175 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001176}
1177
Reinette Chatredf833b12009-04-21 10:55:48 -07001178void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1179{
1180 unsigned long flags;
1181 int i;
1182 spin_lock_irqsave(&rxq->lock, flags);
1183 INIT_LIST_HEAD(&rxq->rx_free);
1184 INIT_LIST_HEAD(&rxq->rx_used);
1185 /* Fill the rx_used queue with _all_ of the Rx buffers */
1186 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1187 /* In the reset function, these buffers may have been allocated
1188 * to an SKB, so we need to unmap and free potential storage */
Zhu Yi2f301222009-10-09 17:19:45 +08001189 if (rxq->pool[i].page != NULL) {
1190 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1191 PAGE_SIZE << priv->hw_params.rx_page_order,
1192 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001193 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001194 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001195 }
1196 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1197 }
1198
1199 /* Set us so that we have processed and used all buffers, but have
1200 * not restocked the Rx queue with fresh buffers */
1201 rxq->read = rxq->write = 0;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001202 rxq->write_actual = 0;
Zhu Yi2f301222009-10-09 17:19:45 +08001203 rxq->free_count = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001204 spin_unlock_irqrestore(&rxq->lock, flags);
1205}
Reinette Chatredf833b12009-04-21 10:55:48 -07001206
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001207void iwl3945_rx_replenish(void *data)
1208{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001209 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001210 unsigned long flags;
1211
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001212 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001213
1214 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001215 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001216 spin_unlock_irqrestore(&priv->lock, flags);
1217}
1218
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001219static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1220{
1221 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1222
1223 iwl3945_rx_queue_restock(priv);
1224}
1225
1226
Reinette Chatredf833b12009-04-21 10:55:48 -07001227/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1228 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1229 * This free routine walks the list of POOL entries and if SKB is set to
1230 * non NULL it is unmapped and freed
1231 */
1232static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1233{
1234 int i;
1235 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
Zhu Yi2f301222009-10-09 17:19:45 +08001236 if (rxq->pool[i].page != NULL) {
1237 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1238 PAGE_SIZE << priv->hw_params.rx_page_order,
1239 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001240 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001241 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001242 }
1243 }
1244
Stanislaw Gruszkaf36d04a2010-02-10 05:07:45 -08001245 dma_free_coherent(&priv->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1246 rxq->dma_addr);
1247 dma_free_coherent(&priv->pci_dev->dev, sizeof(struct iwl_rb_status),
1248 rxq->rb_stts, rxq->rb_stts_dma);
Reinette Chatredf833b12009-04-21 10:55:48 -07001249 rxq->bd = NULL;
1250 rxq->rb_stts = NULL;
1251}
Reinette Chatredf833b12009-04-21 10:55:48 -07001252
1253
Zhu Yib481de92007-09-25 17:54:57 -07001254/* Convert linear signal-to-noise ratio into dB */
1255static u8 ratio2dB[100] = {
1256/* 0 1 2 3 4 5 6 7 8 9 */
1257 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1258 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1259 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1260 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1261 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1262 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1263 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1264 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1265 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1266 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1267};
1268
1269/* Calculates a relative dB value from a ratio of linear
1270 * (i.e. not dB) signal levels.
1271 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001272int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001273{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001274 /* 1000:1 or higher just report as 60 dB */
1275 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001276 return 60;
1277
Adrian Bunk221c80c2008-02-02 23:19:01 +02001278 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001279 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001280 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001281 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001282
1283 /* We shouldn't see this */
1284 if (sig_ratio < 1)
1285 return 0;
1286
1287 /* Use table for ratios 1:1 - 99:1 */
1288 return (int)ratio2dB[sig_ratio];
1289}
1290
Zhu Yib481de92007-09-25 17:54:57 -07001291/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001292 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001293 *
1294 * Uses the priv->rx_handlers callback function array to invoke
1295 * the appropriate handlers, including command responses,
1296 * frame-received notifications, and other notifications.
1297 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001298static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001299{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001300 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001301 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001302 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001303 u32 r, i;
1304 int reclaim;
1305 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001306 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001307 u32 count = 8;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001308 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001309
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001310 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1311 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001312 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001313 i = rxq->read;
1314
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001315 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001316 total_empty = r - rxq->write_actual;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001317 if (total_empty < 0)
1318 total_empty += RX_QUEUE_SIZE;
1319
1320 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001321 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001322 /* Rx interrupt, but nothing sent from uCode */
1323 if (i == r)
Reinette Chatreaf472a952009-08-28 09:58:50 -07001324 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001325
1326 while (i != r) {
1327 rxb = rxq->queue[i];
1328
Ben Cahill9fbab512007-11-29 11:09:47 +08001329 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001330 * then a bug has been introduced in the queue refilling
1331 * routines -- catch it here */
1332 BUG_ON(rxb == NULL);
1333
1334 rxq->queue[i] = NULL;
1335
Zhu Yi2f301222009-10-09 17:19:45 +08001336 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1337 PAGE_SIZE << priv->hw_params.rx_page_order,
1338 PCI_DMA_FROMDEVICE);
1339 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001340
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001341 trace_iwlwifi_dev_rx(priv, pkt,
1342 le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK);
1343
Zhu Yib481de92007-09-25 17:54:57 -07001344 /* Reclaim a command buffer only if this packet is a response
1345 * to a (driver-originated) command.
1346 * If the packet (e.g. Rx frame) originated from uCode,
1347 * there is no command buffer to reclaim.
1348 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1349 * but apparently a few don't get set; catch them here. */
1350 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1351 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1352 (pkt->hdr.cmd != REPLY_TX);
1353
1354 /* Based on type of command response or notification,
1355 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001356 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001357 if (priv->rx_handlers[pkt->hdr.cmd]) {
Reinette Chatreaf472a952009-08-28 09:58:50 -07001358 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r, i,
Zhu Yib481de92007-09-25 17:54:57 -07001359 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001360 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001361 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001362 } else {
1363 /* No handling needed */
Zhu Yi2f301222009-10-09 17:19:45 +08001364 IWL_DEBUG_RX(priv,
1365 "r %d i %d No handler needed for %s, 0x%02x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001366 r, i, get_cmd_string(pkt->hdr.cmd),
1367 pkt->hdr.cmd);
1368 }
1369
Zhu Yi29b1b262009-10-23 13:42:25 -07001370 /*
1371 * XXX: After here, we should always check rxb->page
1372 * against NULL before touching it or its virtual
1373 * memory (pkt). Because some rx_handler might have
1374 * already taken or freed the pages.
1375 */
1376
Zhu Yib481de92007-09-25 17:54:57 -07001377 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001378 /* Invoke any callbacks, transfer the buffer to caller,
1379 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001380 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001381 if (rxb->page)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001382 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001383 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001384 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001385 }
1386
Zhu Yi73005152009-10-23 13:42:32 -07001387 /* Reuse the page if possible. For notification packets and
1388 * SKBs that fail to Rx correctly, add them back into the
1389 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001390 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001391 if (rxb->page != NULL) {
1392 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1393 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1394 PCI_DMA_FROMDEVICE);
1395 list_add_tail(&rxb->list, &rxq->rx_free);
1396 rxq->free_count++;
1397 } else
1398 list_add_tail(&rxb->list, &rxq->rx_used);
1399
Zhu Yib481de92007-09-25 17:54:57 -07001400 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001401
Zhu Yib481de92007-09-25 17:54:57 -07001402 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001403 /* If there are a lot of unused frames,
1404 * restock the Rx queue so ucode won't assert. */
1405 if (fill_rx) {
1406 count++;
1407 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001408 rxq->read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001409 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001410 count = 0;
1411 }
1412 }
Zhu Yib481de92007-09-25 17:54:57 -07001413 }
1414
1415 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001416 rxq->read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001417 if (fill_rx)
1418 iwl3945_rx_replenish_now(priv);
1419 else
1420 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001421}
1422
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001423/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001424static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001425{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001426 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001427 synchronize_irq(priv->pci_dev->irq);
1428 tasklet_kill(&priv->irq_tasklet);
1429}
1430
Zhu Yib481de92007-09-25 17:54:57 -07001431static const char *desc_lookup(int i)
1432{
1433 switch (i) {
1434 case 1:
1435 return "FAIL";
1436 case 2:
1437 return "BAD_PARAM";
1438 case 3:
1439 return "BAD_CHECKSUM";
1440 case 4:
1441 return "NMI_INTERRUPT";
1442 case 5:
1443 return "SYSASSERT";
1444 case 6:
1445 return "FATAL_ERROR";
1446 }
1447
1448 return "UNKNOWN";
1449}
1450
1451#define ERROR_START_OFFSET (1 * sizeof(u32))
1452#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1453
Reinette Chatreb7a79402009-09-25 14:24:23 -07001454void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001455{
1456 u32 i;
1457 u32 desc, time, count, base, data1;
1458 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001459
1460 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1461
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001462 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001463 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001464 return;
1465 }
1466
Zhu Yib481de92007-09-25 17:54:57 -07001467
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001468 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001469
1470 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001471 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1472 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1473 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001474 }
1475
Winkler, Tomas15b16872008-12-19 10:37:33 +08001476 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001477 "ilink1 nmiPC Line\n");
1478 for (i = ERROR_START_OFFSET;
1479 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1480 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001481 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001482 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001483 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001484 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001485 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001486 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001487 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001488 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001489 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001490 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001491 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001492 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001493 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001494
Winkler, Tomas15b16872008-12-19 10:37:33 +08001495 IWL_ERR(priv,
1496 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1497 desc_lookup(desc), desc, time, blink1, blink2,
1498 ilink1, ilink2, data1);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001499 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, 0,
1500 0, blink1, blink2, ilink1, ilink2);
Zhu Yib481de92007-09-25 17:54:57 -07001501 }
Zhu Yib481de92007-09-25 17:54:57 -07001502}
1503
Ben Cahillf58177b2007-11-29 11:09:43 +08001504#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001505
1506/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001507 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001508 *
Zhu Yib481de92007-09-25 17:54:57 -07001509 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001510static int iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
1511 u32 num_events, u32 mode,
1512 int pos, char **buf, size_t bufsz)
Zhu Yib481de92007-09-25 17:54:57 -07001513{
1514 u32 i;
1515 u32 base; /* SRAM byte address of event log header */
1516 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1517 u32 ptr; /* SRAM byte address of log data */
1518 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08001519 unsigned long reg_flags;
Zhu Yib481de92007-09-25 17:54:57 -07001520
1521 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001522 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001523
1524 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1525
1526 if (mode == 0)
1527 event_size = 2 * sizeof(u32);
1528 else
1529 event_size = 3 * sizeof(u32);
1530
1531 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1532
Ben Cahille5854472009-11-06 14:52:58 -08001533 /* Make sure device is powered up for SRAM reads */
1534 spin_lock_irqsave(&priv->reg_lock, reg_flags);
1535 iwl_grab_nic_access(priv);
1536
1537 /* Set starting address; reads will auto-increment */
1538 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1539 rmb();
1540
Zhu Yib481de92007-09-25 17:54:57 -07001541 /* "time" is actually "data" for mode 0 (no timestamp).
1542 * place event id # at far right for easier visual parsing. */
1543 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08001544 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1545 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001546 if (mode == 0) {
1547 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001548 if (bufsz) {
1549 pos += scnprintf(*buf + pos, bufsz - pos,
1550 "0x%08x:%04u\n",
1551 time, ev);
1552 } else {
1553 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1554 trace_iwlwifi_dev_ucode_event(priv, 0,
1555 time, ev);
1556 }
Winkler, Tomas15b16872008-12-19 10:37:33 +08001557 } else {
Ben Cahille5854472009-11-06 14:52:58 -08001558 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001559 if (bufsz) {
1560 pos += scnprintf(*buf + pos, bufsz - pos,
1561 "%010u:0x%08x:%04u\n",
1562 time, data, ev);
1563 } else {
1564 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n",
1565 time, data, ev);
1566 trace_iwlwifi_dev_ucode_event(priv, time,
1567 data, ev);
1568 }
Zhu Yib481de92007-09-25 17:54:57 -07001569 }
1570 }
Ben Cahille5854472009-11-06 14:52:58 -08001571
1572 /* Allow device to power down */
1573 iwl_release_nic_access(priv);
1574 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001575 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001576}
1577
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001578/**
1579 * iwl3945_print_last_event_logs - Dump the newest # of event log to syslog
1580 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001581static int iwl3945_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001582 u32 num_wraps, u32 next_entry,
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001583 u32 size, u32 mode,
1584 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001585{
1586 /*
1587 * display the newest DEFAULT_LOG_ENTRIES entries
1588 * i.e the entries just before the next ont that uCode would fill.
1589 */
1590 if (num_wraps) {
1591 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001592 pos = iwl3945_print_event_log(priv,
1593 capacity - (size - next_entry),
1594 size - next_entry, mode,
1595 pos, buf, bufsz);
1596 pos = iwl3945_print_event_log(priv, 0,
1597 next_entry, mode,
1598 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001599 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001600 pos = iwl3945_print_event_log(priv, next_entry - size,
1601 size, mode,
1602 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001603 } else {
1604 if (next_entry < size)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001605 pos = iwl3945_print_event_log(priv, 0,
1606 next_entry, mode,
1607 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001608 else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001609 pos = iwl3945_print_event_log(priv, next_entry - size,
1610 size, mode,
1611 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001612 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001613 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001614}
1615
Ben Cahill84c40692009-11-06 14:52:57 -08001616/* For sanity check only. Actual size is determined by uCode, typ. 512 */
1617#define IWL3945_MAX_EVENT_LOG_SIZE (512)
1618
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001619#define DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES (20)
1620
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001621int iwl3945_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
1622 char **buf, bool display)
Zhu Yib481de92007-09-25 17:54:57 -07001623{
Zhu Yib481de92007-09-25 17:54:57 -07001624 u32 base; /* SRAM byte address of event log header */
1625 u32 capacity; /* event log capacity in # entries */
1626 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1627 u32 num_wraps; /* # times uCode wrapped to top of log */
1628 u32 next_entry; /* index of next entry to be written by uCode */
1629 u32 size; /* # entries that we'll print */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001630 int pos = 0;
1631 size_t bufsz = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001632
1633 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001634 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001635 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001636 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001637 }
1638
Zhu Yib481de92007-09-25 17:54:57 -07001639 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001640 capacity = iwl_read_targ_mem(priv, base);
1641 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1642 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1643 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001644
Ben Cahill84c40692009-11-06 14:52:57 -08001645 if (capacity > IWL3945_MAX_EVENT_LOG_SIZE) {
1646 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
1647 capacity, IWL3945_MAX_EVENT_LOG_SIZE);
1648 capacity = IWL3945_MAX_EVENT_LOG_SIZE;
1649 }
1650
1651 if (next_entry > IWL3945_MAX_EVENT_LOG_SIZE) {
1652 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
1653 next_entry, IWL3945_MAX_EVENT_LOG_SIZE);
1654 next_entry = IWL3945_MAX_EVENT_LOG_SIZE;
1655 }
1656
Zhu Yib481de92007-09-25 17:54:57 -07001657 size = num_wraps ? capacity : next_entry;
1658
1659 /* bail out if nothing in log */
1660 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001661 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001662 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001663 }
1664
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001665#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08001666 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001667 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1668 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1669#else
1670 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1671 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1672#endif
1673
1674 IWL_ERR(priv, "Start IWL Event Log Dump: display last %d count\n",
1675 size);
Zhu Yib481de92007-09-25 17:54:57 -07001676
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001677#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001678 if (display) {
1679 if (full_log)
1680 bufsz = capacity * 48;
1681 else
1682 bufsz = size * 48;
1683 *buf = kmalloc(bufsz, GFP_KERNEL);
1684 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001685 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001686 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001687 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
1688 /* if uCode has wrapped back to top of log,
1689 * start at the oldest entry,
1690 * i.e the next one that uCode would fill.
1691 */
1692 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001693 pos = iwl3945_print_event_log(priv, next_entry,
1694 capacity - next_entry, mode,
1695 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001696
1697 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001698 pos = iwl3945_print_event_log(priv, 0, next_entry, mode,
1699 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001700 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001701 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1702 next_entry, size, mode,
1703 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001704#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001705 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1706 next_entry, size, mode,
1707 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001708#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001709 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001710}
1711
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001712static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001713{
1714 u32 inta, handled = 0;
1715 u32 inta_fh;
1716 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001717#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001718 u32 inta_mask;
1719#endif
1720
1721 spin_lock_irqsave(&priv->lock, flags);
1722
1723 /* Ack/clear/reset pending uCode interrupts.
1724 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1725 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001726 inta = iwl_read32(priv, CSR_INT);
1727 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001728
1729 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1730 * Any new interrupts that happen after this, either while we're
1731 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001732 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1733 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001734
Samuel Ortizd08853a2009-01-23 13:45:17 -08001735#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001736 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001737 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001738 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001739 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001740 inta, inta_mask, inta_fh);
1741 }
1742#endif
1743
Zhu Yi2f301222009-10-09 17:19:45 +08001744 spin_unlock_irqrestore(&priv->lock, flags);
1745
Zhu Yib481de92007-09-25 17:54:57 -07001746 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1747 * atomic, make sure that inta covers all the interrupts that
1748 * we've discovered, even if FH interrupt came in just after
1749 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001750 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001751 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001752 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001753 inta |= CSR_INT_BIT_FH_TX;
1754
1755 /* Now service all interrupt bits discovered above. */
1756 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001757 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001758
1759 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001760 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001761
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001762 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001763 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001764
1765 handled |= CSR_INT_BIT_HW_ERR;
1766
Zhu Yib481de92007-09-25 17:54:57 -07001767 return;
1768 }
1769
Samuel Ortizd08853a2009-01-23 13:45:17 -08001770#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001771 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001772 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001773 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001774 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001775 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001776 priv->isr_stats.sch++;
1777 }
Zhu Yib481de92007-09-25 17:54:57 -07001778
1779 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001780 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001781 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001782 priv->isr_stats.alive++;
1783 }
Zhu Yib481de92007-09-25 17:54:57 -07001784 }
1785#endif
1786 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001787 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001788
Zhu Yib481de92007-09-25 17:54:57 -07001789 /* Error detected by uCode */
1790 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001791 IWL_ERR(priv, "Microcode SW error detected. "
1792 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001793 priv->isr_stats.sw++;
1794 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001795 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001796 handled |= CSR_INT_BIT_SW_ERR;
1797 }
1798
1799 /* uCode wakes up after power-down sleep */
1800 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001801 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001802 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001803 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1804 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1805 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1806 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1807 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1808 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001809
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001810 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001811 handled |= CSR_INT_BIT_WAKEUP;
1812 }
1813
1814 /* All uCode command responses, including Tx command responses,
1815 * Rx "responses" (frame-received notification), and other
1816 * notifications from uCode come through here*/
1817 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001818 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001819 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001820 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1821 }
1822
1823 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001824 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001825 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001826
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001827 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001828 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1829 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001830 handled |= CSR_INT_BIT_FH_TX;
1831 }
1832
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001833 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001834 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001835 priv->isr_stats.unhandled++;
1836 }
Zhu Yib481de92007-09-25 17:54:57 -07001837
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001838 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001839 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001840 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001841 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001842 }
1843
1844 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001845 /* only Re-enable if disabled by irq */
1846 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001847 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001848
Samuel Ortizd08853a2009-01-23 13:45:17 -08001849#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001850 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001851 inta = iwl_read32(priv, CSR_INT);
1852 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1853 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001854 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001855 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1856 }
1857#endif
Zhu Yib481de92007-09-25 17:54:57 -07001858}
1859
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001860static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001861 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001862 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001863 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001864{
Johannes Berg4e05c232009-06-19 13:52:44 -07001865 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001866 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001867 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001868 u16 passive_dwell = 0;
1869 u16 active_dwell = 0;
1870 int added, i;
1871
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001872 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001873 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001874 return 0;
1875
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001876 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1877 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001878
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001879 if (passive_dwell <= active_dwell)
1880 passive_dwell = active_dwell + 1;
1881
Johannes Berg4e05c232009-06-19 13:52:44 -07001882 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1883 chan = priv->scan_request->channels[i];
1884
1885 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001886 continue;
1887
Johannes Berg4e05c232009-06-19 13:52:44 -07001888 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001889
Samuel Ortize6148912009-01-23 13:45:15 -08001890 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001891 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001892 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001893 scan_ch->channel);
1894 continue;
1895 }
1896
Zhu Yib481de92007-09-25 17:54:57 -07001897 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1898 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001899 /* If passive , set up for auto-switch
1900 * and use long active_dwell time.
1901 */
1902 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001903 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001904 scan_ch->type = 0; /* passive */
1905 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1906 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1907 } else {
1908 scan_ch->type = 1; /* active */
1909 }
1910
1911 /* Set direct probe bits. These may be used both for active
1912 * scan channels (probes gets sent right away),
1913 * or for passive channels (probes get se sent only after
1914 * hearing clear Rx packet).*/
1915 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1916 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001917 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001918 } else {
1919 /* uCode v1 does not allow setting direct probe bits on
1920 * passive channel. */
1921 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001922 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001923 }
Zhu Yib481de92007-09-25 17:54:57 -07001924
Ben Cahill9fbab512007-11-29 11:09:47 +08001925 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001926 scan_ch->tpc.dsp_atten = 110;
1927 /* scan_pwr_info->tpc.dsp_atten; */
1928
1929 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001930 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001931 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1932 else {
1933 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1934 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001935 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001936 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001937 */
1938 }
1939
Tomas Winklere1623442009-01-27 14:27:56 -08001940 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001941 scan_ch->channel,
1942 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1943 (scan_ch->type & 1) ?
1944 active_dwell : passive_dwell);
1945
1946 scan_ch++;
1947 added++;
1948 }
1949
Tomas Winklere1623442009-01-27 14:27:56 -08001950 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001951 return added;
1952}
1953
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001954static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001955 struct ieee80211_rate *rates)
1956{
1957 int i;
1958
1959 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001960 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1961 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1962 rates[i].hw_value_short = i;
1963 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001964 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001965 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001966 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001967 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001968 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001969 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001970 }
Zhu Yib481de92007-09-25 17:54:57 -07001971 }
1972}
1973
Zhu Yib481de92007-09-25 17:54:57 -07001974/******************************************************************************
1975 *
1976 * uCode download functions
1977 *
1978 ******************************************************************************/
1979
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001980static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001981{
Tomas Winkler98c92212008-01-14 17:46:20 -08001982 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1983 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1984 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1985 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1986 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1987 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001988}
1989
1990/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001991 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001992 * looking at all data.
1993 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001994static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001995{
1996 u32 val;
1997 u32 save_len = len;
1998 int rc = 0;
1999 u32 errcnt;
2000
Tomas Winklere1623442009-01-27 14:27:56 -08002001 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002002
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002003 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002004 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07002005
2006 errcnt = 0;
2007 for (; len > 0; len -= sizeof(u32), image++) {
2008 /* read data comes through single port, auto-incr addr */
2009 /* NOTE: Use the debugless read so we don't flood kernel log
2010 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002011 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002012 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002013 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002014 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2015 save_len - len, val, le32_to_cpu(*image));
2016 rc = -EIO;
2017 errcnt++;
2018 if (errcnt >= 20)
2019 break;
2020 }
2021 }
2022
Zhu Yib481de92007-09-25 17:54:57 -07002023
2024 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002025 IWL_DEBUG_INFO(priv,
2026 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002027
2028 return rc;
2029}
2030
2031
2032/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002033 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002034 * using sample data 100 bytes apart. If these sample points are good,
2035 * it's a pretty good bet that everything between them is good, too.
2036 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002037static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002038{
2039 u32 val;
2040 int rc = 0;
2041 u32 errcnt = 0;
2042 u32 i;
2043
Tomas Winklere1623442009-01-27 14:27:56 -08002044 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002045
Zhu Yib481de92007-09-25 17:54:57 -07002046 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2047 /* read data comes through single port, auto-incr addr */
2048 /* NOTE: Use the debugless read so we don't flood kernel log
2049 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002050 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002051 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002052 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002053 if (val != le32_to_cpu(*image)) {
2054#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002055 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002056 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2057 i, val, *image);
2058#endif
2059 rc = -EIO;
2060 errcnt++;
2061 if (errcnt >= 3)
2062 break;
2063 }
2064 }
2065
Zhu Yib481de92007-09-25 17:54:57 -07002066 return rc;
2067}
2068
2069
2070/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002071 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002072 * and verify its contents
2073 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002074static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002075{
2076 __le32 *image;
2077 u32 len;
2078 int rc = 0;
2079
2080 /* Try bootstrap */
2081 image = (__le32 *)priv->ucode_boot.v_addr;
2082 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002083 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002084 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002085 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002086 return 0;
2087 }
2088
2089 /* Try initialize */
2090 image = (__le32 *)priv->ucode_init.v_addr;
2091 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002092 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002093 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002094 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002095 return 0;
2096 }
2097
2098 /* Try runtime/protocol */
2099 image = (__le32 *)priv->ucode_code.v_addr;
2100 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002101 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002102 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002103 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002104 return 0;
2105 }
2106
Winkler, Tomas15b16872008-12-19 10:37:33 +08002107 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002108
Ben Cahill9fbab512007-11-29 11:09:47 +08002109 /* Since nothing seems to match, show first several data entries in
2110 * instruction SRAM, so maybe visual inspection will give a clue.
2111 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002112 image = (__le32 *)priv->ucode_boot.v_addr;
2113 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002114 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002115
2116 return rc;
2117}
2118
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002119static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002120{
2121 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002122 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002123}
2124
2125/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002126 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002127 *
2128 * Copy into buffers for card to fetch via bus-mastering
2129 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002130static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002131{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002132 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002133 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002134 const struct firmware *ucode_raw;
2135 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002136 const char *name_pre = priv->cfg->fw_name_pre;
2137 const unsigned int api_max = priv->cfg->ucode_api_max;
2138 const unsigned int api_min = priv->cfg->ucode_api_min;
2139 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002140 u8 *src;
2141 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002142 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002143
2144 /* Ask kernel firmware_class module to get the boot firmware off disk.
2145 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002146 for (index = api_max; index >= api_min; index--) {
2147 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2148 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2149 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002150 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002151 buf, ret);
2152 if (ret == -ENOENT)
2153 continue;
2154 else
2155 goto error;
2156 } else {
2157 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002158 IWL_ERR(priv, "Loaded firmware %s, "
2159 "which is deprecated. "
2160 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002161 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002162 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2163 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002164 buf, ucode_raw->size);
2165 break;
2166 }
Zhu Yib481de92007-09-25 17:54:57 -07002167 }
2168
Reinette Chatrea0987a82008-12-02 12:14:06 -08002169 if (ret < 0)
2170 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002171
2172 /* Make sure that we got at least our header! */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002173 if (ucode_raw->size < priv->cfg->ops->ucode->get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002174 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002175 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002176 goto err_release;
2177 }
2178
2179 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002180 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002181
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002182 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002183 api_ver = IWL_UCODE_API(priv->ucode_ver);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002184 inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2185 data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2186 init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2187 init_data_size =
2188 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2189 boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2190 src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002191
Reinette Chatrea0987a82008-12-02 12:14:06 -08002192 /* api_ver should match the api version forming part of the
2193 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002194 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002195
2196 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002197 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002198 "Driver supports v%u, firmware is v%u.\n",
2199 api_max, api_ver);
2200 priv->ucode_ver = 0;
2201 ret = -EINVAL;
2202 goto err_release;
2203 }
2204 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002205 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002206 "got %u. New firmware can be obtained "
2207 "from http://www.intellinuxwireless.org.\n",
2208 api_max, api_ver);
2209
Tomas Winkler978785a2008-12-19 10:37:31 +08002210 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2211 IWL_UCODE_MAJOR(priv->ucode_ver),
2212 IWL_UCODE_MINOR(priv->ucode_ver),
2213 IWL_UCODE_API(priv->ucode_ver),
2214 IWL_UCODE_SERIAL(priv->ucode_ver));
2215
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002216 snprintf(priv->hw->wiphy->fw_version,
2217 sizeof(priv->hw->wiphy->fw_version),
2218 "%u.%u.%u.%u",
2219 IWL_UCODE_MAJOR(priv->ucode_ver),
2220 IWL_UCODE_MINOR(priv->ucode_ver),
2221 IWL_UCODE_API(priv->ucode_ver),
2222 IWL_UCODE_SERIAL(priv->ucode_ver));
2223
Tomas Winklere1623442009-01-27 14:27:56 -08002224 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002225 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002226 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2227 inst_size);
2228 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2229 data_size);
2230 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2231 init_size);
2232 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2233 init_data_size);
2234 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2235 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002236
Reinette Chatrea0987a82008-12-02 12:14:06 -08002237
Zhu Yib481de92007-09-25 17:54:57 -07002238 /* Verify size of file vs. image size info in file's header */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002239 if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002240 inst_size + data_size + init_size +
2241 init_data_size + boot_size) {
2242
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002243 IWL_DEBUG_INFO(priv,
2244 "uCode file size %zd does not match expected size\n",
2245 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002246 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002247 goto err_release;
2248 }
2249
2250 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002251 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002252 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002253 inst_size);
2254 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002255 goto err_release;
2256 }
2257
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002258 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002259 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002260 data_size);
2261 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002262 goto err_release;
2263 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002264 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002265 IWL_DEBUG_INFO(priv,
2266 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002267 init_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_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002272 IWL_DEBUG_INFO(priv,
2273 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002274 init_data_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 (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002279 IWL_DEBUG_INFO(priv,
2280 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002281 boot_size);
2282 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002283 goto err_release;
2284 }
2285
2286 /* Allocate ucode buffers for card's bus-master loading ... */
2287
2288 /* Runtime instructions and 2 copies of data:
2289 * 1) unmodified from disk
2290 * 2) backup cache for save/restore during power-downs */
2291 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002292 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002293
2294 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002295 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002296
2297 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002298 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002299
2300 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002301 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002302 goto err_pci_alloc;
2303
Tomas Winkler90e759d2007-11-29 11:09:41 +08002304 /* Initialization instructions and data */
2305 if (init_size && init_data_size) {
2306 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002307 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002308
2309 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002310 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002311
2312 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2313 goto err_pci_alloc;
2314 }
2315
2316 /* Bootstrap (instructions only, no data) */
2317 if (boot_size) {
2318 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002319 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002320
2321 if (!priv->ucode_boot.v_addr)
2322 goto err_pci_alloc;
2323 }
2324
Zhu Yib481de92007-09-25 17:54:57 -07002325 /* Copy images into buffers for card's bus-master reads ... */
2326
2327 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002328 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002329 IWL_DEBUG_INFO(priv,
2330 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002331 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002332 src += len;
2333
Tomas Winklere1623442009-01-27 14:27:56 -08002334 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002335 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2336
2337 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002338 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002339 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002340 IWL_DEBUG_INFO(priv,
2341 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002342 memcpy(priv->ucode_data.v_addr, src, len);
2343 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002344 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002345
2346 /* Initialization instructions (3rd block) */
2347 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002348 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002349 IWL_DEBUG_INFO(priv,
2350 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002351 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002352 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002353 }
2354
2355 /* Initialization data (4th block) */
2356 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002357 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002358 IWL_DEBUG_INFO(priv,
2359 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002360 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002361 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002362 }
2363
2364 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002365 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002366 IWL_DEBUG_INFO(priv,
2367 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002368 memcpy(priv->ucode_boot.v_addr, src, len);
2369
2370 /* We have our copies now, allow OS release its copies */
2371 release_firmware(ucode_raw);
2372 return 0;
2373
2374 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002375 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002376 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002377 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002378
2379 err_release:
2380 release_firmware(ucode_raw);
2381
2382 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002383 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002384}
2385
2386
2387/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002388 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002389 *
2390 * Tell initialization uCode where to find runtime uCode.
2391 *
2392 * BSM registers initially contain pointers to initialization uCode.
2393 * We need to replace them to load runtime uCode inst and data,
2394 * and to save runtime data when powering down.
2395 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002396static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002397{
2398 dma_addr_t pinst;
2399 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002400
2401 /* bits 31:0 for 3945 */
2402 pinst = priv->ucode_code.p_addr;
2403 pdata = priv->ucode_data_backup.p_addr;
2404
Zhu Yib481de92007-09-25 17:54:57 -07002405 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002406 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2407 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2408 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002409 priv->ucode_data.len);
2410
Tomas Winklera96a27f2008-10-23 23:48:56 -07002411 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002412 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002413 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002414 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2415
Tomas Winklere1623442009-01-27 14:27:56 -08002416 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002417
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002418 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002419}
2420
2421/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002422 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002423 *
2424 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2425 *
Zhu Yib481de92007-09-25 17:54:57 -07002426 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002427 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002428static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002429{
2430 /* Check alive response for "valid" sign from uCode */
2431 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2432 /* We had an error bringing up the hardware, so take it
2433 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002434 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002435 goto restart;
2436 }
2437
2438 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2439 * This is a paranoid check, because we would not have gotten the
2440 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002441 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002442 /* Runtime instruction load was bad;
2443 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002444 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002445 goto restart;
2446 }
2447
2448 /* Send pointers to protocol/runtime uCode image ... init code will
2449 * load and launch runtime uCode, which will send us another "Alive"
2450 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002451 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002452 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002453 /* Runtime instruction load won't happen;
2454 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002455 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002456 goto restart;
2457 }
2458 return;
2459
2460 restart:
2461 queue_work(priv->workqueue, &priv->restart);
2462}
2463
Zhu Yib481de92007-09-25 17:54:57 -07002464/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002465 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002466 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002467 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002468 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002469static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002470{
Zhu Yib481de92007-09-25 17:54:57 -07002471 int thermal_spin = 0;
2472 u32 rfkill;
2473
Tomas Winklere1623442009-01-27 14:27:56 -08002474 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002475
2476 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2477 /* We had an error bringing up the hardware, so take it
2478 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002479 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002480 goto restart;
2481 }
2482
2483 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2484 * This is a paranoid check, because we would not have gotten the
2485 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002486 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002487 /* Runtime instruction load was bad;
2488 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002489 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002490 goto restart;
2491 }
2492
Tomas Winklerc587de02009-06-03 11:44:07 -07002493 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002494
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002495 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002496 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002497
2498 if (rfkill & 0x1) {
2499 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002500 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002501 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002502 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002503 thermal_spin++;
2504 udelay(10);
2505 }
2506
2507 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002508 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002509 thermal_spin * 10);
2510 } else
2511 set_bit(STATUS_RF_KILL_HW, &priv->status);
2512
Ben Cahill9fbab512007-11-29 11:09:47 +08002513 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002514 set_bit(STATUS_ALIVE, &priv->status);
2515
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002516 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002517 return;
2518
Johannes Berg36d68252008-05-15 12:55:26 +02002519 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002520
2521 priv->active_rate = priv->rates_mask;
2522 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2523
Ben Cahill4d6ccbf2009-11-13 11:56:29 -08002524 iwl_power_update_mode(priv, true);
Zhu Yib481de92007-09-25 17:54:57 -07002525
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002526 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002527 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002528 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002529
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002530 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002531 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2532 } else {
2533 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002534 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002535 }
2536
Ben Cahill9fbab512007-11-29 11:09:47 +08002537 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002538 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002539
2540 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002541 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002542
Zhu Yib481de92007-09-25 17:54:57 -07002543 iwl3945_reg_txpower_periodic(priv);
2544
Johannes Berge932a602009-10-02 13:44:03 -07002545 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002546
Tomas Winklere1623442009-01-27 14:27:56 -08002547 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002548 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002549 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002550
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002551 /* reassociate for ADHOC mode */
2552 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2553 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2554 priv->vif);
2555 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002556 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002557 }
2558
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002559 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002560 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002561
Zhu Yib481de92007-09-25 17:54:57 -07002562 return;
2563
2564 restart:
2565 queue_work(priv->workqueue, &priv->restart);
2566}
2567
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002568static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002569
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002570static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002571{
2572 unsigned long flags;
2573 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2574 struct ieee80211_conf *conf = NULL;
2575
Tomas Winklere1623442009-01-27 14:27:56 -08002576 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002577
2578 conf = ieee80211_get_hw_conf(priv->hw);
2579
2580 if (!exit_pending)
2581 set_bit(STATUS_EXIT_PENDING, &priv->status);
2582
Tomas Winklerc587de02009-06-03 11:44:07 -07002583 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002584
2585 /* Unblock any waiting calls */
2586 wake_up_interruptible_all(&priv->wait_command_queue);
2587
Zhu Yib481de92007-09-25 17:54:57 -07002588 /* Wipe out the EXIT_PENDING status bit if we are not actually
2589 * exiting the module */
2590 if (!exit_pending)
2591 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2592
2593 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002594 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002595
2596 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002597 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002598 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002599 spin_unlock_irqrestore(&priv->lock, flags);
2600 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002601
2602 if (priv->mac80211_registered)
2603 ieee80211_stop_queues(priv->hw);
2604
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002605 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002606 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002607 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002608 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2609 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002610 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2611 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002612 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2613 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002614 goto exit;
2615 }
2616
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002617 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002618 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002619 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2620 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002621 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2622 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002623 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002624 STATUS_FW_ERROR |
2625 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2626 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002627
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002628 iwl3945_hw_txq_ctx_stop(priv);
2629 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002630
Ben Cahill309e7312009-11-06 14:53:03 -08002631 /* Power-down device's busmaster DMA clocks */
2632 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002633 udelay(5);
2634
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002635 /* Stop the device, and put it in low power state */
2636 priv->cfg->ops->lib->apm_ops.stop(priv);
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002637
Zhu Yib481de92007-09-25 17:54:57 -07002638 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002639 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002640
2641 if (priv->ibss_beacon)
2642 dev_kfree_skb(priv->ibss_beacon);
2643 priv->ibss_beacon = NULL;
2644
2645 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002646 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002647}
2648
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002649static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002650{
2651 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002652 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002653 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002654
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002655 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002656}
2657
2658#define MAX_HW_RESTARTS 5
2659
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002660static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002661{
2662 int rc, i;
2663
2664 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002665 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002666 return -EIO;
2667 }
2668
Reinette Chatree903fbd2008-01-30 22:05:15 -08002669 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002670 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002671 return -EIO;
2672 }
2673
Zhu Yie655b9f2008-01-24 02:19:38 -08002674 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002675 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002676 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2677 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2678 else {
2679 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002680 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2681 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002682 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002683
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002684 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002685
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002686 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002687 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002688 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002689 return rc;
2690 }
2691
2692 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002693 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2694 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002695 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2696
2697 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002698 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002699 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002700
2701 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002702 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2703 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002704
2705 /* Copy original ucode data image from disk into backup cache.
2706 * This will be used to initialize the on-board processor's
2707 * data SRAM for a clean start when the runtime program first loads. */
2708 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002709 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002710
Zhu Yie655b9f2008-01-24 02:19:38 -08002711 /* We return success when we resume from suspend and rf_kill is on. */
2712 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2713 return 0;
2714
Zhu Yib481de92007-09-25 17:54:57 -07002715 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2716
Tomas Winklerc587de02009-06-03 11:44:07 -07002717 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002718
2719 /* load bootstrap state machine,
2720 * load bootstrap program into processor's memory,
2721 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002722 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002723
2724 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002725 IWL_ERR(priv,
2726 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002727 continue;
2728 }
2729
2730 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002731 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002732
Tomas Winklere1623442009-01-27 14:27:56 -08002733 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002734
2735 return 0;
2736 }
2737
2738 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002739 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002740 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002741
2742 /* tried to restart and config the device for as long as our
2743 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002744 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002745 return -EIO;
2746}
2747
2748
2749/*****************************************************************************
2750 *
2751 * Workqueue callbacks
2752 *
2753 *****************************************************************************/
2754
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002755static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002756{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002757 struct iwl_priv *priv =
2758 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002759
2760 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2761 return;
2762
2763 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002764 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002765 mutex_unlock(&priv->mutex);
2766}
2767
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002768static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002769{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002770 struct iwl_priv *priv =
2771 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002772
2773 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2774 return;
2775
2776 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002777 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002778 mutex_unlock(&priv->mutex);
2779}
2780
Ben Cahill743cdf12009-10-09 13:20:26 -07002781/*
2782 * 3945 cannot interrupt driver when hardware rf kill switch toggles;
2783 * driver must poll CSR_GP_CNTRL_REG register for change. This register
2784 * *is* readable even when device has been SW_RESET into low power mode
2785 * (e.g. during RF KILL).
2786 */
Helmut Schaa26635162009-01-15 09:38:44 +01002787static void iwl3945_rfkill_poll(struct work_struct *data)
2788{
2789 struct iwl_priv *priv =
2790 container_of(data, struct iwl_priv, rfkill_poll.work);
Ben Cahill743cdf12009-10-09 13:20:26 -07002791 bool old_rfkill = test_bit(STATUS_RF_KILL_HW, &priv->status);
2792 bool new_rfkill = !(iwl_read32(priv, CSR_GP_CNTRL)
2793 & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
Helmut Schaa26635162009-01-15 09:38:44 +01002794
Ben Cahill743cdf12009-10-09 13:20:26 -07002795 if (new_rfkill != old_rfkill) {
2796 if (new_rfkill)
2797 set_bit(STATUS_RF_KILL_HW, &priv->status);
2798 else
2799 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Helmut Schaa26635162009-01-15 09:38:44 +01002800
Ben Cahill743cdf12009-10-09 13:20:26 -07002801 wiphy_rfkill_set_hw_state(priv->hw->wiphy, new_rfkill);
Helmut Schaa26635162009-01-15 09:38:44 +01002802
Ben Cahill743cdf12009-10-09 13:20:26 -07002803 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
2804 new_rfkill ? "disable radio" : "enable radio");
2805 }
2806
2807 /* Keep this running, even if radio now enabled. This will be
2808 * cancelled in mac_start() if system decides to start again */
Helmut Schaa26635162009-01-15 09:38:44 +01002809 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2810 round_jiffies_relative(2 * HZ));
2811
2812}
2813
Zhu Yib481de92007-09-25 17:54:57 -07002814#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002815static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002816{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002817 struct iwl_priv *priv =
2818 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002819 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002820 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002821 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002822 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002823 };
2824 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002825 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002826 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002827 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002828 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002829 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002830
2831 conf = ieee80211_get_hw_conf(priv->hw);
2832
2833 mutex_lock(&priv->mutex);
2834
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002835 cancel_delayed_work(&priv->scan_check);
2836
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002837 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002838 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002839 goto done;
2840 }
2841
Tomas Winklera96a27f2008-10-23 23:48:56 -07002842 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002843 * was given the chance to run... */
2844 if (!test_bit(STATUS_SCANNING, &priv->status))
2845 goto done;
2846
2847 /* This should never be called or scheduled if there is currently
2848 * a scan active in the hardware. */
2849 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002850 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2851 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002852 rc = -EIO;
2853 goto done;
2854 }
2855
2856 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002857 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002858 goto done;
2859 }
2860
2861 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002862 IWL_DEBUG_HC(priv,
2863 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002864 goto done;
2865 }
2866
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002867 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002868 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002869 goto done;
2870 }
2871
2872 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002873 IWL_DEBUG_HC(priv,
2874 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002875 goto done;
2876 }
2877
2878 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002879 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002880 goto done;
2881 }
2882
Winkler, Tomas805cee52009-01-19 15:30:28 -08002883 if (!priv->scan) {
2884 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07002885 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08002886 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07002887 rc = -ENOMEM;
2888 goto done;
2889 }
2890 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08002891 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002892 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002893
2894 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2895 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2896
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002897 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002898 u16 interval = 0;
2899 u32 extra;
2900 u32 suspend_time = 100;
2901 u32 scan_suspend_time = 100;
2902 unsigned long flags;
2903
Tomas Winklere1623442009-01-27 14:27:56 -08002904 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002905
2906 spin_lock_irqsave(&priv->lock, flags);
2907 interval = priv->beacon_int;
2908 spin_unlock_irqrestore(&priv->lock, flags);
2909
2910 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002911 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002912 if (!interval)
2913 interval = suspend_time;
2914 /*
2915 * suspend time format:
2916 * 0-19: beacon interval in usec (time before exec.)
2917 * 20-23: 0
2918 * 24-31: number of beacons (suspend between channels)
2919 */
2920
2921 extra = (suspend_time / interval) << 24;
2922 scan_suspend_time = 0xFF0FFFFF &
2923 (extra | ((suspend_time % interval) * 1024));
2924
2925 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002926 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002927 scan_suspend_time, interval);
2928 }
2929
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002930 if (priv->scan_request->n_ssids) {
2931 int i, p = 0;
2932 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2933 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2934 /* always does wildcard anyway */
2935 if (!priv->scan_request->ssids[i].ssid_len)
2936 continue;
2937 scan->direct_scan[p].id = WLAN_EID_SSID;
2938 scan->direct_scan[p].len =
2939 priv->scan_request->ssids[i].ssid_len;
2940 memcpy(scan->direct_scan[p].ssid,
2941 priv->scan_request->ssids[i].ssid,
2942 priv->scan_request->ssids[i].ssid_len);
2943 n_probes++;
2944 p++;
2945 }
2946 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002947 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002948 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002949
2950 /* We don't build a direct scan probe request; the uCode will do
2951 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002952 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002953 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002954 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2955
2956 /* flags + rate selection */
2957
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002958 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002959 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2960 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2961 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002962 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002963 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07002964 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002965 /*
2966 * If active scaning is requested but a certain channel
2967 * is marked passive, we can do active scanning if we
2968 * detect transmissions.
2969 */
2970 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002971 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002972 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002973 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07002974 goto done;
2975 }
2976
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002977 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002978 iwl_fill_probe_req(priv,
2979 (struct ieee80211_mgmt *)scan->data,
2980 priv->scan_request->ie,
2981 priv->scan_request->ie_len,
2982 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002983
Zhu Yib481de92007-09-25 17:54:57 -07002984 /* select Rx antennas */
2985 scan->flags |= iwl3945_get_antenna_flags(priv);
2986
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07002987 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002988 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2989
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002990 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002991 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002992 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07002993
Reinette Chatre14b54332008-11-04 12:21:35 -08002994 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002995 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002996 goto done;
2997 }
2998
Zhu Yib481de92007-09-25 17:54:57 -07002999 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003000 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003001 cmd.data = scan;
3002 scan->len = cpu_to_le16(cmd.len);
3003
3004 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003005 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003006 if (rc)
3007 goto done;
3008
3009 queue_delayed_work(priv->workqueue, &priv->scan_check,
3010 IWL_SCAN_CHECK_WATCHDOG);
3011
3012 mutex_unlock(&priv->mutex);
3013 return;
3014
3015 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003016 /* can not perform scan make sure we clear scanning
3017 * bits from status so next scan request can be performed.
3018 * if we dont clear scanning status bit here all next scan
3019 * will fail
3020 */
3021 clear_bit(STATUS_SCAN_HW, &priv->status);
3022 clear_bit(STATUS_SCANNING, &priv->status);
3023
Ian Schram01ebd062007-10-25 17:15:22 +08003024 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003025 queue_work(priv->workqueue, &priv->scan_completed);
3026 mutex_unlock(&priv->mutex);
3027}
3028
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003029static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003030{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003031 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003032
3033 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3034 return;
3035
Johannes Berg19cc1082009-05-08 13:44:36 -07003036 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3037 mutex_lock(&priv->mutex);
3038 priv->vif = NULL;
3039 priv->is_open = 0;
3040 mutex_unlock(&priv->mutex);
3041 iwl3945_down(priv);
3042 ieee80211_restart_hw(priv->hw);
3043 } else {
3044 iwl3945_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003045
3046 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3047 return;
3048
3049 mutex_lock(&priv->mutex);
3050 __iwl3945_up(priv);
3051 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003052 }
Zhu Yib481de92007-09-25 17:54:57 -07003053}
3054
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003055static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003056{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003057 struct iwl_priv *priv =
3058 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003059
3060 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3061 return;
3062
3063 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003064 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003065 mutex_unlock(&priv->mutex);
3066}
3067
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003068#define IWL_DELAY_NEXT_SCAN (HZ*2)
3069
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003070void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003071{
Zhu Yib481de92007-09-25 17:54:57 -07003072 int rc = 0;
3073 struct ieee80211_conf *conf = NULL;
3074
Johannes Berg05c914f2008-09-11 00:01:58 +02003075 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003076 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003077 return;
3078 }
3079
3080
Tomas Winklere1623442009-01-27 14:27:56 -08003081 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003082 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003083
3084 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3085 return;
3086
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003087 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003088 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003089
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003090 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003091
Zhu Yib481de92007-09-25 17:54:57 -07003092 conf = ieee80211_get_hw_conf(priv->hw);
3093
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003094 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003095 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003096
Tomas Winkler28afaf92008-12-19 10:37:06 +08003097 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003098 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003099 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003100 sizeof(priv->rxon_timing), &priv->rxon_timing);
3101 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003102 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003103 "Attempting to continue.\n");
3104
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003105 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003106
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003107 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003108
Tomas Winklere1623442009-01-27 14:27:56 -08003109 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003110 priv->assoc_id, priv->beacon_int);
3111
3112 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003113 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003114 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003115 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003116
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003117 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003118 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003119 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003120 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003121 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003122
Johannes Berg05c914f2008-09-11 00:01:58 +02003123 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003124 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003125
3126 }
3127
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003128 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003129
3130 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003131 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003132 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003133 break;
3134
Johannes Berg05c914f2008-09-11 00:01:58 +02003135 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003136
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003137 priv->assoc_id = 1;
Tomas Winklerc587de02009-06-03 11:44:07 -07003138 iwl_add_station(priv, priv->bssid, 0, CMD_SYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003139 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003140 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003141 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3142 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003143 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3144 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003145
3146 break;
3147
3148 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003149 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003150 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003151 break;
3152 }
3153
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003154 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003155
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003156 /* we have just associated, don't start scan too early */
3157 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003158}
3159
Zhu Yib481de92007-09-25 17:54:57 -07003160/*****************************************************************************
3161 *
3162 * mac80211 entry point functions
3163 *
3164 *****************************************************************************/
3165
Zhu Yi5a669262008-01-14 17:46:18 -08003166#define UCODE_READY_TIMEOUT (2 * HZ)
3167
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003168static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003169{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003170 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003171 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003172
Tomas Winklere1623442009-01-27 14:27:56 -08003173 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003174
3175 /* we should be verifying the device is ready to be opened */
3176 mutex_lock(&priv->mutex);
3177
Zhu Yi5a669262008-01-14 17:46:18 -08003178 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3179 * ucode filename and max sizes are card-specific. */
3180
3181 if (!priv->ucode_code.len) {
3182 ret = iwl3945_read_ucode(priv);
3183 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003184 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003185 mutex_unlock(&priv->mutex);
3186 goto out_release_irq;
3187 }
3188 }
3189
Zhu Yie655b9f2008-01-24 02:19:38 -08003190 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003191
Zhu Yib481de92007-09-25 17:54:57 -07003192 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003193
Zhu Yie655b9f2008-01-24 02:19:38 -08003194 if (ret)
3195 goto out_release_irq;
3196
Tomas Winklere1623442009-01-27 14:27:56 -08003197 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003198
Zhu Yi5a669262008-01-14 17:46:18 -08003199 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3200 * mac80211 will not be run successfully. */
3201 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3202 test_bit(STATUS_READY, &priv->status),
3203 UCODE_READY_TIMEOUT);
3204 if (!ret) {
3205 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003206 IWL_ERR(priv,
3207 "Wait for START_ALIVE timeout after %dms.\n",
3208 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003209 ret = -ETIMEDOUT;
3210 goto out_release_irq;
3211 }
3212 }
3213
Helmut Schaa26635162009-01-15 09:38:44 +01003214 /* ucode is running and will send rfkill notifications,
3215 * no need to poll the killswitch state anymore */
3216 cancel_delayed_work(&priv->rfkill_poll);
3217
Johannes Berge932a602009-10-02 13:44:03 -07003218 iwl_led_start(priv);
3219
Zhu Yie655b9f2008-01-24 02:19:38 -08003220 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003221 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003222 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003223
3224out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003225 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003226 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003227 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003228}
3229
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003230static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003231{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003232 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003233
Tomas Winklere1623442009-01-27 14:27:56 -08003234 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003235
Zhu Yie655b9f2008-01-24 02:19:38 -08003236 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003237 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003238 return;
3239 }
3240
Zhu Yib481de92007-09-25 17:54:57 -07003241 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003242
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003243 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003244 /* stop mac, cancel any scan request and clear
3245 * RXON_FILTER_ASSOC_MSK BIT
3246 */
Zhu Yi5a669262008-01-14 17:46:18 -08003247 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003248 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003249 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003250 }
3251
Zhu Yi5a669262008-01-14 17:46:18 -08003252 iwl3945_down(priv);
3253
3254 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003255
3256 /* start polling the killswitch state again */
3257 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3258 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003259
Tomas Winklere1623442009-01-27 14:27:56 -08003260 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003261}
3262
Johannes Berge039fa42008-05-15 12:55:29 +02003263static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003264{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003265 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003266
Tomas Winklere1623442009-01-27 14:27:56 -08003267 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003268
Tomas Winklere1623442009-01-27 14:27:56 -08003269 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003270 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003271
Johannes Berge039fa42008-05-15 12:55:29 +02003272 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003273 dev_kfree_skb_any(skb);
3274
Tomas Winklere1623442009-01-27 14:27:56 -08003275 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003276 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003277}
3278
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003279void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003280{
3281 int rc = 0;
3282
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003283 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003284 return;
3285
3286 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003287 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003288
3289 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003290 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003291 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003292
3293 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003294 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Tomas Winkler2c2f3b32009-06-19 13:52:45 -07003295 iwl_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003296 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3297 sizeof(priv->rxon_timing),
3298 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003299 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003300 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003301 "Attempting to continue.\n");
3302
3303 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003304 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003305 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003306 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003307 RXON_FLG_SHORT_PREAMBLE_MSK;
3308 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003309 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003310 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3311
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003312 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003313 if (priv->assoc_capability &
3314 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003315 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003316 RXON_FLG_SHORT_SLOT_MSK;
3317 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003318 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003319 ~RXON_FLG_SHORT_SLOT_MSK;
3320
Johannes Berg05c914f2008-09-11 00:01:58 +02003321 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003322 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003323 ~RXON_FLG_SHORT_SLOT_MSK;
3324 }
3325 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003326 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003327 iwlcore_commit_rxon(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07003328 iwl_add_station(priv, iwl_bcast_addr, 0, CMD_SYNC, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003329 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003330 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003331
3332 /* FIXME - we need to add code here to detect a totally new
3333 * configuration, reset the AP, unassoc, rxon timing, assoc,
3334 * clear sta table, add BCAST sta... */
3335}
3336
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003337static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003338 struct ieee80211_vif *vif,
3339 struct ieee80211_sta *sta,
3340 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003341{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003342 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003343 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003344 int ret = 0;
3345 u8 sta_id = IWL_INVALID_STATION;
3346 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003347
Tomas Winklere1623442009-01-27 14:27:56 -08003348 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003349
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003350 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003351 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003352 return -EOPNOTSUPP;
3353 }
3354
Winkler, Tomas42986792009-01-19 15:30:22 -08003355 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003356 static_key = !iwl_is_associated(priv);
3357
3358 if (!static_key) {
Tomas Winklerc587de02009-06-03 11:44:07 -07003359 sta_id = iwl_find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003360 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003361 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003362 addr);
3363 return -EINVAL;
3364 }
Zhu Yib481de92007-09-25 17:54:57 -07003365 }
3366
3367 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003368 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003369 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003370
Zhu Yib481de92007-09-25 17:54:57 -07003371 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003372 case SET_KEY:
3373 if (static_key)
3374 ret = iwl3945_set_static_key(priv, key);
3375 else
3376 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3377 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003378 break;
3379 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003380 if (static_key)
3381 ret = iwl3945_remove_static_key(priv);
3382 else
3383 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3384 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003385 break;
3386 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003387 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003388 }
3389
Tomas Winklere1623442009-01-27 14:27:56 -08003390 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003391
Winkler, Tomas42986792009-01-19 15:30:22 -08003392 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003393}
3394
Zhu Yib481de92007-09-25 17:54:57 -07003395/*****************************************************************************
3396 *
3397 * sysfs attributes
3398 *
3399 *****************************************************************************/
3400
Samuel Ortizd08853a2009-01-23 13:45:17 -08003401#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003402
3403/*
3404 * The following adds a new attribute to the sysfs representation
3405 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3406 * used for controlling the debug level.
3407 *
3408 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003409 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003410 * The debug_level being managed using sysfs below is a per device debug
3411 * level that is used instead of the global debug level if it (the per
3412 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003413 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003414static ssize_t show_debug_level(struct device *d,
3415 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003416{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003417 struct iwl_priv *priv = dev_get_drvdata(d);
3418 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003419}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003420static ssize_t store_debug_level(struct device *d,
3421 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003422 const char *buf, size_t count)
3423{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003424 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003425 unsigned long val;
3426 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003427
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003428 ret = strict_strtoul(buf, 0, &val);
3429 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003430 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003431 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003432 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003433 if (iwl_alloc_traffic_mem(priv))
3434 IWL_ERR(priv,
3435 "Not enough memory to generate traffic log\n");
3436 }
Zhu Yib481de92007-09-25 17:54:57 -07003437 return strnlen(buf, count);
3438}
3439
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003440static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3441 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003442
Samuel Ortizd08853a2009-01-23 13:45:17 -08003443#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003444
Zhu Yib481de92007-09-25 17:54:57 -07003445static ssize_t show_temperature(struct device *d,
3446 struct device_attribute *attr, char *buf)
3447{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003448 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003449
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003450 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003451 return -EAGAIN;
3452
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003453 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003454}
3455
3456static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3457
Zhu Yib481de92007-09-25 17:54:57 -07003458static ssize_t show_tx_power(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);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003462 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003463}
3464
3465static ssize_t store_tx_power(struct device *d,
3466 struct device_attribute *attr,
3467 const char *buf, size_t count)
3468{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003469 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003470 char *p = (char *)buf;
3471 u32 val;
3472
3473 val = simple_strtoul(p, &p, 10);
3474 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003475 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003476 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003477 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003478
3479 return count;
3480}
3481
3482static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3483
3484static ssize_t show_flags(struct device *d,
3485 struct device_attribute *attr, char *buf)
3486{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003487 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003488
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003489 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003490}
3491
3492static ssize_t store_flags(struct device *d,
3493 struct device_attribute *attr,
3494 const char *buf, size_t count)
3495{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003496 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003497 u32 flags = simple_strtoul(buf, NULL, 0);
3498
3499 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003500 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003501 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003502 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003503 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003504 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003505 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003506 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003507 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003508 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003509 }
3510 }
3511 mutex_unlock(&priv->mutex);
3512
3513 return count;
3514}
3515
3516static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3517
3518static ssize_t show_filter_flags(struct device *d,
3519 struct device_attribute *attr, char *buf)
3520{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003521 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003522
3523 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003524 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003525}
3526
3527static ssize_t store_filter_flags(struct device *d,
3528 struct device_attribute *attr,
3529 const char *buf, size_t count)
3530{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003531 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003532 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3533
3534 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003535 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003536 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003537 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003538 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003539 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003540 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003541 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003542 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003543 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003544 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003545 }
3546 }
3547 mutex_unlock(&priv->mutex);
3548
3549 return count;
3550}
3551
3552static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3553 store_filter_flags);
3554
Zhu Yib481de92007-09-25 17:54:57 -07003555static ssize_t show_measurement(struct device *d,
3556 struct device_attribute *attr, char *buf)
3557{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003558 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003559 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003560 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003561 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003562 unsigned long flags;
3563
3564 spin_lock_irqsave(&priv->lock, flags);
3565 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3566 spin_unlock_irqrestore(&priv->lock, flags);
3567 return 0;
3568 }
3569 memcpy(&measure_report, &priv->measure_report, size);
3570 priv->measurement_status = 0;
3571 spin_unlock_irqrestore(&priv->lock, flags);
3572
3573 while (size && (PAGE_SIZE - len)) {
3574 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3575 PAGE_SIZE - len, 1);
3576 len = strlen(buf);
3577 if (PAGE_SIZE - len)
3578 buf[len++] = '\n';
3579
3580 ofs += 16;
3581 size -= min(size, 16U);
3582 }
3583
3584 return len;
3585}
3586
3587static ssize_t store_measurement(struct device *d,
3588 struct device_attribute *attr,
3589 const char *buf, size_t count)
3590{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003591 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003592 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003593 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003594 .start_time = cpu_to_le64(priv->last_tsf),
3595 .duration = cpu_to_le16(1),
3596 };
3597 u8 type = IWL_MEASURE_BASIC;
3598 u8 buffer[32];
3599 u8 channel;
3600
3601 if (count) {
3602 char *p = buffer;
3603 strncpy(buffer, buf, min(sizeof(buffer), count));
3604 channel = simple_strtoul(p, NULL, 0);
3605 if (channel)
3606 params.channel = channel;
3607
3608 p = buffer;
3609 while (*p && *p != ' ')
3610 p++;
3611 if (*p)
3612 type = simple_strtoul(p + 1, NULL, 0);
3613 }
3614
Tomas Winklere1623442009-01-27 14:27:56 -08003615 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003616 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003617 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003618
3619 return count;
3620}
3621
3622static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3623 show_measurement, store_measurement);
Zhu Yib481de92007-09-25 17:54:57 -07003624
Zhu Yib481de92007-09-25 17:54:57 -07003625static ssize_t store_retry_rate(struct device *d,
3626 struct device_attribute *attr,
3627 const char *buf, size_t count)
3628{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003629 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003630
3631 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3632 if (priv->retry_rate <= 0)
3633 priv->retry_rate = 1;
3634
3635 return count;
3636}
3637
3638static ssize_t show_retry_rate(struct device *d,
3639 struct device_attribute *attr, char *buf)
3640{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003641 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003642 return sprintf(buf, "%d", priv->retry_rate);
3643}
3644
3645static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3646 store_retry_rate);
3647
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003648
Zhu Yib481de92007-09-25 17:54:57 -07003649static ssize_t show_channels(struct device *d,
3650 struct device_attribute *attr, char *buf)
3651{
Johannes Berg8318d782008-01-24 19:38:38 +01003652 /* all this shit doesn't belong into sysfs anyway */
3653 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003654}
3655
3656static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3657
3658static ssize_t show_statistics(struct device *d,
3659 struct device_attribute *attr, char *buf)
3660{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003661 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003662 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003663 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003664 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003665 int rc = 0;
3666
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003667 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003668 return -EAGAIN;
3669
3670 mutex_lock(&priv->mutex);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08003671 rc = iwl_send_statistics_request(priv, CMD_SYNC, false);
Zhu Yib481de92007-09-25 17:54:57 -07003672 mutex_unlock(&priv->mutex);
3673
3674 if (rc) {
3675 len = sprintf(buf,
3676 "Error sending statistics request: 0x%08X\n", rc);
3677 return len;
3678 }
3679
3680 while (size && (PAGE_SIZE - len)) {
3681 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3682 PAGE_SIZE - len, 1);
3683 len = strlen(buf);
3684 if (PAGE_SIZE - len)
3685 buf[len++] = '\n';
3686
3687 ofs += 16;
3688 size -= min(size, 16U);
3689 }
3690
3691 return len;
3692}
3693
3694static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3695
3696static ssize_t show_antenna(struct device *d,
3697 struct device_attribute *attr, char *buf)
3698{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003699 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003700
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003701 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003702 return -EAGAIN;
3703
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003704 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003705}
3706
3707static ssize_t store_antenna(struct device *d,
3708 struct device_attribute *attr,
3709 const char *buf, size_t count)
3710{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003711 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003712 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003713
3714 if (count == 0)
3715 return 0;
3716
3717 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003718 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003719 return count;
3720 }
3721
3722 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003723 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003724 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003725 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003726 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003727
3728
3729 return count;
3730}
3731
3732static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3733
3734static ssize_t show_status(struct device *d,
3735 struct device_attribute *attr, char *buf)
3736{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003737 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003738 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003739 return -EAGAIN;
3740 return sprintf(buf, "0x%08x\n", (int)priv->status);
3741}
3742
3743static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3744
3745static ssize_t dump_error_log(struct device *d,
3746 struct device_attribute *attr,
3747 const char *buf, size_t count)
3748{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003749 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003750 char *p = (char *)buf;
3751
3752 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003753 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003754
3755 return strnlen(buf, count);
3756}
3757
3758static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3759
Zhu Yib481de92007-09-25 17:54:57 -07003760/*****************************************************************************
3761 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003762 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003763 *
3764 *****************************************************************************/
3765
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003766static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003767{
Reinette Chatred21050c2009-02-13 11:51:18 -08003768 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003769
3770 init_waitqueue_head(&priv->wait_command_queue);
3771
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003772 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3773 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003774 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003775 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3776 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003777 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003778 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3779 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3780 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3781 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003782
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003783 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003784
3785 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003786 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003787}
3788
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003789static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003790{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003791 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003792
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003793 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003794 cancel_delayed_work(&priv->scan_check);
3795 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003796 cancel_work_sync(&priv->beacon_update);
3797}
3798
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003799static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003800 &dev_attr_antenna.attr,
3801 &dev_attr_channels.attr,
3802 &dev_attr_dump_errors.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003803 &dev_attr_flags.attr,
3804 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003805 &dev_attr_measurement.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003806 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003807 &dev_attr_statistics.attr,
3808 &dev_attr_status.attr,
3809 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003810 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003811#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003812 &dev_attr_debug_level.attr,
3813#endif
Zhu Yib481de92007-09-25 17:54:57 -07003814 NULL
3815};
3816
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003817static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003818 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003819 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003820};
3821
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003822static struct ieee80211_ops iwl3945_hw_ops = {
3823 .tx = iwl3945_mac_tx,
3824 .start = iwl3945_mac_start,
3825 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003826 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003827 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003828 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003829 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003830 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003831 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003832 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003833 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08003834 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003835};
3836
Winkler, Tomase52119c2008-12-22 11:31:19 +08003837static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003838{
3839 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003840 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003841
3842 priv->retry_rate = 1;
3843 priv->ibss_beacon = NULL;
3844
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003845 spin_lock_init(&priv->sta_lock);
3846 spin_lock_init(&priv->hcmd_lock);
3847
3848 INIT_LIST_HEAD(&priv->free_frames);
3849
3850 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08003851 mutex_init(&priv->sync_cmd_mutex);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003852
3853 /* Clear the driver's (not device's) station table */
Tomas Winklerc587de02009-06-03 11:44:07 -07003854 iwl_clear_stations_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003855
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003856 priv->ieee_channels = NULL;
3857 priv->ieee_rates = NULL;
3858 priv->band = IEEE80211_BAND_2GHZ;
3859
3860 priv->iw_mode = NL80211_IFTYPE_STATION;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08003861 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003862
3863 iwl_reset_qos(priv);
3864
3865 priv->qos_data.qos_active = 0;
3866 priv->qos_data.qos_cap.val = 0;
3867
3868 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003869 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003870
Samuel Ortize6148912009-01-23 13:45:15 -08003871 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3872 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3873 eeprom->version);
3874 ret = -EINVAL;
3875 goto err;
3876 }
3877 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003878 if (ret) {
3879 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3880 goto err;
3881 }
3882
Samuel Ortize6148912009-01-23 13:45:15 -08003883 /* Set up txpower settings in driver for all channels */
3884 if (iwl3945_txpower_set_from_eeprom(priv)) {
3885 ret = -EIO;
3886 goto err_free_channel_map;
3887 }
3888
Samuel Ortiz534166d2009-01-23 13:45:16 -08003889 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003890 if (ret) {
3891 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3892 goto err_free_channel_map;
3893 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003894 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3895
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003896 return 0;
3897
3898err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003899 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003900err:
3901 return ret;
3902}
3903
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003904static int iwl3945_setup_mac(struct iwl_priv *priv)
3905{
3906 int ret;
3907 struct ieee80211_hw *hw = priv->hw;
3908
3909 hw->rate_control_algorithm = "iwl-3945-rs";
3910 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3911
3912 /* Tell mac80211 our characteristics */
3913 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07003914 IEEE80211_HW_NOISE_DBM |
Reinette Chatrebc45a672009-12-14 14:12:10 -08003915 IEEE80211_HW_SPECTRUM_MGMT;
3916
3917 if (!priv->cfg->broken_powersave)
3918 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3919 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003920
3921 hw->wiphy->interface_modes =
3922 BIT(NL80211_IFTYPE_STATION) |
3923 BIT(NL80211_IFTYPE_ADHOC);
3924
Johannes Berg5be83de2009-11-19 00:56:28 +01003925 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY |
3926 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003927
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003928 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3929 /* we create the 802.11 header and a zero-length SSID element */
3930 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003931
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003932 /* Default value; 4 EDCA QOS priorities */
3933 hw->queues = 4;
3934
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003935 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3936 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3937 &priv->bands[IEEE80211_BAND_2GHZ];
3938
3939 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3940 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3941 &priv->bands[IEEE80211_BAND_5GHZ];
3942
3943 ret = ieee80211_register_hw(priv->hw);
3944 if (ret) {
3945 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3946 return ret;
3947 }
3948 priv->mac80211_registered = 1;
3949
3950 return 0;
3951}
3952
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003953static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003954{
3955 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003956 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003957 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003958 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003959 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003960 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003961
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003962 /***********************
3963 * 1. Allocating HW data
3964 * ********************/
3965
Zhu Yib481de92007-09-25 17:54:57 -07003966 /* mac80211 allocates memory for this device instance, including
3967 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003968 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003969 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003970 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003971 err = -ENOMEM;
3972 goto out;
3973 }
Zhu Yib481de92007-09-25 17:54:57 -07003974 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003975 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003976
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003977 /*
3978 * Disabling hardware scan means that mac80211 will perform scans
3979 * "the hard way", rather than using device's scan.
3980 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003981 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003982 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003983 iwl3945_hw_ops.hw_scan = NULL;
3984 }
3985
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003986
Tomas Winklere1623442009-01-27 14:27:56 -08003987 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003988 priv->cfg = cfg;
3989 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003990 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003991
Samuel Ortizd08853a2009-01-23 13:45:17 -08003992#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003993 atomic_set(&priv->restrict_refcnt, 0);
3994#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003995 if (iwl_alloc_traffic_mem(priv))
3996 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003997
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003998 /***************************
3999 * 2. Initializing PCI bus
4000 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07004001 if (pci_enable_device(pdev)) {
4002 err = -ENODEV;
4003 goto out_ieee80211_free_hw;
4004 }
4005
4006 pci_set_master(pdev);
4007
Yang Hongyang284901a2009-04-06 19:01:15 -07004008 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004009 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07004010 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004011 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004012 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004013 goto out_pci_disable_device;
4014 }
4015
4016 pci_set_drvdata(pdev, priv);
4017 err = pci_request_regions(pdev, DRV_NAME);
4018 if (err)
4019 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004020
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004021 /***********************
4022 * 3. Read REV Register
4023 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07004024 priv->hw_base = pci_iomap(pdev, 0, 0);
4025 if (!priv->hw_base) {
4026 err = -ENODEV;
4027 goto out_pci_release_regions;
4028 }
4029
Tomas Winklere1623442009-01-27 14:27:56 -08004030 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07004031 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004032 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07004033
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004034 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4035 * PCI Tx retries from interfering with C3 CPU state */
4036 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07004037
Reinette Chatre731a29b2009-12-14 14:12:11 -08004038 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004039 * we should init now
4040 */
4041 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004042 spin_lock_init(&priv->lock);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004043
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004044 /*
4045 * stop and reset the on-board processor just in case it is in a
4046 * strange state ... like being left stranded by a primary kernel
4047 * and this is now the kdump kernel trying to start up
4048 */
4049 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4050
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004051 /***********************
4052 * 4. Read EEPROM
4053 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004054
Zhu Yi5a669262008-01-14 17:46:18 -08004055 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004056 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004057 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004058 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004059 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004060 }
4061 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004062 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4063 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004064 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08004065 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4066
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004067 /***********************
4068 * 5. Setup HW Constants
4069 * ********************/
4070 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004071 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004072 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004073 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004074 }
4075
4076 /***********************
4077 * 6. Setup priv
4078 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004079
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004080 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004081 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004082 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004083 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004084 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004085
Tomas Winkler978785a2008-12-19 10:37:31 +08004086 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4087 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004088
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004089 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004090 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004091 * ********************/
4092
4093 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004094 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004095 spin_unlock_irqrestore(&priv->lock, flags);
4096
Helmut Schaa26635162009-01-15 09:38:44 +01004097 pci_enable_msi(priv->pci_dev);
4098
Mohamed Abbasef850d72009-05-22 11:01:50 -07004099 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4100 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004101 if (err) {
4102 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4103 goto out_disable_msi;
4104 }
4105
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004106 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4107 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004108 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004109 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004110 }
4111
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004112 iwl_set_rxon_channel(priv,
4113 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004114 iwl3945_setup_deferred_work(priv);
4115 iwl3945_setup_rx_handlers(priv);
Ben Cahill008a9e32009-10-09 13:20:27 -07004116 iwl_power_initialize(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004117
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004118 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004119 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004120 * *******************************/
4121
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004122 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004123
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004124 err = iwl3945_setup_mac(priv);
4125 if (err)
4126 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004127
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004128 err = iwl_dbgfs_register(priv, DRV_NAME);
4129 if (err)
4130 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4131
Helmut Schaa26635162009-01-15 09:38:44 +01004132 /* Start monitoring the killswitch */
4133 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4134 2 * HZ);
4135
Zhu Yib481de92007-09-25 17:54:57 -07004136 return 0;
4137
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004138 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004139 destroy_workqueue(priv->workqueue);
4140 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004141 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4142 out_release_irq:
4143 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004144 out_disable_msi:
4145 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004146 iwlcore_free_geos(priv);
4147 iwl_free_channel_map(priv);
4148 out_unset_hw_params:
4149 iwl3945_unset_hw_params(priv);
4150 out_eeprom_free:
4151 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004152 out_iounmap:
4153 pci_iounmap(pdev, priv->hw_base);
4154 out_pci_release_regions:
4155 pci_release_regions(pdev);
4156 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004157 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004158 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004159 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004160 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004161 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004162 out:
4163 return err;
4164}
4165
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004166static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004167{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004168 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004169 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004170
4171 if (!priv)
4172 return;
4173
Tomas Winklere1623442009-01-27 14:27:56 -08004174 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004175
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004176 iwl_dbgfs_unregister(priv);
4177
Zhu Yib481de92007-09-25 17:54:57 -07004178 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004179
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004180 if (priv->mac80211_registered) {
4181 ieee80211_unregister_hw(priv->hw);
4182 priv->mac80211_registered = 0;
4183 } else {
4184 iwl3945_down(priv);
4185 }
Zhu Yib481de92007-09-25 17:54:57 -07004186
Ben Cahillc166b252009-10-23 13:42:35 -07004187 /*
4188 * Make sure device is reset to low power before unloading driver.
4189 * This may be redundant with iwl_down(), but there are paths to
4190 * run iwl_down() without calling apm_ops.stop(), and there are
4191 * paths to avoid running iwl_down() at all before leaving driver.
4192 * This (inexpensive) call *makes sure* device is reset.
4193 */
4194 priv->cfg->ops->lib->apm_ops.stop(priv);
4195
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004196 /* make sure we flush any pending irq or
4197 * tasklet for the driver
4198 */
4199 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004200 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004201 spin_unlock_irqrestore(&priv->lock, flags);
4202
4203 iwl_synchronize_irq(priv);
4204
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004205 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004206
Reinette Chatre71d449b2009-04-20 14:37:01 -07004207 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004208
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004209 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004210
4211 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004212 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004213 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004214
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004215 iwl3945_unset_hw_params(priv);
Tomas Winklerc587de02009-06-03 11:44:07 -07004216 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004217
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004218 /*netif_stop_queue(dev); */
4219 flush_workqueue(priv->workqueue);
4220
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004221 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004222 * priv->workqueue... so we can't take down the workqueue
4223 * until now... */
4224 destroy_workqueue(priv->workqueue);
4225 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004226 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004227
Helmut Schaa26635162009-01-15 09:38:44 +01004228 free_irq(pdev->irq, priv);
4229 pci_disable_msi(pdev);
4230
Zhu Yib481de92007-09-25 17:54:57 -07004231 pci_iounmap(pdev, priv->hw_base);
4232 pci_release_regions(pdev);
4233 pci_disable_device(pdev);
4234 pci_set_drvdata(pdev, NULL);
4235
Samuel Ortize6148912009-01-23 13:45:15 -08004236 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004237 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004238 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004239 if (priv->ibss_beacon)
4240 dev_kfree_skb(priv->ibss_beacon);
4241
4242 ieee80211_free_hw(priv->hw);
4243}
4244
Zhu Yib481de92007-09-25 17:54:57 -07004245
4246/*****************************************************************************
4247 *
4248 * driver and module entry point
4249 *
4250 *****************************************************************************/
4251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004252static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004253 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004254 .id_table = iwl3945_hw_card_ids,
4255 .probe = iwl3945_pci_probe,
4256 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004257#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004258 .suspend = iwl_pci_suspend,
4259 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004260#endif
4261};
4262
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004263static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004264{
4265
4266 int ret;
4267 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4268 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004269
4270 ret = iwl3945_rate_control_register();
4271 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004272 printk(KERN_ERR DRV_NAME
4273 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004274 return ret;
4275 }
4276
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004277 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004278 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004279 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004280 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004281 }
Zhu Yib481de92007-09-25 17:54:57 -07004282
4283 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004284
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004285error_register:
4286 iwl3945_rate_control_unregister();
4287 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004288}
4289
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004290static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004291{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004292 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004293 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004294}
4295
Reinette Chatrea0987a82008-12-02 12:14:06 -08004296MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004297
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004298module_param_named(antenna, iwl3945_mod_params.antenna, int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004299MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004300module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, S_IRUGO);
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004301MODULE_PARM_DESC(swcrypto,
4302 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004303#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004304module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Zhu Yib481de92007-09-25 17:54:57 -07004305MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004306#endif
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004307module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan,
4308 int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004309MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004310module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, S_IRUGO);
Samuel Ortizaf48d042009-01-23 13:45:19 -08004311MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4312
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004313module_exit(iwl3945_exit);
4314module_init(iwl3945_init);