blob: 42f1d3328078ff02b00b57c25e2f93dbc5e748e7 [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;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700200 struct iwl_addsta_cmd sta_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700201
202 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700203 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
204 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800205 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700206 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
207 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
208 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700209 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700210 spin_unlock_irqrestore(&priv->sta_lock, flags);
211
Tomas Winklere1623442009-01-27 14:27:56 -0800212 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700213 return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Zhu Yib481de92007-09-25 17:54:57 -0700214}
215
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700216static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800217 struct ieee80211_key_conf *keyconf, u8 sta_id)
218{
219 int ret = 0;
220
221 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
222
223 switch (keyconf->alg) {
224 case ALG_CCMP:
225 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
226 break;
227 case ALG_TKIP:
228 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
229 break;
230 case ALG_WEP:
231 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
232 break;
233 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700234 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800235 ret = -EINVAL;
236 }
237
238 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
239 keyconf->alg, keyconf->keylen, keyconf->keyidx,
240 sta_id, ret);
241
242 return ret;
243}
244
245static int iwl3945_remove_static_key(struct iwl_priv *priv)
246{
247 int ret = -EOPNOTSUPP;
248
249 return ret;
250}
251
252static int iwl3945_set_static_key(struct iwl_priv *priv,
253 struct ieee80211_key_conf *key)
254{
255 if (key->alg == ALG_WEP)
256 return -EOPNOTSUPP;
257
258 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
259 return -EINVAL;
260}
261
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800262static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700263{
264 struct list_head *element;
265
Tomas Winklere1623442009-01-27 14:27:56 -0800266 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700267 priv->frames_count);
268
269 while (!list_empty(&priv->free_frames)) {
270 element = priv->free_frames.next;
271 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800272 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700273 priv->frames_count--;
274 }
275
276 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800277 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700278 priv->frames_count);
279 priv->frames_count = 0;
280 }
281}
282
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800283static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700284{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800285 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700286 struct list_head *element;
287 if (list_empty(&priv->free_frames)) {
288 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
289 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800290 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700291 return NULL;
292 }
293
294 priv->frames_count++;
295 return frame;
296 }
297
298 element = priv->free_frames.next;
299 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800300 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700301}
302
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800303static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700304{
305 memset(frame, 0, sizeof(*frame));
306 list_add(&frame->list, &priv->free_frames);
307}
308
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800309unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700310 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200311 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700312{
313
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800314 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200315 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
316 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700317 return 0;
318
319 if (priv->ibss_beacon->len > left)
320 return 0;
321
322 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
323
324 return priv->ibss_beacon->len;
325}
326
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800327static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700328{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800329 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700330 unsigned int frame_size;
331 int rc;
332 u8 rate;
333
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800334 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700335
336 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800337 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700338 "command.\n");
339 return -ENOMEM;
340 }
341
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800342 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700343
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800344 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700345
Samuel Ortiz518099a2009-01-19 15:30:27 -0800346 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700347 &frame->u.cmd[0]);
348
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800349 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700350
351 return rc;
352}
353
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800354static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700355{
Johannes Bergee525d12010-01-21 06:09:28 -0800356 if (priv->_3945.shared_virt)
Stanislaw Gruszkaf36d04a2010-02-10 05:07:45 -0800357 dma_free_coherent(&priv->pci_dev->dev,
358 sizeof(struct iwl3945_shared),
Johannes Bergee525d12010-01-21 06:09:28 -0800359 priv->_3945.shared_virt,
360 priv->_3945.shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700361}
362
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800363static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200364 struct ieee80211_tx_info *info,
Johannes Bergc2acea82009-07-24 11:13:05 -0700365 struct iwl_device_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700366 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800367 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700368{
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700369 struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerc587de02009-06-03 11:44:07 -0700370 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700371
372 switch (keyinfo->alg) {
373 case ALG_CCMP:
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700374 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
375 memcpy(tx_cmd->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800376 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700377 break;
378
379 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700380 break;
381
382 case ALG_WEP:
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700383 tx_cmd->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200384 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700385
386 if (keyinfo->keylen == 13)
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700387 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700388
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700389 memcpy(&tx_cmd->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700390
Tomas Winklere1623442009-01-27 14:27:56 -0800391 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200392 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700393 break;
394
Zhu Yib481de92007-09-25 17:54:57 -0700395 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800396 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700397 break;
398 }
399}
400
401/*
402 * handle build REPLY_TX command notification.
403 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800404static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Johannes Bergc2acea82009-07-24 11:13:05 -0700405 struct iwl_device_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200406 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800407 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700408{
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700409 struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
410 __le32 tx_flags = tx_cmd->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700411 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700412
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700413 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200414 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700415 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700416 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700417 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700418 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700419 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
420 tx_flags |= TX_CMD_FLG_TSF_MSK;
421 } else {
422 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
423 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
424 }
425
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700426 tx_cmd->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700427 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700428 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
429
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700430 if (ieee80211_is_data_qos(fc)) {
431 u8 *qc = ieee80211_get_qos_ctl(hdr);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700432 tx_cmd->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700433 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800434 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700435 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800436 }
Zhu Yib481de92007-09-25 17:54:57 -0700437
Abhijeet Kolekar37dc70f2009-10-09 13:20:30 -0700438 priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700439
440 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
441 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
442
443 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700444 if (ieee80211_is_mgmt(fc)) {
445 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700446 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700447 else
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700448 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700449 } else {
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700450 tx_cmd->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700451 }
Zhu Yib481de92007-09-25 17:54:57 -0700452
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700453 tx_cmd->driver_txop = 0;
454 tx_cmd->tx_flags = tx_flags;
455 tx_cmd->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700456}
457
Zhu Yib481de92007-09-25 17:54:57 -0700458/*
459 * start REPLY_TX command process
460 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800461static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700462{
463 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200464 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700465 struct iwl3945_tx_cmd *tx_cmd;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800466 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800467 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700468 struct iwl_device_cmd *out_cmd;
469 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700470 dma_addr_t phys_addr;
471 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800472 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700473 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800474 u8 id;
475 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700476 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800477 u8 tid = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700478 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700479 u8 wait_write_ptr = 0;
480 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -0700481
482 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800483 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800484 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700485 goto drop_unlock;
486 }
487
Johannes Berge039fa42008-05-15 12:55:29 +0200488 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800489 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700490 goto drop_unlock;
491 }
492
493 unicast = !is_multicast_ether_addr(hdr->addr1);
494 id = 0;
495
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700496 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700497
Samuel Ortizd08853a2009-01-23 13:45:17 -0800498#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700499 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800500 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700501 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800502 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700503 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800504 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700505#endif
506
Zhu Yib481de92007-09-25 17:54:57 -0700507 spin_unlock_irqrestore(&priv->lock, flags);
508
Harvey Harrison7294ec92008-07-15 18:43:59 -0700509 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800510
Johannes Berg2a87c262010-04-30 11:30:45 -0700511 /* Find index into station table for destination station */
Johannes Berg0af8bca2010-04-30 14:08:00 -0700512 sta_id = iwl_sta_id_or_broadcast(priv, info->control.sta);
Zhu Yib481de92007-09-25 17:54:57 -0700513 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800514 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700515 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700516 goto drop;
517 }
518
Tomas Winklere1623442009-01-27 14:27:56 -0800519 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700520
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700521 if (ieee80211_is_data_qos(fc)) {
Johannes Bergf862a232010-05-03 01:20:52 -0700522 u8 *qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700523 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700524 if (unlikely(tid >= MAX_TID_COUNT))
525 goto drop;
Zhu Yib481de92007-09-25 17:54:57 -0700526 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800527
528 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800529 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700530 q = &txq->q;
531
Zhu Yidc57a302009-12-14 14:12:12 -0800532 if ((iwl_queue_space(q) < q->high_mark))
533 goto drop;
534
Zhu Yib481de92007-09-25 17:54:57 -0700535 spin_lock_irqsave(&priv->lock, flags);
536
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800537 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700538
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800539 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800540 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800541 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800542
543 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800544 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700545 out_meta = &txq->meta[idx];
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700546 tx_cmd = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700547 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700548 memset(tx_cmd, 0, sizeof(*tx_cmd));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800549
550 /*
551 * Set up the Tx-command (not MAC!) header.
552 * Store the chosen Tx queue and TFD index within the sequence field;
553 * after Tx, uCode's Tx response will return this value so driver can
554 * locate the frame within the tx queue and do post-tx processing.
555 */
Zhu Yib481de92007-09-25 17:54:57 -0700556 out_cmd->hdr.cmd = REPLY_TX;
557 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800558 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800559
560 /* Copy MAC header from skb into command buffer */
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700561 memcpy(tx_cmd->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700562
Reinette Chatredf833b12009-04-21 10:55:48 -0700563
564 if (info->control.hw_key)
565 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
566
567 /* TODO need this for burst mode later on */
568 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
569
570 /* set is_hcca to 0; it probably will never be implemented */
571 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
572
573 /* Total # bytes to be transmitted */
574 len = (u16)skb->len;
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700575 tx_cmd->len = cpu_to_le16(len);
Reinette Chatredf833b12009-04-21 10:55:48 -0700576
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700577 iwl_dbg_log_tx_data_frame(priv, len, hdr);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700578 iwl_update_stats(priv, true, fc, len);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700579 tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
580 tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Reinette Chatredf833b12009-04-21 10:55:48 -0700581
582 if (!ieee80211_has_morefrags(hdr->frame_control)) {
583 txq->need_update = 1;
Reinette Chatredf833b12009-04-21 10:55:48 -0700584 } else {
585 wait_write_ptr = 1;
586 txq->need_update = 0;
587 }
588
Frans Pop91dd6c22010-03-24 14:19:58 -0700589 IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
Reinette Chatredf833b12009-04-21 10:55:48 -0700590 le16_to_cpu(out_cmd->hdr.sequence));
Frans Pop91dd6c22010-03-24 14:19:58 -0700591 IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700592 iwl_print_hex_dump(priv, IWL_DL_TX, tx_cmd, sizeof(*tx_cmd));
593 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700594 ieee80211_hdrlen(fc));
595
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800596 /*
597 * Use the first empty entry in this queue's command buffer array
598 * to contain the Tx command and MAC header concatenated together
599 * (payload data will be in another buffer).
600 * Size of this varies, due to varying MAC header length.
601 * If end is not dword aligned, we'll have 2 extra bytes at the end
602 * of the MAC header (device reads on dword boundaries).
603 * We'll tell device about this padding later.
604 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800605 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800606 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700607
608 len_org = len;
609 len = (len + 3) & ~3;
610
611 if (len_org != len)
612 len_org = 1;
613 else
614 len_org = 0;
615
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800616 /* Physical address of this Tx command's header (not MAC header!),
617 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700618 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
619 len, PCI_DMA_TODEVICE);
620 /* we do not map meta data ... so we can safely access address to
621 * provide to unmap command*/
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900622 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
623 dma_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700624
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800625 /* Add buffer containing Tx command and MAC(!) header to TFD's
626 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800627 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
628 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700629
Zhu Yib481de92007-09-25 17:54:57 -0700630
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800631 /* Set up TFD's 2nd entry to point directly to remainder of skb,
632 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700633 len = skb->len - hdr_len;
634 if (len) {
635 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
636 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800637 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
638 phys_addr, len,
639 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700640 }
641
Zhu Yib481de92007-09-25 17:54:57 -0700642
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800643 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800644 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800645 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700646 spin_unlock_irqrestore(&priv->lock, flags);
647
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800648 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700649 && priv->mac80211_registered) {
650 if (wait_write_ptr) {
651 spin_lock_irqsave(&priv->lock, flags);
652 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800653 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700654 spin_unlock_irqrestore(&priv->lock, flags);
655 }
656
Johannes Berge4e72fb2009-03-23 17:28:42 +0100657 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700658 }
659
660 return 0;
661
662drop_unlock:
663 spin_unlock_irqrestore(&priv->lock, flags);
664drop:
665 return -1;
666}
667
Zhu Yib481de92007-09-25 17:54:57 -0700668#define BEACON_TIME_MASK_LOW 0x00FFFFFF
669#define BEACON_TIME_MASK_HIGH 0xFF000000
670#define TIME_UNIT 1024
671
672/*
673 * extended beacon time format
674 * time in usec will be changed into a 32-bit value in 8:24 format
675 * the high 1 byte is the beacon counts
676 * the lower 3 bytes is the time in usec within one beacon interval
677 */
678
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800679static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700680{
681 u32 quot;
682 u32 rem;
683 u32 interval = beacon_interval * 1024;
684
685 if (!interval || !usec)
686 return 0;
687
688 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
689 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
690
691 return (quot << 24) + rem;
692}
693
694/* base is usually what we get from ucode with each received frame,
695 * the same as HW timer counter counting down
696 */
697
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800698static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700699{
700 u32 base_low = base & BEACON_TIME_MASK_LOW;
701 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
702 u32 interval = beacon_interval * TIME_UNIT;
703 u32 res = (base & BEACON_TIME_MASK_HIGH) +
704 (addon & BEACON_TIME_MASK_HIGH);
705
706 if (base_low > addon_low)
707 res += base_low - addon_low;
708 else if (base_low < addon_low) {
709 res += interval + base_low - addon_low;
710 res += (1 << 24);
711 } else
712 res += (1 << 24);
713
714 return cpu_to_le32(res);
715}
716
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800717static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700718 struct ieee80211_measurement_params *params,
719 u8 type)
720{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800721 struct iwl_spectrum_cmd spectrum;
Zhu Yi2f301222009-10-09 17:19:45 +0800722 struct iwl_rx_packet *pkt;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800723 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700724 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
725 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700726 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700727 };
728 u32 add_time = le64_to_cpu(params->start_time);
729 int rc;
730 int spectrum_resp_status;
731 int duration = le16_to_cpu(params->duration);
732
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800733 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700734 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800735 iwl3945_usecs_to_beacons(
Johannes Berge99f1682010-01-19 10:04:28 -0800736 le64_to_cpu(params->start_time) - priv->_3945.last_tsf,
Zhu Yib481de92007-09-25 17:54:57 -0700737 le16_to_cpu(priv->rxon_timing.beacon_interval));
738
739 memset(&spectrum, 0, sizeof(spectrum));
740
741 spectrum.channel_count = cpu_to_le16(1);
742 spectrum.flags =
743 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
744 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
745 cmd.len = sizeof(spectrum);
746 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
747
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800748 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700749 spectrum.start_time =
Johannes Berge99f1682010-01-19 10:04:28 -0800750 iwl3945_add_beacon_time(priv->_3945.last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700751 add_time,
752 le16_to_cpu(priv->rxon_timing.beacon_interval));
753 else
754 spectrum.start_time = 0;
755
756 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
757 spectrum.channels[0].channel = params->channel;
758 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800759 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700760 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
761 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
762
Samuel Ortiz518099a2009-01-19 15:30:27 -0800763 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700764 if (rc)
765 return rc;
766
Zhu Yi2f301222009-10-09 17:19:45 +0800767 pkt = (struct iwl_rx_packet *)cmd.reply_page;
768 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800769 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700770 rc = -EIO;
771 }
772
Zhu Yi2f301222009-10-09 17:19:45 +0800773 spectrum_resp_status = le16_to_cpu(pkt->u.spectrum.status);
Zhu Yib481de92007-09-25 17:54:57 -0700774 switch (spectrum_resp_status) {
775 case 0: /* Command will be handled */
Zhu Yi2f301222009-10-09 17:19:45 +0800776 if (pkt->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800777 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800778 pkt->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700779 priv->measurement_status &= ~MEASUREMENT_READY;
780 }
781 priv->measurement_status |= MEASUREMENT_ACTIVE;
782 rc = 0;
783 break;
784
785 case 1: /* Command will not be handled */
786 rc = -EAGAIN;
787 break;
788 }
789
Zhu Yi64a76b52009-12-10 14:37:21 -0800790 iwl_free_pages(priv, cmd.reply_page);
Zhu Yib481de92007-09-25 17:54:57 -0700791
792 return rc;
793}
Zhu Yib481de92007-09-25 17:54:57 -0700794
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800795static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800796 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700797{
Zhu Yi2f301222009-10-09 17:19:45 +0800798 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800799 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700800 struct delayed_work *pwork;
801
802 palive = &pkt->u.alive_frame;
803
Tomas Winklere1623442009-01-27 14:27:56 -0800804 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700805 "0x%01X 0x%01X\n",
806 palive->is_valid, palive->ver_type,
807 palive->ver_subtype);
808
809 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800810 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800811 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
812 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700813 pwork = &priv->init_alive_start;
814 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800815 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700816 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800817 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700818 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800819 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700820 }
821
822 /* We delay the ALIVE response by 5ms to
823 * give the HW RF Kill time to activate... */
824 if (palive->is_valid == UCODE_VALID_OK)
825 queue_delayed_work(priv->workqueue, pwork,
826 msecs_to_jiffies(5));
827 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800828 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700829}
830
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800831static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800832 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700833{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100834#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800835 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Helmut Schaac7e035a2009-01-19 13:02:15 +0100836#endif
Zhu Yib481de92007-09-25 17:54:57 -0700837
Tomas Winklere1623442009-01-27 14:27:56 -0800838 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700839}
840
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800841static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700842{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800843 struct iwl_priv *priv =
844 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700845 struct sk_buff *beacon;
846
847 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200848 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700849
850 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800851 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700852 return;
853 }
854
855 mutex_lock(&priv->mutex);
856 /* new beacon skb is allocated every time; dispose previous.*/
857 if (priv->ibss_beacon)
858 dev_kfree_skb(priv->ibss_beacon);
859
860 priv->ibss_beacon = beacon;
861 mutex_unlock(&priv->mutex);
862
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800863 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700864}
865
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800866static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800867 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700868{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800869#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800870 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800871 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700872 u8 rate = beacon->beacon_notify_hdr.rate;
873
Tomas Winklere1623442009-01-27 14:27:56 -0800874 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700875 "tsf %d %d rate %d\n",
876 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
877 beacon->beacon_notify_hdr.failure_frame,
878 le32_to_cpu(beacon->ibss_mgr_status),
879 le32_to_cpu(beacon->high_tsf),
880 le32_to_cpu(beacon->low_tsf), rate);
881#endif
882
Johannes Berg05c914f2008-09-11 00:01:58 +0200883 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700884 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
885 queue_work(priv->workqueue, &priv->beacon_update);
886}
887
Zhu Yib481de92007-09-25 17:54:57 -0700888/* Handle notification from uCode that card's power state is changing
889 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800890static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800891 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700892{
Zhu Yi2f301222009-10-09 17:19:45 +0800893 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700894 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
895 unsigned long status = priv->status;
896
Reinette Chatre4c423a22009-07-17 09:30:26 -0700897 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700898 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
899 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
900
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800901 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700902 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
903
904 if (flags & HW_CARD_DISABLED)
905 set_bit(STATUS_RF_KILL_HW, &priv->status);
906 else
907 clear_bit(STATUS_RF_KILL_HW, &priv->status);
908
909
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800910 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700911
912 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200913 test_bit(STATUS_RF_KILL_HW, &priv->status)))
914 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
915 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700916 else
917 wake_up_interruptible(&priv->wait_command_queue);
918}
919
920/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800921 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700922 *
923 * Setup the RX handlers for each of the reply types sent from the uCode
924 * to the host.
925 *
926 * This function chains into the hardware specific files for them to setup
927 * any hardware specific handlers as well.
928 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800929static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700930{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800931 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
932 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800933 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800934 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800935 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
936 iwl_rx_spectrum_measure_notif;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800937 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700938 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800939 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800940 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700941
Ben Cahill9fbab512007-11-29 11:09:47 +0800942 /*
943 * The same handler is used for both the REPLY to a discrete
944 * statistics request from the host as well as for the periodic
945 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700946 */
Abhijeet Kolekar17f36fc2010-04-16 10:03:54 -0700947 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_reply_statistics;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800948 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700949
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800950 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800951 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700952
Ben Cahill9fbab512007-11-29 11:09:47 +0800953 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800954 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700955}
956
Zhu Yib481de92007-09-25 17:54:57 -0700957/************************** RX-FUNCTIONS ****************************/
958/*
959 * Rx theory of operation
960 *
961 * The host allocates 32 DMA target addresses and passes the host address
962 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
963 * 0 to 31
964 *
965 * Rx Queue Indexes
966 * The host/firmware share two index registers for managing the Rx buffers.
967 *
968 * The READ index maps to the first position that the firmware may be writing
969 * to -- the driver can read up to (but not including) this position and get
970 * good data.
971 * The READ index is managed by the firmware once the card is enabled.
972 *
973 * The WRITE index maps to the last position the driver has read from -- the
974 * position preceding WRITE is the last slot the firmware can place a packet.
975 *
976 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
977 * WRITE = READ.
978 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800979 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -0700980 * INDEX position, and WRITE to the last (READ - 1 wrapped)
981 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800982 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -0700983 * and fire the RX interrupt. The driver can then query the READ index and
984 * process as many packets as possible, moving the WRITE index forward as it
985 * resets the Rx queue buffers with new memory.
986 *
987 * The management in the driver is as follows:
988 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
989 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +0800990 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800991 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -0700992 * iwl->rxq is replenished and the READ INDEX is updated (updating the
993 * 'processed' and 'read' driver indexes as well)
994 * + A received packet is processed and handed to the kernel network stack,
995 * detached from the iwl->rxq. The driver 'processed' index is updated.
996 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
997 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
998 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
999 * were enough free buffers and RX_STALLED is set it is cleared.
1000 *
1001 *
1002 * Driver sequence:
1003 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001004 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001005 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001006 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001007 * queue, updates firmware pointers, and updates
1008 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001009 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001010 *
1011 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001012 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001013 * READ INDEX, detaching the SKB from the pool.
1014 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001015 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001016 * slots.
1017 * ...
1018 *
1019 */
1020
1021/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001022 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001023 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001024static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001025 dma_addr_t dma_addr)
1026{
1027 return cpu_to_le32((u32)dma_addr);
1028}
1029
1030/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001031 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001032 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001033 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001034 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001035 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001036 *
1037 * This moves the 'write' index forward to catch up with 'processed', and
1038 * also updates the memory address in the firmware to reference the new
1039 * target buffer.
1040 */
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001041static void iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001042{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001043 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001044 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001045 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001046 unsigned long flags;
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001047 int write;
Zhu Yib481de92007-09-25 17:54:57 -07001048
1049 spin_lock_irqsave(&rxq->lock, flags);
1050 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001051 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001052 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001053 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001054 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001055 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001056
1057 /* Point to Rx buffer via next RBD in circular buffer */
Zhu Yi2f301222009-10-09 17:19:45 +08001058 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->page_dma);
Zhu Yib481de92007-09-25 17:54:57 -07001059 rxq->queue[rxq->write] = rxb;
1060 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1061 rxq->free_count--;
1062 }
1063 spin_unlock_irqrestore(&rxq->lock, flags);
1064 /* If the pre-allocated buffer pool is dropping low, schedule to
1065 * refill it */
1066 if (rxq->free_count <= RX_LOW_WATERMARK)
1067 queue_work(priv->workqueue, &priv->rx_replenish);
1068
1069
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001070 /* If we've added more space for the firmware to place data, tell it.
1071 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001072 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001073 || (abs(rxq->write - rxq->read) > 7)) {
1074 spin_lock_irqsave(&rxq->lock, flags);
1075 rxq->need_update = 1;
1076 spin_unlock_irqrestore(&rxq->lock, flags);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001077 iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001078 }
Zhu Yib481de92007-09-25 17:54:57 -07001079}
1080
1081/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001082 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001083 *
1084 * When moving to rx_free an SKB is allocated for the slot.
1085 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001086 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001087 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001088 */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001089static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001090{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001091 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001092 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001093 struct iwl_rx_mem_buffer *rxb;
Zhu Yi2f301222009-10-09 17:19:45 +08001094 struct page *page;
Zhu Yib481de92007-09-25 17:54:57 -07001095 unsigned long flags;
Zhu Yi29b1b262009-10-23 13:42:25 -07001096 gfp_t gfp_mask = priority;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001097
1098 while (1) {
1099 spin_lock_irqsave(&rxq->lock, flags);
1100
1101 if (list_empty(&rxq->rx_used)) {
1102 spin_unlock_irqrestore(&rxq->lock, flags);
1103 return;
1104 }
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001105 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001106
Reinette Chatref82a9242009-09-17 10:43:56 -07001107 if (rxq->free_count > RX_LOW_WATERMARK)
Zhu Yi29b1b262009-10-23 13:42:25 -07001108 gfp_mask |= __GFP_NOWARN;
Zhu Yi2f301222009-10-09 17:19:45 +08001109
1110 if (priv->hw_params.rx_page_order > 0)
Zhu Yi29b1b262009-10-23 13:42:25 -07001111 gfp_mask |= __GFP_COMP;
Zhu Yi2f301222009-10-09 17:19:45 +08001112
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001113 /* Alloc a new receive buffer */
Zhu Yi29b1b262009-10-23 13:42:25 -07001114 page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order);
Zhu Yi2f301222009-10-09 17:19:45 +08001115 if (!page) {
Zhu Yib481de92007-09-25 17:54:57 -07001116 if (net_ratelimit())
Reinette Chatref82a9242009-09-17 10:43:56 -07001117 IWL_DEBUG_INFO(priv, "Failed to allocate SKB buffer.\n");
1118 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
1119 net_ratelimit())
1120 IWL_CRIT(priv, "Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n",
1121 priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL",
1122 rxq->free_count);
Zhu Yib481de92007-09-25 17:54:57 -07001123 /* We don't reschedule replenish work here -- we will
1124 * call the restock method and if it still needs
1125 * more buffers it will schedule replenish */
1126 break;
1127 }
Zhu Yi12342c42007-12-20 11:27:32 +08001128
Reinette Chatrede0bd502009-09-11 10:38:12 -07001129 spin_lock_irqsave(&rxq->lock, flags);
1130 if (list_empty(&rxq->rx_used)) {
1131 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001132 __free_pages(page, priv->hw_params.rx_page_order);
Reinette Chatrede0bd502009-09-11 10:38:12 -07001133 return;
1134 }
1135 element = rxq->rx_used.next;
1136 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
1137 list_del(element);
1138 spin_unlock_irqrestore(&rxq->lock, flags);
1139
Zhu Yi2f301222009-10-09 17:19:45 +08001140 rxb->page = page;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001141 /* Get physical address of RB/SKB */
Zhu Yi2f301222009-10-09 17:19:45 +08001142 rxb->page_dma = pci_map_page(priv->pci_dev, page, 0,
1143 PAGE_SIZE << priv->hw_params.rx_page_order,
1144 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001145
1146 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001147
Zhu Yib481de92007-09-25 17:54:57 -07001148 list_add_tail(&rxb->list, &rxq->rx_free);
1149 rxq->free_count++;
Zhu Yi2f301222009-10-09 17:19:45 +08001150 priv->alloc_rxb_page++;
1151
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001152 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001153 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001154}
1155
Reinette Chatredf833b12009-04-21 10:55:48 -07001156void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1157{
1158 unsigned long flags;
1159 int i;
1160 spin_lock_irqsave(&rxq->lock, flags);
1161 INIT_LIST_HEAD(&rxq->rx_free);
1162 INIT_LIST_HEAD(&rxq->rx_used);
1163 /* Fill the rx_used queue with _all_ of the Rx buffers */
1164 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1165 /* In the reset function, these buffers may have been allocated
1166 * to an SKB, so we need to unmap and free potential storage */
Zhu Yi2f301222009-10-09 17:19:45 +08001167 if (rxq->pool[i].page != NULL) {
1168 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1169 PAGE_SIZE << priv->hw_params.rx_page_order,
1170 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001171 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001172 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001173 }
1174 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1175 }
1176
1177 /* Set us so that we have processed and used all buffers, but have
1178 * not restocked the Rx queue with fresh buffers */
1179 rxq->read = rxq->write = 0;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001180 rxq->write_actual = 0;
Zhu Yi2f301222009-10-09 17:19:45 +08001181 rxq->free_count = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001182 spin_unlock_irqrestore(&rxq->lock, flags);
1183}
Reinette Chatredf833b12009-04-21 10:55:48 -07001184
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001185void iwl3945_rx_replenish(void *data)
1186{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001187 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001188 unsigned long flags;
1189
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001190 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001191
1192 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001193 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001194 spin_unlock_irqrestore(&priv->lock, flags);
1195}
1196
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001197static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1198{
1199 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1200
1201 iwl3945_rx_queue_restock(priv);
1202}
1203
1204
Reinette Chatredf833b12009-04-21 10:55:48 -07001205/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1206 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1207 * This free routine walks the list of POOL entries and if SKB is set to
1208 * non NULL it is unmapped and freed
1209 */
1210static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1211{
1212 int i;
1213 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
Zhu Yi2f301222009-10-09 17:19:45 +08001214 if (rxq->pool[i].page != NULL) {
1215 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1216 PAGE_SIZE << priv->hw_params.rx_page_order,
1217 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001218 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001219 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001220 }
1221 }
1222
Stanislaw Gruszkaf36d04a2010-02-10 05:07:45 -08001223 dma_free_coherent(&priv->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1224 rxq->dma_addr);
1225 dma_free_coherent(&priv->pci_dev->dev, sizeof(struct iwl_rb_status),
1226 rxq->rb_stts, rxq->rb_stts_dma);
Reinette Chatredf833b12009-04-21 10:55:48 -07001227 rxq->bd = NULL;
1228 rxq->rb_stts = NULL;
1229}
Reinette Chatredf833b12009-04-21 10:55:48 -07001230
1231
Zhu Yib481de92007-09-25 17:54:57 -07001232/* Convert linear signal-to-noise ratio into dB */
1233static u8 ratio2dB[100] = {
1234/* 0 1 2 3 4 5 6 7 8 9 */
1235 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1236 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1237 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1238 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1239 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1240 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1241 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1242 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1243 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1244 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1245};
1246
1247/* Calculates a relative dB value from a ratio of linear
1248 * (i.e. not dB) signal levels.
1249 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001250int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001251{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001252 /* 1000:1 or higher just report as 60 dB */
1253 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001254 return 60;
1255
Adrian Bunk221c80c2008-02-02 23:19:01 +02001256 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001257 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001258 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001259 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001260
1261 /* We shouldn't see this */
1262 if (sig_ratio < 1)
1263 return 0;
1264
1265 /* Use table for ratios 1:1 - 99:1 */
1266 return (int)ratio2dB[sig_ratio];
1267}
1268
Zhu Yib481de92007-09-25 17:54:57 -07001269/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001270 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001271 *
1272 * Uses the priv->rx_handlers callback function array to invoke
1273 * the appropriate handlers, including command responses,
1274 * frame-received notifications, and other notifications.
1275 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001276static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001277{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001278 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001279 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001280 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001281 u32 r, i;
1282 int reclaim;
1283 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001284 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001285 u32 count = 8;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001286 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001287
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001288 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1289 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001290 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001291 i = rxq->read;
1292
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001293 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001294 total_empty = r - rxq->write_actual;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001295 if (total_empty < 0)
1296 total_empty += RX_QUEUE_SIZE;
1297
1298 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001299 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001300 /* Rx interrupt, but nothing sent from uCode */
1301 if (i == r)
Reinette Chatreaf472a952009-08-28 09:58:50 -07001302 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001303
1304 while (i != r) {
1305 rxb = rxq->queue[i];
1306
Ben Cahill9fbab512007-11-29 11:09:47 +08001307 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001308 * then a bug has been introduced in the queue refilling
1309 * routines -- catch it here */
1310 BUG_ON(rxb == NULL);
1311
1312 rxq->queue[i] = NULL;
1313
Zhu Yi2f301222009-10-09 17:19:45 +08001314 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1315 PAGE_SIZE << priv->hw_params.rx_page_order,
1316 PCI_DMA_FROMDEVICE);
1317 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001318
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001319 trace_iwlwifi_dev_rx(priv, pkt,
1320 le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK);
1321
Zhu Yib481de92007-09-25 17:54:57 -07001322 /* Reclaim a command buffer only if this packet is a response
1323 * to a (driver-originated) command.
1324 * If the packet (e.g. Rx frame) originated from uCode,
1325 * there is no command buffer to reclaim.
1326 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1327 * but apparently a few don't get set; catch them here. */
1328 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1329 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1330 (pkt->hdr.cmd != REPLY_TX);
1331
1332 /* Based on type of command response or notification,
1333 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001334 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001335 if (priv->rx_handlers[pkt->hdr.cmd]) {
Reinette Chatreaf472a952009-08-28 09:58:50 -07001336 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r, i,
Zhu Yib481de92007-09-25 17:54:57 -07001337 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001338 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001339 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001340 } else {
1341 /* No handling needed */
Zhu Yi2f301222009-10-09 17:19:45 +08001342 IWL_DEBUG_RX(priv,
1343 "r %d i %d No handler needed for %s, 0x%02x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001344 r, i, get_cmd_string(pkt->hdr.cmd),
1345 pkt->hdr.cmd);
1346 }
1347
Zhu Yi29b1b262009-10-23 13:42:25 -07001348 /*
1349 * XXX: After here, we should always check rxb->page
1350 * against NULL before touching it or its virtual
1351 * memory (pkt). Because some rx_handler might have
1352 * already taken or freed the pages.
1353 */
1354
Zhu Yib481de92007-09-25 17:54:57 -07001355 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001356 /* Invoke any callbacks, transfer the buffer to caller,
1357 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001358 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001359 if (rxb->page)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001360 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001361 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001362 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001363 }
1364
Zhu Yi73005152009-10-23 13:42:32 -07001365 /* Reuse the page if possible. For notification packets and
1366 * SKBs that fail to Rx correctly, add them back into the
1367 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001368 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001369 if (rxb->page != NULL) {
1370 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1371 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1372 PCI_DMA_FROMDEVICE);
1373 list_add_tail(&rxb->list, &rxq->rx_free);
1374 rxq->free_count++;
1375 } else
1376 list_add_tail(&rxb->list, &rxq->rx_used);
1377
Zhu Yib481de92007-09-25 17:54:57 -07001378 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001379
Zhu Yib481de92007-09-25 17:54:57 -07001380 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001381 /* If there are a lot of unused frames,
1382 * restock the Rx queue so ucode won't assert. */
1383 if (fill_rx) {
1384 count++;
1385 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001386 rxq->read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001387 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001388 count = 0;
1389 }
1390 }
Zhu Yib481de92007-09-25 17:54:57 -07001391 }
1392
1393 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001394 rxq->read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001395 if (fill_rx)
1396 iwl3945_rx_replenish_now(priv);
1397 else
1398 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001399}
1400
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001401/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001402static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001403{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001404 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001405 synchronize_irq(priv->pci_dev->irq);
1406 tasklet_kill(&priv->irq_tasklet);
1407}
1408
Zhu Yib481de92007-09-25 17:54:57 -07001409static const char *desc_lookup(int i)
1410{
1411 switch (i) {
1412 case 1:
1413 return "FAIL";
1414 case 2:
1415 return "BAD_PARAM";
1416 case 3:
1417 return "BAD_CHECKSUM";
1418 case 4:
1419 return "NMI_INTERRUPT";
1420 case 5:
1421 return "SYSASSERT";
1422 case 6:
1423 return "FATAL_ERROR";
1424 }
1425
1426 return "UNKNOWN";
1427}
1428
1429#define ERROR_START_OFFSET (1 * sizeof(u32))
1430#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1431
Reinette Chatreb7a79402009-09-25 14:24:23 -07001432void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001433{
1434 u32 i;
1435 u32 desc, time, count, base, data1;
1436 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001437
1438 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1439
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001440 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001441 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001442 return;
1443 }
1444
Zhu Yib481de92007-09-25 17:54:57 -07001445
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001446 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001447
1448 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001449 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1450 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1451 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001452 }
1453
Winkler, Tomas15b16872008-12-19 10:37:33 +08001454 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001455 "ilink1 nmiPC Line\n");
1456 for (i = ERROR_START_OFFSET;
1457 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1458 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001459 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001460 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001461 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001462 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001463 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001464 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001465 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001466 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001467 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001468 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001469 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001470 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001471 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001472
Winkler, Tomas15b16872008-12-19 10:37:33 +08001473 IWL_ERR(priv,
1474 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1475 desc_lookup(desc), desc, time, blink1, blink2,
1476 ilink1, ilink2, data1);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001477 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, 0,
1478 0, blink1, blink2, ilink1, ilink2);
Zhu Yib481de92007-09-25 17:54:57 -07001479 }
Zhu Yib481de92007-09-25 17:54:57 -07001480}
1481
Ben Cahillf58177b2007-11-29 11:09:43 +08001482#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001483
1484/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001485 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001486 *
Zhu Yib481de92007-09-25 17:54:57 -07001487 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001488static int iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
1489 u32 num_events, u32 mode,
1490 int pos, char **buf, size_t bufsz)
Zhu Yib481de92007-09-25 17:54:57 -07001491{
1492 u32 i;
1493 u32 base; /* SRAM byte address of event log header */
1494 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1495 u32 ptr; /* SRAM byte address of log data */
1496 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08001497 unsigned long reg_flags;
Zhu Yib481de92007-09-25 17:54:57 -07001498
1499 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001500 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001501
1502 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1503
1504 if (mode == 0)
1505 event_size = 2 * sizeof(u32);
1506 else
1507 event_size = 3 * sizeof(u32);
1508
1509 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1510
Ben Cahille5854472009-11-06 14:52:58 -08001511 /* Make sure device is powered up for SRAM reads */
1512 spin_lock_irqsave(&priv->reg_lock, reg_flags);
1513 iwl_grab_nic_access(priv);
1514
1515 /* Set starting address; reads will auto-increment */
1516 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1517 rmb();
1518
Zhu Yib481de92007-09-25 17:54:57 -07001519 /* "time" is actually "data" for mode 0 (no timestamp).
1520 * place event id # at far right for easier visual parsing. */
1521 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08001522 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1523 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001524 if (mode == 0) {
1525 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001526 if (bufsz) {
1527 pos += scnprintf(*buf + pos, bufsz - pos,
1528 "0x%08x:%04u\n",
1529 time, ev);
1530 } else {
1531 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1532 trace_iwlwifi_dev_ucode_event(priv, 0,
1533 time, ev);
1534 }
Winkler, Tomas15b16872008-12-19 10:37:33 +08001535 } else {
Ben Cahille5854472009-11-06 14:52:58 -08001536 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001537 if (bufsz) {
1538 pos += scnprintf(*buf + pos, bufsz - pos,
1539 "%010u:0x%08x:%04u\n",
1540 time, data, ev);
1541 } else {
1542 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n",
1543 time, data, ev);
1544 trace_iwlwifi_dev_ucode_event(priv, time,
1545 data, ev);
1546 }
Zhu Yib481de92007-09-25 17:54:57 -07001547 }
1548 }
Ben Cahille5854472009-11-06 14:52:58 -08001549
1550 /* Allow device to power down */
1551 iwl_release_nic_access(priv);
1552 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001553 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001554}
1555
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001556/**
1557 * iwl3945_print_last_event_logs - Dump the newest # of event log to syslog
1558 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001559static int iwl3945_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001560 u32 num_wraps, u32 next_entry,
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001561 u32 size, u32 mode,
1562 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001563{
1564 /*
1565 * display the newest DEFAULT_LOG_ENTRIES entries
1566 * i.e the entries just before the next ont that uCode would fill.
1567 */
1568 if (num_wraps) {
1569 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001570 pos = iwl3945_print_event_log(priv,
1571 capacity - (size - next_entry),
1572 size - next_entry, mode,
1573 pos, buf, bufsz);
1574 pos = iwl3945_print_event_log(priv, 0,
1575 next_entry, mode,
1576 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001577 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001578 pos = iwl3945_print_event_log(priv, next_entry - size,
1579 size, mode,
1580 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001581 } else {
1582 if (next_entry < size)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001583 pos = iwl3945_print_event_log(priv, 0,
1584 next_entry, mode,
1585 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001586 else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001587 pos = iwl3945_print_event_log(priv, next_entry - size,
1588 size, mode,
1589 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001590 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001591 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001592}
1593
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001594#define DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES (20)
1595
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001596int iwl3945_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
1597 char **buf, bool display)
Zhu Yib481de92007-09-25 17:54:57 -07001598{
Zhu Yib481de92007-09-25 17:54:57 -07001599 u32 base; /* SRAM byte address of event log header */
1600 u32 capacity; /* event log capacity in # entries */
1601 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1602 u32 num_wraps; /* # times uCode wrapped to top of log */
1603 u32 next_entry; /* index of next entry to be written by uCode */
1604 u32 size; /* # entries that we'll print */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001605 int pos = 0;
1606 size_t bufsz = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001607
1608 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001609 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001610 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001611 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001612 }
1613
Zhu Yib481de92007-09-25 17:54:57 -07001614 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001615 capacity = iwl_read_targ_mem(priv, base);
1616 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1617 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1618 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001619
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001620 if (capacity > priv->cfg->max_event_log_size) {
Ben Cahill84c40692009-11-06 14:52:57 -08001621 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001622 capacity, priv->cfg->max_event_log_size);
1623 capacity = priv->cfg->max_event_log_size;
Ben Cahill84c40692009-11-06 14:52:57 -08001624 }
1625
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001626 if (next_entry > priv->cfg->max_event_log_size) {
Ben Cahill84c40692009-11-06 14:52:57 -08001627 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001628 next_entry, priv->cfg->max_event_log_size);
1629 next_entry = priv->cfg->max_event_log_size;
Ben Cahill84c40692009-11-06 14:52:57 -08001630 }
1631
Zhu Yib481de92007-09-25 17:54:57 -07001632 size = num_wraps ? capacity : next_entry;
1633
1634 /* bail out if nothing in log */
1635 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001636 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001637 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001638 }
1639
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001640#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08001641 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001642 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1643 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1644#else
1645 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1646 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1647#endif
1648
1649 IWL_ERR(priv, "Start IWL Event Log Dump: display last %d count\n",
1650 size);
Zhu Yib481de92007-09-25 17:54:57 -07001651
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001652#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001653 if (display) {
1654 if (full_log)
1655 bufsz = capacity * 48;
1656 else
1657 bufsz = size * 48;
1658 *buf = kmalloc(bufsz, GFP_KERNEL);
1659 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001660 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001661 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001662 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
1663 /* if uCode has wrapped back to top of log,
1664 * start at the oldest entry,
1665 * i.e the next one that uCode would fill.
1666 */
1667 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001668 pos = iwl3945_print_event_log(priv, next_entry,
1669 capacity - next_entry, mode,
1670 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001671
1672 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001673 pos = iwl3945_print_event_log(priv, 0, next_entry, mode,
1674 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001675 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001676 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1677 next_entry, size, mode,
1678 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001679#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001680 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1681 next_entry, size, mode,
1682 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001683#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001684 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001685}
1686
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001687static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001688{
1689 u32 inta, handled = 0;
1690 u32 inta_fh;
1691 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001692#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001693 u32 inta_mask;
1694#endif
1695
1696 spin_lock_irqsave(&priv->lock, flags);
1697
1698 /* Ack/clear/reset pending uCode interrupts.
1699 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1700 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001701 inta = iwl_read32(priv, CSR_INT);
1702 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001703
1704 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1705 * Any new interrupts that happen after this, either while we're
1706 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001707 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1708 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001709
Samuel Ortizd08853a2009-01-23 13:45:17 -08001710#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001711 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001712 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001713 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001714 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001715 inta, inta_mask, inta_fh);
1716 }
1717#endif
1718
Zhu Yi2f301222009-10-09 17:19:45 +08001719 spin_unlock_irqrestore(&priv->lock, flags);
1720
Zhu Yib481de92007-09-25 17:54:57 -07001721 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1722 * atomic, make sure that inta covers all the interrupts that
1723 * we've discovered, even if FH interrupt came in just after
1724 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001725 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001726 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001727 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001728 inta |= CSR_INT_BIT_FH_TX;
1729
1730 /* Now service all interrupt bits discovered above. */
1731 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001732 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001733
1734 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001735 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001736
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001737 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001738 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001739
1740 handled |= CSR_INT_BIT_HW_ERR;
1741
Zhu Yib481de92007-09-25 17:54:57 -07001742 return;
1743 }
1744
Samuel Ortizd08853a2009-01-23 13:45:17 -08001745#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001746 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001747 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001748 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001749 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001750 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001751 priv->isr_stats.sch++;
1752 }
Zhu Yib481de92007-09-25 17:54:57 -07001753
1754 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001755 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001756 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001757 priv->isr_stats.alive++;
1758 }
Zhu Yib481de92007-09-25 17:54:57 -07001759 }
1760#endif
1761 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001762 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001763
Zhu Yib481de92007-09-25 17:54:57 -07001764 /* Error detected by uCode */
1765 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001766 IWL_ERR(priv, "Microcode SW error detected. "
1767 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001768 priv->isr_stats.sw++;
1769 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001770 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001771 handled |= CSR_INT_BIT_SW_ERR;
1772 }
1773
1774 /* uCode wakes up after power-down sleep */
1775 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001776 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001777 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001778 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1779 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1780 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1781 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1782 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1783 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001784
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001785 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001786 handled |= CSR_INT_BIT_WAKEUP;
1787 }
1788
1789 /* All uCode command responses, including Tx command responses,
1790 * Rx "responses" (frame-received notification), and other
1791 * notifications from uCode come through here*/
1792 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001793 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001794 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001795 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1796 }
1797
1798 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001799 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001800 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001801
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001802 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001803 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1804 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001805 handled |= CSR_INT_BIT_FH_TX;
1806 }
1807
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001808 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001809 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001810 priv->isr_stats.unhandled++;
1811 }
Zhu Yib481de92007-09-25 17:54:57 -07001812
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001813 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001814 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001815 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001816 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001817 }
1818
1819 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001820 /* only Re-enable if disabled by irq */
1821 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001822 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001823
Samuel Ortizd08853a2009-01-23 13:45:17 -08001824#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001825 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001826 inta = iwl_read32(priv, CSR_INT);
1827 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1828 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001829 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001830 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1831 }
1832#endif
Zhu Yib481de92007-09-25 17:54:57 -07001833}
1834
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001835static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001836 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001837 u8 is_active, u8 n_probes,
Johannes Berg1dda6d22010-04-29 04:43:06 -07001838 struct iwl3945_scan_channel *scan_ch,
1839 struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07001840{
Johannes Berg4e05c232009-06-19 13:52:44 -07001841 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001842 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001843 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001844 u16 passive_dwell = 0;
1845 u16 active_dwell = 0;
1846 int added, i;
1847
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001848 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001849 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001850 return 0;
1851
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001852 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
Johannes Berg1dda6d22010-04-29 04:43:06 -07001853 passive_dwell = iwl_get_passive_dwell_time(priv, band, vif);
Zhu Yib481de92007-09-25 17:54:57 -07001854
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001855 if (passive_dwell <= active_dwell)
1856 passive_dwell = active_dwell + 1;
1857
Johannes Berg4e05c232009-06-19 13:52:44 -07001858 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1859 chan = priv->scan_request->channels[i];
1860
1861 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001862 continue;
1863
Johannes Berg4e05c232009-06-19 13:52:44 -07001864 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001865
Samuel Ortize6148912009-01-23 13:45:15 -08001866 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001867 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001868 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001869 scan_ch->channel);
1870 continue;
1871 }
1872
Zhu Yib481de92007-09-25 17:54:57 -07001873 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1874 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001875 /* If passive , set up for auto-switch
1876 * and use long active_dwell time.
1877 */
1878 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001879 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001880 scan_ch->type = 0; /* passive */
1881 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1882 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1883 } else {
1884 scan_ch->type = 1; /* active */
1885 }
1886
1887 /* Set direct probe bits. These may be used both for active
1888 * scan channels (probes gets sent right away),
1889 * or for passive channels (probes get se sent only after
1890 * hearing clear Rx packet).*/
1891 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1892 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001893 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001894 } else {
1895 /* uCode v1 does not allow setting direct probe bits on
1896 * passive channel. */
1897 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001898 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001899 }
Zhu Yib481de92007-09-25 17:54:57 -07001900
Ben Cahill9fbab512007-11-29 11:09:47 +08001901 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001902 scan_ch->tpc.dsp_atten = 110;
1903 /* scan_pwr_info->tpc.dsp_atten; */
1904
1905 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001906 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001907 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1908 else {
1909 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1910 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001911 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001912 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001913 */
1914 }
1915
Tomas Winklere1623442009-01-27 14:27:56 -08001916 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001917 scan_ch->channel,
1918 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1919 (scan_ch->type & 1) ?
1920 active_dwell : passive_dwell);
1921
1922 scan_ch++;
1923 added++;
1924 }
1925
Frans Pop91dd6c22010-03-24 14:19:58 -07001926 IWL_DEBUG_SCAN(priv, "total channels to scan %d\n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001927 return added;
1928}
1929
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001930static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001931 struct ieee80211_rate *rates)
1932{
1933 int i;
1934
Dan Carpenter8e1a53c2010-03-28 14:55:00 +03001935 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001936 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1937 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1938 rates[i].hw_value_short = i;
1939 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001940 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001941 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001942 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001943 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001944 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001945 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001946 }
Zhu Yib481de92007-09-25 17:54:57 -07001947 }
1948}
1949
Zhu Yib481de92007-09-25 17:54:57 -07001950/******************************************************************************
1951 *
1952 * uCode download functions
1953 *
1954 ******************************************************************************/
1955
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001956static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001957{
Tomas Winkler98c92212008-01-14 17:46:20 -08001958 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1959 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1960 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1961 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1962 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1963 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001964}
1965
1966/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001967 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001968 * looking at all data.
1969 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001970static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001971{
1972 u32 val;
1973 u32 save_len = len;
1974 int rc = 0;
1975 u32 errcnt;
1976
Tomas Winklere1623442009-01-27 14:27:56 -08001977 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001978
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001979 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001980 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07001981
1982 errcnt = 0;
1983 for (; len > 0; len -= sizeof(u32), image++) {
1984 /* read data comes through single port, auto-incr addr */
1985 /* NOTE: Use the debugless read so we don't flood kernel log
1986 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001987 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001988 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001989 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001990 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1991 save_len - len, val, le32_to_cpu(*image));
1992 rc = -EIO;
1993 errcnt++;
1994 if (errcnt >= 20)
1995 break;
1996 }
1997 }
1998
Zhu Yib481de92007-09-25 17:54:57 -07001999
2000 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002001 IWL_DEBUG_INFO(priv,
2002 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002003
2004 return rc;
2005}
2006
2007
2008/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002009 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002010 * using sample data 100 bytes apart. If these sample points are good,
2011 * it's a pretty good bet that everything between them is good, too.
2012 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002013static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002014{
2015 u32 val;
2016 int rc = 0;
2017 u32 errcnt = 0;
2018 u32 i;
2019
Tomas Winklere1623442009-01-27 14:27:56 -08002020 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002021
Zhu Yib481de92007-09-25 17:54:57 -07002022 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2023 /* read data comes through single port, auto-incr addr */
2024 /* NOTE: Use the debugless read so we don't flood kernel log
2025 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002026 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002027 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002028 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002029 if (val != le32_to_cpu(*image)) {
2030#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002031 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002032 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2033 i, val, *image);
2034#endif
2035 rc = -EIO;
2036 errcnt++;
2037 if (errcnt >= 3)
2038 break;
2039 }
2040 }
2041
Zhu Yib481de92007-09-25 17:54:57 -07002042 return rc;
2043}
2044
2045
2046/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002047 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002048 * and verify its contents
2049 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002050static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002051{
2052 __le32 *image;
2053 u32 len;
2054 int rc = 0;
2055
2056 /* Try bootstrap */
2057 image = (__le32 *)priv->ucode_boot.v_addr;
2058 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002059 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002060 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002061 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002062 return 0;
2063 }
2064
2065 /* Try initialize */
2066 image = (__le32 *)priv->ucode_init.v_addr;
2067 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002068 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002069 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002070 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002071 return 0;
2072 }
2073
2074 /* Try runtime/protocol */
2075 image = (__le32 *)priv->ucode_code.v_addr;
2076 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002077 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002078 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002079 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002080 return 0;
2081 }
2082
Winkler, Tomas15b16872008-12-19 10:37:33 +08002083 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002084
Ben Cahill9fbab512007-11-29 11:09:47 +08002085 /* Since nothing seems to match, show first several data entries in
2086 * instruction SRAM, so maybe visual inspection will give a clue.
2087 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002088 image = (__le32 *)priv->ucode_boot.v_addr;
2089 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002090 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002091
2092 return rc;
2093}
2094
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002095static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002096{
2097 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002098 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002099}
2100
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002101#define IWL3945_UCODE_GET(item) \
2102static u32 iwl3945_ucode_get_##item(const struct iwl_ucode_header *ucode)\
2103{ \
2104 return le32_to_cpu(ucode->u.v1.item); \
2105}
2106
2107static u32 iwl3945_ucode_get_header_size(u32 api_ver)
2108{
Johannes Berg22adba22010-04-28 12:09:14 -07002109 return 24;
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002110}
2111
2112static u8 *iwl3945_ucode_get_data(const struct iwl_ucode_header *ucode)
2113{
2114 return (u8 *) ucode->u.v1.data;
2115}
2116
2117IWL3945_UCODE_GET(inst_size);
2118IWL3945_UCODE_GET(data_size);
2119IWL3945_UCODE_GET(init_size);
2120IWL3945_UCODE_GET(init_data_size);
2121IWL3945_UCODE_GET(boot_size);
2122
Zhu Yib481de92007-09-25 17:54:57 -07002123/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002124 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002125 *
2126 * Copy into buffers for card to fetch via bus-mastering
2127 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002128static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002129{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002130 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002131 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002132 const struct firmware *ucode_raw;
2133 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002134 const char *name_pre = priv->cfg->fw_name_pre;
2135 const unsigned int api_max = priv->cfg->ucode_api_max;
2136 const unsigned int api_min = priv->cfg->ucode_api_min;
2137 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002138 u8 *src;
2139 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002140 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002141
2142 /* Ask kernel firmware_class module to get the boot firmware off disk.
2143 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002144 for (index = api_max; index >= api_min; index--) {
2145 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2146 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2147 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002148 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002149 buf, ret);
2150 if (ret == -ENOENT)
2151 continue;
2152 else
2153 goto error;
2154 } else {
2155 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002156 IWL_ERR(priv, "Loaded firmware %s, "
2157 "which is deprecated. "
2158 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002159 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002160 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2161 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002162 buf, ucode_raw->size);
2163 break;
2164 }
Zhu Yib481de92007-09-25 17:54:57 -07002165 }
2166
Reinette Chatrea0987a82008-12-02 12:14:06 -08002167 if (ret < 0)
2168 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002169
2170 /* Make sure that we got at least our header! */
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002171 if (ucode_raw->size < iwl3945_ucode_get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002172 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002173 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002174 goto err_release;
2175 }
2176
2177 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002178 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002179
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002180 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002181 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002182 inst_size = iwl3945_ucode_get_inst_size(ucode);
2183 data_size = iwl3945_ucode_get_data_size(ucode);
2184 init_size = iwl3945_ucode_get_init_size(ucode);
2185 init_data_size = iwl3945_ucode_get_init_data_size(ucode);
2186 boot_size = iwl3945_ucode_get_boot_size(ucode);
2187 src = iwl3945_ucode_get_data(ucode);
Zhu Yib481de92007-09-25 17:54:57 -07002188
Reinette Chatrea0987a82008-12-02 12:14:06 -08002189 /* api_ver should match the api version forming part of the
2190 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002191 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002192
2193 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002194 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002195 "Driver supports v%u, firmware is v%u.\n",
2196 api_max, api_ver);
2197 priv->ucode_ver = 0;
2198 ret = -EINVAL;
2199 goto err_release;
2200 }
2201 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002202 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002203 "got %u. New firmware can be obtained "
2204 "from http://www.intellinuxwireless.org.\n",
2205 api_max, api_ver);
2206
Tomas Winkler978785a2008-12-19 10:37:31 +08002207 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2208 IWL_UCODE_MAJOR(priv->ucode_ver),
2209 IWL_UCODE_MINOR(priv->ucode_ver),
2210 IWL_UCODE_API(priv->ucode_ver),
2211 IWL_UCODE_SERIAL(priv->ucode_ver));
2212
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002213 snprintf(priv->hw->wiphy->fw_version,
2214 sizeof(priv->hw->wiphy->fw_version),
2215 "%u.%u.%u.%u",
2216 IWL_UCODE_MAJOR(priv->ucode_ver),
2217 IWL_UCODE_MINOR(priv->ucode_ver),
2218 IWL_UCODE_API(priv->ucode_ver),
2219 IWL_UCODE_SERIAL(priv->ucode_ver));
2220
Tomas Winklere1623442009-01-27 14:27:56 -08002221 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002222 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002223 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2224 inst_size);
2225 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2226 data_size);
2227 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2228 init_size);
2229 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2230 init_data_size);
2231 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2232 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002233
Reinette Chatrea0987a82008-12-02 12:14:06 -08002234
Zhu Yib481de92007-09-25 17:54:57 -07002235 /* Verify size of file vs. image size info in file's header */
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002236 if (ucode_raw->size != iwl3945_ucode_get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002237 inst_size + data_size + init_size +
2238 init_data_size + boot_size) {
2239
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002240 IWL_DEBUG_INFO(priv,
2241 "uCode file size %zd does not match expected size\n",
2242 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002243 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002244 goto err_release;
2245 }
2246
2247 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002248 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002249 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002250 inst_size);
2251 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002252 goto err_release;
2253 }
2254
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002255 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002256 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002257 data_size);
2258 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002259 goto err_release;
2260 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002261 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002262 IWL_DEBUG_INFO(priv,
2263 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002264 init_size);
2265 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002266 goto err_release;
2267 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002268 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002269 IWL_DEBUG_INFO(priv,
2270 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002271 init_data_size);
2272 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002273 goto err_release;
2274 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002275 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002276 IWL_DEBUG_INFO(priv,
2277 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002278 boot_size);
2279 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002280 goto err_release;
2281 }
2282
2283 /* Allocate ucode buffers for card's bus-master loading ... */
2284
2285 /* Runtime instructions and 2 copies of data:
2286 * 1) unmodified from disk
2287 * 2) backup cache for save/restore during power-downs */
2288 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002289 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002290
2291 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002292 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002293
2294 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002295 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002296
2297 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002298 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002299 goto err_pci_alloc;
2300
Tomas Winkler90e759d2007-11-29 11:09:41 +08002301 /* Initialization instructions and data */
2302 if (init_size && init_data_size) {
2303 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002304 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002305
2306 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002307 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002308
2309 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2310 goto err_pci_alloc;
2311 }
2312
2313 /* Bootstrap (instructions only, no data) */
2314 if (boot_size) {
2315 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002316 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002317
2318 if (!priv->ucode_boot.v_addr)
2319 goto err_pci_alloc;
2320 }
2321
Zhu Yib481de92007-09-25 17:54:57 -07002322 /* Copy images into buffers for card's bus-master reads ... */
2323
2324 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002325 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002326 IWL_DEBUG_INFO(priv,
2327 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002328 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002329 src += len;
2330
Tomas Winklere1623442009-01-27 14:27:56 -08002331 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002332 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2333
2334 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002335 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002336 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002337 IWL_DEBUG_INFO(priv,
2338 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002339 memcpy(priv->ucode_data.v_addr, src, len);
2340 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002341 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002342
2343 /* Initialization instructions (3rd block) */
2344 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002345 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002346 IWL_DEBUG_INFO(priv,
2347 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002348 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002349 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002350 }
2351
2352 /* Initialization data (4th block) */
2353 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002354 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002355 IWL_DEBUG_INFO(priv,
2356 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002357 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002358 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002359 }
2360
2361 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002362 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002363 IWL_DEBUG_INFO(priv,
2364 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002365 memcpy(priv->ucode_boot.v_addr, src, len);
2366
2367 /* We have our copies now, allow OS release its copies */
2368 release_firmware(ucode_raw);
2369 return 0;
2370
2371 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002372 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002373 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002374 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002375
2376 err_release:
2377 release_firmware(ucode_raw);
2378
2379 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002380 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002381}
2382
2383
2384/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002385 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002386 *
2387 * Tell initialization uCode where to find runtime uCode.
2388 *
2389 * BSM registers initially contain pointers to initialization uCode.
2390 * We need to replace them to load runtime uCode inst and data,
2391 * and to save runtime data when powering down.
2392 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002393static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002394{
2395 dma_addr_t pinst;
2396 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002397
2398 /* bits 31:0 for 3945 */
2399 pinst = priv->ucode_code.p_addr;
2400 pdata = priv->ucode_data_backup.p_addr;
2401
Zhu Yib481de92007-09-25 17:54:57 -07002402 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002403 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2404 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2405 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002406 priv->ucode_data.len);
2407
Tomas Winklera96a27f2008-10-23 23:48:56 -07002408 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002409 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002410 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002411 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2412
Tomas Winklere1623442009-01-27 14:27:56 -08002413 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002414
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002415 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002416}
2417
2418/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002419 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002420 *
2421 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2422 *
Zhu Yib481de92007-09-25 17:54:57 -07002423 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002424 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002425static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002426{
2427 /* Check alive response for "valid" sign from uCode */
2428 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2429 /* We had an error bringing up the hardware, so take it
2430 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002431 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002432 goto restart;
2433 }
2434
2435 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2436 * This is a paranoid check, because we would not have gotten the
2437 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002438 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002439 /* Runtime instruction load was bad;
2440 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002441 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002442 goto restart;
2443 }
2444
2445 /* Send pointers to protocol/runtime uCode image ... init code will
2446 * load and launch runtime uCode, which will send us another "Alive"
2447 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002448 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002449 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002450 /* Runtime instruction load won't happen;
2451 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002452 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002453 goto restart;
2454 }
2455 return;
2456
2457 restart:
2458 queue_work(priv->workqueue, &priv->restart);
2459}
2460
Zhu Yib481de92007-09-25 17:54:57 -07002461/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002462 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002463 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002464 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002465 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002466static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002467{
Zhu Yib481de92007-09-25 17:54:57 -07002468 int thermal_spin = 0;
2469 u32 rfkill;
2470
Tomas Winklere1623442009-01-27 14:27:56 -08002471 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002472
2473 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2474 /* We had an error bringing up the hardware, so take it
2475 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002476 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002477 goto restart;
2478 }
2479
2480 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2481 * This is a paranoid check, because we would not have gotten the
2482 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002483 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002484 /* Runtime instruction load was bad;
2485 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002486 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002487 goto restart;
2488 }
2489
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002490 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002491 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002492
2493 if (rfkill & 0x1) {
2494 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002495 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002496 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002497 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002498 thermal_spin++;
2499 udelay(10);
2500 }
2501
2502 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002503 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002504 thermal_spin * 10);
2505 } else
2506 set_bit(STATUS_RF_KILL_HW, &priv->status);
2507
Ben Cahill9fbab512007-11-29 11:09:47 +08002508 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002509 set_bit(STATUS_ALIVE, &priv->status);
2510
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002511 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2512 /* Enable timer to monitor the driver queues */
2513 mod_timer(&priv->monitor_recover,
2514 jiffies +
2515 msecs_to_jiffies(priv->cfg->monitor_recover_period));
2516 }
2517
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002518 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002519 return;
2520
Johannes Berg36d68252008-05-15 12:55:26 +02002521 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002522
Johannes Berg470ab2d2010-01-21 11:23:30 -08002523 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002524
Ben Cahill4d6ccbf2009-11-13 11:56:29 -08002525 iwl_power_update_mode(priv, true);
Zhu Yib481de92007-09-25 17:54:57 -07002526
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002527 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002528 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002529 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002530
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002531 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002532 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2533 } else {
2534 /* Initialize our rx_config data */
Johannes Berg1dda6d22010-04-29 04:43:06 -07002535 iwl_connection_init_rx_config(priv, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002536 }
2537
Ben Cahill9fbab512007-11-29 11:09:47 +08002538 /* Configure Bluetooth device coexistence support */
Johannes Berg65b52bd2010-04-13 01:04:31 -07002539 priv->cfg->ops->hcmd->send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002540
2541 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002542 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002543
Zhu Yib481de92007-09-25 17:54:57 -07002544 iwl3945_reg_txpower_periodic(priv);
2545
Johannes Berge932a602009-10-02 13:44:03 -07002546 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002547
Tomas Winklere1623442009-01-27 14:27:56 -08002548 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002549 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002550 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002551
Zhu Yib481de92007-09-25 17:54:57 -07002552 return;
2553
2554 restart:
2555 queue_work(priv->workqueue, &priv->restart);
2556}
2557
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002558static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002559
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002560static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002561{
2562 unsigned long flags;
2563 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2564 struct ieee80211_conf *conf = NULL;
2565
Tomas Winklere1623442009-01-27 14:27:56 -08002566 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002567
2568 conf = ieee80211_get_hw_conf(priv->hw);
2569
2570 if (!exit_pending)
2571 set_bit(STATUS_EXIT_PENDING, &priv->status);
2572
Reinette Chatre7e246192010-02-18 22:58:32 -08002573 /* Station information will now be cleared in device */
Johannes Berg2c810cc2010-04-29 00:53:29 -07002574 iwl_clear_ucode_stations(priv);
2575 iwl_dealloc_bcast_station(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002576 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002577
2578 /* Unblock any waiting calls */
2579 wake_up_interruptible_all(&priv->wait_command_queue);
2580
Zhu Yib481de92007-09-25 17:54:57 -07002581 /* Wipe out the EXIT_PENDING status bit if we are not actually
2582 * exiting the module */
2583 if (!exit_pending)
2584 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2585
2586 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002587 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002588
2589 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002590 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002591 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002592 spin_unlock_irqrestore(&priv->lock, flags);
2593 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002594
2595 if (priv->mac80211_registered)
2596 ieee80211_stop_queues(priv->hw);
2597
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002598 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002599 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002600 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002601 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2602 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002603 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2604 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002605 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2606 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002607 goto exit;
2608 }
2609
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002610 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002611 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002612 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2613 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002614 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2615 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002616 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002617 STATUS_FW_ERROR |
2618 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2619 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002620
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002621 iwl3945_hw_txq_ctx_stop(priv);
2622 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002623
Ben Cahill309e7312009-11-06 14:53:03 -08002624 /* Power-down device's busmaster DMA clocks */
2625 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002626 udelay(5);
2627
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002628 /* Stop the device, and put it in low power state */
2629 priv->cfg->ops->lib->apm_ops.stop(priv);
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002630
Zhu Yib481de92007-09-25 17:54:57 -07002631 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002632 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002633
2634 if (priv->ibss_beacon)
2635 dev_kfree_skb(priv->ibss_beacon);
2636 priv->ibss_beacon = NULL;
2637
2638 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002639 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002640}
2641
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002642static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002643{
2644 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002645 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002646 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002647
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002648 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002649}
2650
2651#define MAX_HW_RESTARTS 5
2652
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002653static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002654{
2655 int rc, i;
2656
Johannes Berg2c810cc2010-04-29 00:53:29 -07002657 rc = iwl_alloc_bcast_station(priv, false);
2658 if (rc)
2659 return rc;
2660
Zhu Yib481de92007-09-25 17:54:57 -07002661 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002662 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002663 return -EIO;
2664 }
2665
Reinette Chatree903fbd2008-01-30 22:05:15 -08002666 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002667 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002668 return -EIO;
2669 }
2670
Zhu Yie655b9f2008-01-24 02:19:38 -08002671 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002672 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002673 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2674 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2675 else {
2676 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002677 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2678 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002679 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002680
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002681 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002682
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002683 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002684 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002685 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002686 return rc;
2687 }
2688
2689 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002690 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2691 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002692 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2693
2694 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002695 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002696 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002697
2698 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002699 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2700 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002701
2702 /* Copy original ucode data image from disk into backup cache.
2703 * This will be used to initialize the on-board processor's
2704 * data SRAM for a clean start when the runtime program first loads. */
2705 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002706 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002707
Zhu Yie655b9f2008-01-24 02:19:38 -08002708 /* We return success when we resume from suspend and rf_kill is on. */
2709 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2710 return 0;
2711
Zhu Yib481de92007-09-25 17:54:57 -07002712 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2713
Zhu Yib481de92007-09-25 17:54:57 -07002714 /* load bootstrap state machine,
2715 * load bootstrap program into processor's memory,
2716 * prepare to load the "initialize" uCode */
Abhijeet Kolekar75a9a922010-02-26 15:17:01 -08002717 rc = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002718
2719 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002720 IWL_ERR(priv,
2721 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002722 continue;
2723 }
2724
2725 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002726 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002727
Tomas Winklere1623442009-01-27 14:27:56 -08002728 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002729
2730 return 0;
2731 }
2732
2733 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002734 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002735 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002736
2737 /* tried to restart and config the device for as long as our
2738 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002739 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002740 return -EIO;
2741}
2742
2743
2744/*****************************************************************************
2745 *
2746 * Workqueue callbacks
2747 *
2748 *****************************************************************************/
2749
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002750static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002751{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002752 struct iwl_priv *priv =
2753 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002754
2755 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2756 return;
2757
2758 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002759 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002760 mutex_unlock(&priv->mutex);
2761}
2762
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002763static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002764{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002765 struct iwl_priv *priv =
2766 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002767
2768 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2769 return;
2770
2771 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002772 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002773 mutex_unlock(&priv->mutex);
2774}
2775
Ben Cahill743cdf12009-10-09 13:20:26 -07002776/*
2777 * 3945 cannot interrupt driver when hardware rf kill switch toggles;
2778 * driver must poll CSR_GP_CNTRL_REG register for change. This register
2779 * *is* readable even when device has been SW_RESET into low power mode
2780 * (e.g. during RF KILL).
2781 */
Helmut Schaa26635162009-01-15 09:38:44 +01002782static void iwl3945_rfkill_poll(struct work_struct *data)
2783{
2784 struct iwl_priv *priv =
Johannes Bergee525d12010-01-21 06:09:28 -08002785 container_of(data, struct iwl_priv, _3945.rfkill_poll.work);
Ben Cahill743cdf12009-10-09 13:20:26 -07002786 bool old_rfkill = test_bit(STATUS_RF_KILL_HW, &priv->status);
2787 bool new_rfkill = !(iwl_read32(priv, CSR_GP_CNTRL)
2788 & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
Helmut Schaa26635162009-01-15 09:38:44 +01002789
Ben Cahill743cdf12009-10-09 13:20:26 -07002790 if (new_rfkill != old_rfkill) {
2791 if (new_rfkill)
2792 set_bit(STATUS_RF_KILL_HW, &priv->status);
2793 else
2794 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Helmut Schaa26635162009-01-15 09:38:44 +01002795
Ben Cahill743cdf12009-10-09 13:20:26 -07002796 wiphy_rfkill_set_hw_state(priv->hw->wiphy, new_rfkill);
Helmut Schaa26635162009-01-15 09:38:44 +01002797
Ben Cahill743cdf12009-10-09 13:20:26 -07002798 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
2799 new_rfkill ? "disable radio" : "enable radio");
2800 }
2801
2802 /* Keep this running, even if radio now enabled. This will be
2803 * cancelled in mac_start() if system decides to start again */
Johannes Bergee525d12010-01-21 06:09:28 -08002804 queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
Helmut Schaa26635162009-01-15 09:38:44 +01002805 round_jiffies_relative(2 * HZ));
2806
2807}
2808
Johannes Berg1dda6d22010-04-29 04:43:06 -07002809void iwl3945_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07002810{
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002811 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002812 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002813 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002814 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002815 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002816 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002817 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002818 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002819 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002820 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002821
2822 conf = ieee80211_get_hw_conf(priv->hw);
2823
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002824 cancel_delayed_work(&priv->scan_check);
2825
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002826 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002827 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002828 goto done;
2829 }
2830
Tomas Winklera96a27f2008-10-23 23:48:56 -07002831 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002832 * was given the chance to run... */
2833 if (!test_bit(STATUS_SCANNING, &priv->status))
2834 goto done;
2835
2836 /* This should never be called or scheduled if there is currently
2837 * a scan active in the hardware. */
2838 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002839 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2840 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002841 goto done;
2842 }
2843
2844 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002845 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002846 goto done;
2847 }
2848
2849 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002850 IWL_DEBUG_HC(priv,
2851 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002852 goto done;
2853 }
2854
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002855 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002856 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002857 goto done;
2858 }
2859
2860 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002861 IWL_DEBUG_HC(priv,
2862 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002863 goto done;
2864 }
2865
Johannes Berg811ecc92010-04-06 04:12:41 -07002866 if (!priv->scan_cmd) {
2867 priv->scan_cmd = kmalloc(sizeof(struct iwl3945_scan_cmd) +
2868 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
2869 if (!priv->scan_cmd) {
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002870 IWL_DEBUG_SCAN(priv, "Fail to allocate scan memory\n");
Zhu Yib481de92007-09-25 17:54:57 -07002871 goto done;
2872 }
2873 }
Johannes Berg811ecc92010-04-06 04:12:41 -07002874 scan = priv->scan_cmd;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002875 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002876
2877 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2878 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2879
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002880 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002881 u16 interval = 0;
2882 u32 extra;
2883 u32 suspend_time = 100;
2884 u32 scan_suspend_time = 100;
2885 unsigned long flags;
2886
Tomas Winklere1623442009-01-27 14:27:56 -08002887 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002888
2889 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg1dda6d22010-04-29 04:43:06 -07002890 interval = vif ? vif->bss_conf.beacon_int : 0;
Zhu Yib481de92007-09-25 17:54:57 -07002891 spin_unlock_irqrestore(&priv->lock, flags);
2892
2893 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002894 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002895 if (!interval)
2896 interval = suspend_time;
2897 /*
2898 * suspend time format:
2899 * 0-19: beacon interval in usec (time before exec.)
2900 * 20-23: 0
2901 * 24-31: number of beacons (suspend between channels)
2902 */
2903
2904 extra = (suspend_time / interval) << 24;
2905 scan_suspend_time = 0xFF0FFFFF &
2906 (extra | ((suspend_time % interval) * 1024));
2907
2908 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002909 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002910 scan_suspend_time, interval);
2911 }
2912
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002913 if (priv->is_internal_short_scan) {
2914 IWL_DEBUG_SCAN(priv, "Start internal passive scan.\n");
2915 } else if (priv->scan_request->n_ssids) {
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002916 int i, p = 0;
2917 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2918 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2919 /* always does wildcard anyway */
2920 if (!priv->scan_request->ssids[i].ssid_len)
2921 continue;
2922 scan->direct_scan[p].id = WLAN_EID_SSID;
2923 scan->direct_scan[p].len =
2924 priv->scan_request->ssids[i].ssid_len;
2925 memcpy(scan->direct_scan[p].ssid,
2926 priv->scan_request->ssids[i].ssid,
2927 priv->scan_request->ssids[i].ssid_len);
2928 n_probes++;
2929 p++;
2930 }
2931 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002932 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002933 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002934
2935 /* We don't build a direct scan probe request; the uCode will do
2936 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002937 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002938 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002939 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2940
2941 /* flags + rate selection */
2942
Johannes Berg00700ee2010-04-06 04:12:37 -07002943 switch (priv->scan_band) {
2944 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07002945 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2946 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2947 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002948 band = IEEE80211_BAND_2GHZ;
Johannes Berg00700ee2010-04-06 04:12:37 -07002949 break;
2950 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07002951 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002952 /*
2953 * If active scaning is requested but a certain channel
2954 * is marked passive, we can do active scanning if we
2955 * detect transmissions.
2956 */
Johannes Berg96ff5642010-04-30 14:42:15 -07002957 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
2958 IWL_GOOD_CRC_TH_DISABLED;
Johannes Berg8318d782008-01-24 19:38:38 +01002959 band = IEEE80211_BAND_5GHZ;
Johannes Berg00700ee2010-04-06 04:12:37 -07002960 break;
2961 default:
2962 IWL_WARN(priv, "Invalid scan band\n");
Zhu Yib481de92007-09-25 17:54:57 -07002963 goto done;
2964 }
2965
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002966 if (!priv->is_internal_short_scan) {
2967 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002968 iwl_fill_probe_req(priv,
2969 (struct ieee80211_mgmt *)scan->data,
2970 priv->scan_request->ie,
2971 priv->scan_request->ie_len,
2972 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002973 } else {
2974 scan->tx_cmd.len = cpu_to_le16(
2975 iwl_fill_probe_req(priv,
2976 (struct ieee80211_mgmt *)scan->data,
2977 NULL, 0,
2978 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
2979 }
Zhu Yib481de92007-09-25 17:54:57 -07002980 /* select Rx antennas */
2981 scan->flags |= iwl3945_get_antenna_flags(priv);
2982
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002983 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002984 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Johannes Berg1dda6d22010-04-29 04:43:06 -07002985 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)], vif);
Zhu Yib481de92007-09-25 17:54:57 -07002986
Reinette Chatre14b54332008-11-04 12:21:35 -08002987 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002988 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002989 goto done;
2990 }
2991
Zhu Yib481de92007-09-25 17:54:57 -07002992 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002993 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07002994 cmd.data = scan;
2995 scan->len = cpu_to_le16(cmd.len);
2996
2997 set_bit(STATUS_SCAN_HW, &priv->status);
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002998 if (iwl_send_cmd_sync(priv, &cmd))
Zhu Yib481de92007-09-25 17:54:57 -07002999 goto done;
3000
3001 queue_delayed_work(priv->workqueue, &priv->scan_check,
3002 IWL_SCAN_CHECK_WATCHDOG);
3003
Zhu Yib481de92007-09-25 17:54:57 -07003004 return;
3005
3006 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003007 /* can not perform scan make sure we clear scanning
3008 * bits from status so next scan request can be performed.
3009 * if we dont clear scanning status bit here all next scan
3010 * will fail
3011 */
3012 clear_bit(STATUS_SCAN_HW, &priv->status);
3013 clear_bit(STATUS_SCANNING, &priv->status);
3014
Ian Schram01ebd062007-10-25 17:15:22 +08003015 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003016 queue_work(priv->workqueue, &priv->scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07003017}
3018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003019static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003020{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003021 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003022
3023 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3024 return;
3025
Johannes Berg19cc1082009-05-08 13:44:36 -07003026 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3027 mutex_lock(&priv->mutex);
3028 priv->vif = NULL;
3029 priv->is_open = 0;
3030 mutex_unlock(&priv->mutex);
3031 iwl3945_down(priv);
3032 ieee80211_restart_hw(priv->hw);
3033 } else {
3034 iwl3945_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003035
3036 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3037 return;
3038
3039 mutex_lock(&priv->mutex);
3040 __iwl3945_up(priv);
3041 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003042 }
Zhu Yib481de92007-09-25 17:54:57 -07003043}
3044
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003045static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003046{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003047 struct iwl_priv *priv =
3048 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003049
3050 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3051 return;
3052
3053 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003054 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003055 mutex_unlock(&priv->mutex);
3056}
3057
Johannes Berg1dda6d22010-04-29 04:43:06 -07003058void iwl3945_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003059{
Zhu Yib481de92007-09-25 17:54:57 -07003060 int rc = 0;
3061 struct ieee80211_conf *conf = NULL;
3062
Johannes Berg1dda6d22010-04-29 04:43:06 -07003063 if (!vif || !priv->is_open)
3064 return;
3065
3066 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003067 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003068 return;
3069 }
3070
Tomas Winklere1623442009-01-27 14:27:56 -08003071 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003072 vif->bss_conf.aid, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003073
3074 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3075 return;
3076
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003077 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003078
Zhu Yib481de92007-09-25 17:54:57 -07003079 conf = ieee80211_get_hw_conf(priv->hw);
3080
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003081 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003082 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003083
Tomas Winkler28afaf92008-12-19 10:37:06 +08003084 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Johannes Berg1dda6d22010-04-29 04:43:06 -07003085 iwl_setup_rxon_timing(priv, vif);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003086 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003087 sizeof(priv->rxon_timing), &priv->rxon_timing);
3088 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003089 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003090 "Attempting to continue.\n");
3091
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003092 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003093
Johannes Berg1dda6d22010-04-29 04:43:06 -07003094 priv->staging_rxon.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003095
Tomas Winklere1623442009-01-27 14:27:56 -08003096 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003097 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003098
Johannes Bergc213d742010-05-06 12:21:40 -07003099 if (vif->bss_conf.use_short_preamble)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003100 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003101 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003102 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003103
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003104 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003105 if (vif->bss_conf.use_short_slot)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003106 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003107 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003108 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003109 }
3110
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003111 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003112
Johannes Berg1dda6d22010-04-29 04:43:06 -07003113 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003114 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003115 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003116 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003117 case NL80211_IFTYPE_ADHOC:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003118 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003119 break;
Zhu Yib481de92007-09-25 17:54:57 -07003120 default:
Johannes Berg1dda6d22010-04-29 04:43:06 -07003121 IWL_ERR(priv, "%s Should not be called in %d mode\n",
3122 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003123 break;
3124 }
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003125}
3126
Zhu Yib481de92007-09-25 17:54:57 -07003127/*****************************************************************************
3128 *
3129 * mac80211 entry point functions
3130 *
3131 *****************************************************************************/
3132
Zhu Yi5a669262008-01-14 17:46:18 -08003133#define UCODE_READY_TIMEOUT (2 * HZ)
3134
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003135static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003136{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003137 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003138 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003139
Tomas Winklere1623442009-01-27 14:27:56 -08003140 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003141
3142 /* we should be verifying the device is ready to be opened */
3143 mutex_lock(&priv->mutex);
3144
Zhu Yi5a669262008-01-14 17:46:18 -08003145 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3146 * ucode filename and max sizes are card-specific. */
3147
3148 if (!priv->ucode_code.len) {
3149 ret = iwl3945_read_ucode(priv);
3150 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003151 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003152 mutex_unlock(&priv->mutex);
3153 goto out_release_irq;
3154 }
3155 }
3156
Zhu Yie655b9f2008-01-24 02:19:38 -08003157 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003158
Zhu Yib481de92007-09-25 17:54:57 -07003159 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003160
Zhu Yie655b9f2008-01-24 02:19:38 -08003161 if (ret)
3162 goto out_release_irq;
3163
Tomas Winklere1623442009-01-27 14:27:56 -08003164 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003165
Zhu Yi5a669262008-01-14 17:46:18 -08003166 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3167 * mac80211 will not be run successfully. */
3168 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3169 test_bit(STATUS_READY, &priv->status),
3170 UCODE_READY_TIMEOUT);
3171 if (!ret) {
3172 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003173 IWL_ERR(priv,
3174 "Wait for START_ALIVE timeout after %dms.\n",
3175 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003176 ret = -ETIMEDOUT;
3177 goto out_release_irq;
3178 }
3179 }
3180
Helmut Schaa26635162009-01-15 09:38:44 +01003181 /* ucode is running and will send rfkill notifications,
3182 * no need to poll the killswitch state anymore */
Johannes Bergee525d12010-01-21 06:09:28 -08003183 cancel_delayed_work(&priv->_3945.rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01003184
Johannes Berge932a602009-10-02 13:44:03 -07003185 iwl_led_start(priv);
3186
Zhu Yie655b9f2008-01-24 02:19:38 -08003187 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003188 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003189 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003190
3191out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003192 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003193 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003194 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003195}
3196
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003197static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003198{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003199 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003200
Tomas Winklere1623442009-01-27 14:27:56 -08003201 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003202
Zhu Yie655b9f2008-01-24 02:19:38 -08003203 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003204 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003205 return;
3206 }
3207
Zhu Yib481de92007-09-25 17:54:57 -07003208 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003209
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003210 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003211 /* stop mac, cancel any scan request and clear
3212 * RXON_FILTER_ASSOC_MSK BIT
3213 */
Zhu Yi5a669262008-01-14 17:46:18 -08003214 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003215 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003216 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003217 }
3218
Zhu Yi5a669262008-01-14 17:46:18 -08003219 iwl3945_down(priv);
3220
3221 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003222
3223 /* start polling the killswitch state again */
Johannes Bergee525d12010-01-21 06:09:28 -08003224 queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
Helmut Schaa26635162009-01-15 09:38:44 +01003225 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003226
Tomas Winklere1623442009-01-27 14:27:56 -08003227 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003228}
3229
Johannes Berge039fa42008-05-15 12:55:29 +02003230static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
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");
Zhu Yib481de92007-09-25 17:54:57 -07003235
Tomas Winklere1623442009-01-27 14:27:56 -08003236 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003237 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003238
Johannes Berge039fa42008-05-15 12:55:29 +02003239 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003240 dev_kfree_skb_any(skb);
3241
Tomas Winklere1623442009-01-27 14:27:56 -08003242 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003243 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003244}
3245
Johannes Berg1dda6d22010-04-29 04:43:06 -07003246void iwl3945_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003247{
3248 int rc = 0;
3249
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003250 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003251 return;
3252
3253 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003254 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003255
3256 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003257 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003258 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003259
3260 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003261 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Johannes Berg1dda6d22010-04-29 04:43:06 -07003262 iwl_setup_rxon_timing(priv, vif);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003263 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3264 sizeof(priv->rxon_timing),
3265 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003266 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003267 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003268 "Attempting to continue.\n");
3269
Johannes Berg1dda6d22010-04-29 04:43:06 -07003270 priv->staging_rxon.assoc_id = 0;
3271
Johannes Bergc213d742010-05-06 12:21:40 -07003272 if (vif->bss_conf.use_short_preamble)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003273 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003274 RXON_FLG_SHORT_PREAMBLE_MSK;
3275 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003276 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003277 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3278
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003279 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003280 if (vif->bss_conf.use_short_slot)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003281 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003282 RXON_FLG_SHORT_SLOT_MSK;
3283 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003284 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003285 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003286 }
3287 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003288 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003289 iwlcore_commit_rxon(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08003290 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003291 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003292
3293 /* FIXME - we need to add code here to detect a totally new
3294 * configuration, reset the AP, unassoc, rxon timing, assoc,
3295 * clear sta table, add BCAST sta... */
3296}
3297
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003298static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003299 struct ieee80211_vif *vif,
3300 struct ieee80211_sta *sta,
3301 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003302{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003303 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003304 int ret = 0;
3305 u8 sta_id = IWL_INVALID_STATION;
3306 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003307
Tomas Winklere1623442009-01-27 14:27:56 -08003308 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003309
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003310 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003311 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003312 return -EOPNOTSUPP;
3313 }
3314
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003315 static_key = !iwl_is_associated(priv);
3316
3317 if (!static_key) {
Johannes Berg0af8bca2010-04-30 14:08:00 -07003318 sta_id = iwl_sta_id_or_broadcast(priv, sta);
3319 if (sta_id == IWL_INVALID_STATION)
3320 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003321 }
3322
3323 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003324 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003325
Zhu Yib481de92007-09-25 17:54:57 -07003326 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003327 case SET_KEY:
3328 if (static_key)
3329 ret = iwl3945_set_static_key(priv, key);
3330 else
3331 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3332 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003333 break;
3334 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003335 if (static_key)
3336 ret = iwl3945_remove_static_key(priv);
3337 else
3338 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3339 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003340 break;
3341 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003342 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003343 }
3344
Johannes Berg72e15d72010-02-19 11:42:32 -08003345 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003346 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003347
Winkler, Tomas42986792009-01-19 15:30:22 -08003348 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003349}
3350
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003351static int iwl3945_mac_sta_add(struct ieee80211_hw *hw,
3352 struct ieee80211_vif *vif,
3353 struct ieee80211_sta *sta)
3354{
3355 struct iwl_priv *priv = hw->priv;
Johannes Bergfd1af152010-04-30 11:30:43 -07003356 struct iwl3945_sta_priv *sta_priv = (void *)sta->drv_priv;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003357 int ret;
Johannes Bergfd1af152010-04-30 11:30:43 -07003358 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003359 u8 sta_id;
3360
Johannes Bergfd1af152010-04-30 11:30:43 -07003361 sta_priv->common.sta_id = IWL_INVALID_STATION;
3362
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003363 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3364 sta->addr);
3365
3366 ret = iwl_add_station_common(priv, sta->addr, is_ap, &sta->ht_cap,
3367 &sta_id);
3368 if (ret) {
3369 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3370 sta->addr, ret);
3371 /* Should we return success if return code is EEXIST ? */
3372 return ret;
3373 }
3374
Johannes Bergfd1af152010-04-30 11:30:43 -07003375 sta_priv->common.sta_id = sta_id;
3376
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003377 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003378 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003379 sta->addr);
3380 iwl3945_rs_rate_init(priv, sta, sta_id);
3381
3382 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003383}
Zhu Yib481de92007-09-25 17:54:57 -07003384/*****************************************************************************
3385 *
3386 * sysfs attributes
3387 *
3388 *****************************************************************************/
3389
Samuel Ortizd08853a2009-01-23 13:45:17 -08003390#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003391
3392/*
3393 * The following adds a new attribute to the sysfs representation
3394 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3395 * used for controlling the debug level.
3396 *
3397 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003398 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003399 * The debug_level being managed using sysfs below is a per device debug
3400 * level that is used instead of the global debug level if it (the per
3401 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003402 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003403static ssize_t show_debug_level(struct device *d,
3404 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003405{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003406 struct iwl_priv *priv = dev_get_drvdata(d);
3407 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003408}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003409static ssize_t store_debug_level(struct device *d,
3410 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003411 const char *buf, size_t count)
3412{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003413 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003414 unsigned long val;
3415 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003416
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003417 ret = strict_strtoul(buf, 0, &val);
3418 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003419 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003420 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003421 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003422 if (iwl_alloc_traffic_mem(priv))
3423 IWL_ERR(priv,
3424 "Not enough memory to generate traffic log\n");
3425 }
Zhu Yib481de92007-09-25 17:54:57 -07003426 return strnlen(buf, count);
3427}
3428
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003429static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3430 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003431
Samuel Ortizd08853a2009-01-23 13:45:17 -08003432#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003433
Zhu Yib481de92007-09-25 17:54:57 -07003434static ssize_t show_temperature(struct device *d,
3435 struct device_attribute *attr, char *buf)
3436{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003437 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003438
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003439 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003440 return -EAGAIN;
3441
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003442 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003443}
3444
3445static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3446
Zhu Yib481de92007-09-25 17:54:57 -07003447static ssize_t show_tx_power(struct device *d,
3448 struct device_attribute *attr, char *buf)
3449{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003450 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003451 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003452}
3453
3454static ssize_t store_tx_power(struct device *d,
3455 struct device_attribute *attr,
3456 const char *buf, size_t count)
3457{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003458 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003459 char *p = (char *)buf;
3460 u32 val;
3461
3462 val = simple_strtoul(p, &p, 10);
3463 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003464 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003465 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003466 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003467
3468 return count;
3469}
3470
3471static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3472
3473static ssize_t show_flags(struct device *d,
3474 struct device_attribute *attr, char *buf)
3475{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003476 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003477
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003478 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003479}
3480
3481static ssize_t store_flags(struct device *d,
3482 struct device_attribute *attr,
3483 const char *buf, size_t count)
3484{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003485 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003486 u32 flags = simple_strtoul(buf, NULL, 0);
3487
3488 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003489 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003490 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003491 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003492 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003493 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003494 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003495 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003496 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003497 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003498 }
3499 }
3500 mutex_unlock(&priv->mutex);
3501
3502 return count;
3503}
3504
3505static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3506
3507static ssize_t show_filter_flags(struct device *d,
3508 struct device_attribute *attr, char *buf)
3509{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003510 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003511
3512 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003513 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003514}
3515
3516static ssize_t store_filter_flags(struct device *d,
3517 struct device_attribute *attr,
3518 const char *buf, size_t count)
3519{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003520 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003521 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3522
3523 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003524 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003525 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003526 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003527 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003528 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003529 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003530 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003531 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003532 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003533 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003534 }
3535 }
3536 mutex_unlock(&priv->mutex);
3537
3538 return count;
3539}
3540
3541static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3542 store_filter_flags);
3543
Zhu Yib481de92007-09-25 17:54:57 -07003544static ssize_t show_measurement(struct device *d,
3545 struct device_attribute *attr, char *buf)
3546{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003547 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003548 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003549 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003550 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003551 unsigned long flags;
3552
3553 spin_lock_irqsave(&priv->lock, flags);
3554 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3555 spin_unlock_irqrestore(&priv->lock, flags);
3556 return 0;
3557 }
3558 memcpy(&measure_report, &priv->measure_report, size);
3559 priv->measurement_status = 0;
3560 spin_unlock_irqrestore(&priv->lock, flags);
3561
3562 while (size && (PAGE_SIZE - len)) {
3563 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3564 PAGE_SIZE - len, 1);
3565 len = strlen(buf);
3566 if (PAGE_SIZE - len)
3567 buf[len++] = '\n';
3568
3569 ofs += 16;
3570 size -= min(size, 16U);
3571 }
3572
3573 return len;
3574}
3575
3576static ssize_t store_measurement(struct device *d,
3577 struct device_attribute *attr,
3578 const char *buf, size_t count)
3579{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003580 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003581 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003582 .channel = le16_to_cpu(priv->active_rxon.channel),
Johannes Berge99f1682010-01-19 10:04:28 -08003583 .start_time = cpu_to_le64(priv->_3945.last_tsf),
Zhu Yib481de92007-09-25 17:54:57 -07003584 .duration = cpu_to_le16(1),
3585 };
3586 u8 type = IWL_MEASURE_BASIC;
3587 u8 buffer[32];
3588 u8 channel;
3589
3590 if (count) {
3591 char *p = buffer;
3592 strncpy(buffer, buf, min(sizeof(buffer), count));
3593 channel = simple_strtoul(p, NULL, 0);
3594 if (channel)
3595 params.channel = channel;
3596
3597 p = buffer;
3598 while (*p && *p != ' ')
3599 p++;
3600 if (*p)
3601 type = simple_strtoul(p + 1, NULL, 0);
3602 }
3603
Tomas Winklere1623442009-01-27 14:27:56 -08003604 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003605 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003606 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003607
3608 return count;
3609}
3610
3611static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3612 show_measurement, store_measurement);
Zhu Yib481de92007-09-25 17:54:57 -07003613
Zhu Yib481de92007-09-25 17:54:57 -07003614static ssize_t store_retry_rate(struct device *d,
3615 struct device_attribute *attr,
3616 const char *buf, size_t count)
3617{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003618 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003619
3620 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3621 if (priv->retry_rate <= 0)
3622 priv->retry_rate = 1;
3623
3624 return count;
3625}
3626
3627static ssize_t show_retry_rate(struct device *d,
3628 struct device_attribute *attr, char *buf)
3629{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003630 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003631 return sprintf(buf, "%d", priv->retry_rate);
3632}
3633
3634static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3635 store_retry_rate);
3636
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003637
Zhu Yib481de92007-09-25 17:54:57 -07003638static ssize_t show_channels(struct device *d,
3639 struct device_attribute *attr, char *buf)
3640{
Johannes Berg8318d782008-01-24 19:38:38 +01003641 /* all this shit doesn't belong into sysfs anyway */
3642 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003643}
3644
3645static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3646
Zhu Yib481de92007-09-25 17:54:57 -07003647static ssize_t show_antenna(struct device *d,
3648 struct device_attribute *attr, char *buf)
3649{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003650 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003651
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003652 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003653 return -EAGAIN;
3654
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003655 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003656}
3657
3658static ssize_t store_antenna(struct device *d,
3659 struct device_attribute *attr,
3660 const char *buf, size_t count)
3661{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003662 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003663 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003664
3665 if (count == 0)
3666 return 0;
3667
3668 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003669 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003670 return count;
3671 }
3672
3673 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003674 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003675 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003676 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003677 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003678
3679
3680 return count;
3681}
3682
3683static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3684
3685static ssize_t show_status(struct device *d,
3686 struct device_attribute *attr, char *buf)
3687{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003688 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003689 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003690 return -EAGAIN;
3691 return sprintf(buf, "0x%08x\n", (int)priv->status);
3692}
3693
3694static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3695
3696static ssize_t dump_error_log(struct device *d,
3697 struct device_attribute *attr,
3698 const char *buf, size_t count)
3699{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003700 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003701 char *p = (char *)buf;
3702
3703 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003704 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003705
3706 return strnlen(buf, count);
3707}
3708
3709static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3710
Zhu Yib481de92007-09-25 17:54:57 -07003711/*****************************************************************************
3712 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003713 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003714 *
3715 *****************************************************************************/
3716
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003717static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003718{
Reinette Chatred21050c2009-02-13 11:51:18 -08003719 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003720
3721 init_waitqueue_head(&priv->wait_command_queue);
3722
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003723 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3724 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003725 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003726 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3727 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Johannes Bergee525d12010-01-21 06:09:28 -08003728 INIT_DELAYED_WORK(&priv->_3945.rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003729 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003730 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
Abhijeet Kolekar1e460532010-04-23 14:14:53 -07003731 INIT_WORK(&priv->start_internal_scan, iwl_bg_start_internal_scan);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003732 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003733
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003734 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003735
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08003736 if (priv->cfg->ops->lib->recover_from_tx_stall) {
3737 init_timer(&priv->monitor_recover);
3738 priv->monitor_recover.data = (unsigned long)priv;
3739 priv->monitor_recover.function =
3740 priv->cfg->ops->lib->recover_from_tx_stall;
3741 }
3742
Zhu Yib481de92007-09-25 17:54:57 -07003743 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003744 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003745}
3746
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003747static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003748{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003749 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003750
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003751 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003752 cancel_delayed_work(&priv->scan_check);
3753 cancel_delayed_work(&priv->alive_start);
Abhijeet Kolekar1e460532010-04-23 14:14:53 -07003754 cancel_work_sync(&priv->start_internal_scan);
Zhu Yib481de92007-09-25 17:54:57 -07003755 cancel_work_sync(&priv->beacon_update);
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08003756 if (priv->cfg->ops->lib->recover_from_tx_stall)
3757 del_timer_sync(&priv->monitor_recover);
Zhu Yib481de92007-09-25 17:54:57 -07003758}
3759
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003760static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003761 &dev_attr_antenna.attr,
3762 &dev_attr_channels.attr,
3763 &dev_attr_dump_errors.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003764 &dev_attr_flags.attr,
3765 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003766 &dev_attr_measurement.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003767 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003768 &dev_attr_status.attr,
3769 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003770 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003771#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003772 &dev_attr_debug_level.attr,
3773#endif
Zhu Yib481de92007-09-25 17:54:57 -07003774 NULL
3775};
3776
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003777static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003778 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003779 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003780};
3781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003782static struct ieee80211_ops iwl3945_hw_ops = {
3783 .tx = iwl3945_mac_tx,
3784 .start = iwl3945_mac_start,
3785 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003786 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003787 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003788 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003789 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003790 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003791 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003792 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003793 .bss_info_changed = iwl_bss_info_changed,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003794 .hw_scan = iwl_mac_hw_scan,
3795 .sta_add = iwl3945_mac_sta_add,
3796 .sta_remove = iwl_mac_sta_remove,
Zhu Yib481de92007-09-25 17:54:57 -07003797};
3798
Winkler, Tomase52119c2008-12-22 11:31:19 +08003799static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003800{
3801 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003802 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003803
3804 priv->retry_rate = 1;
3805 priv->ibss_beacon = NULL;
3806
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003807 spin_lock_init(&priv->sta_lock);
3808 spin_lock_init(&priv->hcmd_lock);
3809
3810 INIT_LIST_HEAD(&priv->free_frames);
3811
3812 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08003813 mutex_init(&priv->sync_cmd_mutex);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003814
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003815 priv->ieee_channels = NULL;
3816 priv->ieee_rates = NULL;
3817 priv->band = IEEE80211_BAND_2GHZ;
3818
3819 priv->iw_mode = NL80211_IFTYPE_STATION;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08003820 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003821
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003822 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003823
Samuel Ortize6148912009-01-23 13:45:15 -08003824 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3825 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3826 eeprom->version);
3827 ret = -EINVAL;
3828 goto err;
3829 }
3830 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003831 if (ret) {
3832 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3833 goto err;
3834 }
3835
Samuel Ortize6148912009-01-23 13:45:15 -08003836 /* Set up txpower settings in driver for all channels */
3837 if (iwl3945_txpower_set_from_eeprom(priv)) {
3838 ret = -EIO;
3839 goto err_free_channel_map;
3840 }
3841
Samuel Ortiz534166d2009-01-23 13:45:16 -08003842 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003843 if (ret) {
3844 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3845 goto err_free_channel_map;
3846 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003847 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3848
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003849 return 0;
3850
3851err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003852 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003853err:
3854 return ret;
3855}
3856
Johannes Bergdd7a2502010-04-28 23:33:10 -07003857#define IWL3945_MAX_PROBE_REQUEST 200
3858
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003859static int iwl3945_setup_mac(struct iwl_priv *priv)
3860{
3861 int ret;
3862 struct ieee80211_hw *hw = priv->hw;
3863
3864 hw->rate_control_algorithm = "iwl-3945-rs";
3865 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003866 hw->vif_data_size = sizeof(struct iwl_vif_priv);
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003867
3868 /* Tell mac80211 our characteristics */
3869 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatrebc45a672009-12-14 14:12:10 -08003870 IEEE80211_HW_SPECTRUM_MGMT;
3871
3872 if (!priv->cfg->broken_powersave)
3873 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3874 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003875
3876 hw->wiphy->interface_modes =
3877 BIT(NL80211_IFTYPE_STATION) |
3878 BIT(NL80211_IFTYPE_ADHOC);
3879
Reinette Chatref6c8f152010-03-12 11:13:26 -08003880 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003881 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003882
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003883 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3884 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003885 hw->wiphy->max_scan_ie_len = IWL3945_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003886
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003887 /* Default value; 4 EDCA QOS priorities */
3888 hw->queues = 4;
3889
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003890 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3891 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3892 &priv->bands[IEEE80211_BAND_2GHZ];
3893
3894 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3895 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3896 &priv->bands[IEEE80211_BAND_5GHZ];
3897
3898 ret = ieee80211_register_hw(priv->hw);
3899 if (ret) {
3900 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3901 return ret;
3902 }
3903 priv->mac80211_registered = 1;
3904
3905 return 0;
3906}
3907
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003908static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003909{
3910 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003911 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003912 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003913 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003914 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003915 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003916
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003917 /***********************
3918 * 1. Allocating HW data
3919 * ********************/
3920
Zhu Yib481de92007-09-25 17:54:57 -07003921 /* mac80211 allocates memory for this device instance, including
3922 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003923 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003924 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003925 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003926 err = -ENOMEM;
3927 goto out;
3928 }
Zhu Yib481de92007-09-25 17:54:57 -07003929 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003930 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003931
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003932 /*
3933 * Disabling hardware scan means that mac80211 will perform scans
3934 * "the hard way", rather than using device's scan.
3935 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003936 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003937 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003938 iwl3945_hw_ops.hw_scan = NULL;
3939 }
3940
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003941
Tomas Winklere1623442009-01-27 14:27:56 -08003942 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003943 priv->cfg = cfg;
3944 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003945 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003946
Samuel Ortizd08853a2009-01-23 13:45:17 -08003947#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003948 atomic_set(&priv->restrict_refcnt, 0);
3949#endif
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003950 if (iwl_alloc_traffic_mem(priv))
3951 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003952
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003953 /***************************
3954 * 2. Initializing PCI bus
3955 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07003956 if (pci_enable_device(pdev)) {
3957 err = -ENODEV;
3958 goto out_ieee80211_free_hw;
3959 }
3960
3961 pci_set_master(pdev);
3962
Yang Hongyang284901a2009-04-06 19:01:15 -07003963 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003964 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07003965 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003966 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003967 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003968 goto out_pci_disable_device;
3969 }
3970
3971 pci_set_drvdata(pdev, priv);
3972 err = pci_request_regions(pdev, DRV_NAME);
3973 if (err)
3974 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003975
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003976 /***********************
3977 * 3. Read REV Register
3978 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07003979 priv->hw_base = pci_iomap(pdev, 0, 0);
3980 if (!priv->hw_base) {
3981 err = -ENODEV;
3982 goto out_pci_release_regions;
3983 }
3984
Tomas Winklere1623442009-01-27 14:27:56 -08003985 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07003986 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003987 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07003988
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003989 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3990 * PCI Tx retries from interfering with C3 CPU state */
3991 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07003992
Reinette Chatre731a29b2009-12-14 14:12:11 -08003993 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003994 * we should init now
3995 */
3996 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08003997 spin_lock_init(&priv->lock);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07003998
Reinette Chatre4843b5a2010-02-03 09:38:59 -08003999 /*
4000 * stop and reset the on-board processor just in case it is in a
4001 * strange state ... like being left stranded by a primary kernel
4002 * and this is now the kdump kernel trying to start up
4003 */
4004 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4005
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004006 /***********************
4007 * 4. Read EEPROM
4008 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004009
Zhu Yi5a669262008-01-14 17:46:18 -08004010 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004011 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004012 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004013 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004014 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004015 }
4016 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004017 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4018 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004019 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08004020 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4021
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004022 /***********************
4023 * 5. Setup HW Constants
4024 * ********************/
4025 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004026 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004027 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004028 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004029 }
4030
4031 /***********************
4032 * 6. Setup priv
4033 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004034
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004035 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004036 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004037 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004038 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004039 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004040
Tomas Winkler978785a2008-12-19 10:37:31 +08004041 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4042 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004043
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004044 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004045 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004046 * ********************/
4047
4048 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004049 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004050 spin_unlock_irqrestore(&priv->lock, flags);
4051
Helmut Schaa26635162009-01-15 09:38:44 +01004052 pci_enable_msi(priv->pci_dev);
4053
Mohamed Abbasef850d72009-05-22 11:01:50 -07004054 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4055 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004056 if (err) {
4057 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4058 goto out_disable_msi;
4059 }
4060
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004061 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4062 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004063 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004064 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004065 }
4066
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004067 iwl_set_rxon_channel(priv,
4068 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004069 iwl3945_setup_deferred_work(priv);
4070 iwl3945_setup_rx_handlers(priv);
Ben Cahill008a9e32009-10-09 13:20:27 -07004071 iwl_power_initialize(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004072
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004073 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004074 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004075 * *******************************/
4076
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004077 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004078
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004079 err = iwl3945_setup_mac(priv);
4080 if (err)
4081 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004082
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004083 err = iwl_dbgfs_register(priv, DRV_NAME);
4084 if (err)
4085 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4086
Helmut Schaa26635162009-01-15 09:38:44 +01004087 /* Start monitoring the killswitch */
Johannes Bergee525d12010-01-21 06:09:28 -08004088 queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
Helmut Schaa26635162009-01-15 09:38:44 +01004089 2 * HZ);
4090
Zhu Yib481de92007-09-25 17:54:57 -07004091 return 0;
4092
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004093 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004094 destroy_workqueue(priv->workqueue);
4095 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004096 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4097 out_release_irq:
4098 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004099 out_disable_msi:
4100 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004101 iwlcore_free_geos(priv);
4102 iwl_free_channel_map(priv);
4103 out_unset_hw_params:
4104 iwl3945_unset_hw_params(priv);
4105 out_eeprom_free:
4106 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004107 out_iounmap:
4108 pci_iounmap(pdev, priv->hw_base);
4109 out_pci_release_regions:
4110 pci_release_regions(pdev);
4111 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004112 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004113 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004114 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004115 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004116 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004117 out:
4118 return err;
4119}
4120
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004121static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004122{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004123 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004124 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004125
4126 if (!priv)
4127 return;
4128
Tomas Winklere1623442009-01-27 14:27:56 -08004129 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004130
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004131 iwl_dbgfs_unregister(priv);
4132
Zhu Yib481de92007-09-25 17:54:57 -07004133 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004134
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004135 if (priv->mac80211_registered) {
4136 ieee80211_unregister_hw(priv->hw);
4137 priv->mac80211_registered = 0;
4138 } else {
4139 iwl3945_down(priv);
4140 }
Zhu Yib481de92007-09-25 17:54:57 -07004141
Ben Cahillc166b252009-10-23 13:42:35 -07004142 /*
4143 * Make sure device is reset to low power before unloading driver.
4144 * This may be redundant with iwl_down(), but there are paths to
4145 * run iwl_down() without calling apm_ops.stop(), and there are
4146 * paths to avoid running iwl_down() at all before leaving driver.
4147 * This (inexpensive) call *makes sure* device is reset.
4148 */
4149 priv->cfg->ops->lib->apm_ops.stop(priv);
4150
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004151 /* make sure we flush any pending irq or
4152 * tasklet for the driver
4153 */
4154 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004155 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004156 spin_unlock_irqrestore(&priv->lock, flags);
4157
4158 iwl_synchronize_irq(priv);
4159
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004160 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004161
Johannes Bergee525d12010-01-21 06:09:28 -08004162 cancel_delayed_work_sync(&priv->_3945.rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004163
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004164 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004165
4166 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004167 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004168 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004169
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004170 iwl3945_unset_hw_params(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004171
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004172 /*netif_stop_queue(dev); */
4173 flush_workqueue(priv->workqueue);
4174
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004175 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004176 * priv->workqueue... so we can't take down the workqueue
4177 * until now... */
4178 destroy_workqueue(priv->workqueue);
4179 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004180 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004181
Helmut Schaa26635162009-01-15 09:38:44 +01004182 free_irq(pdev->irq, priv);
4183 pci_disable_msi(pdev);
4184
Zhu Yib481de92007-09-25 17:54:57 -07004185 pci_iounmap(pdev, priv->hw_base);
4186 pci_release_regions(pdev);
4187 pci_disable_device(pdev);
4188 pci_set_drvdata(pdev, NULL);
4189
Samuel Ortize6148912009-01-23 13:45:15 -08004190 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004191 iwlcore_free_geos(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004192 kfree(priv->scan_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07004193 if (priv->ibss_beacon)
4194 dev_kfree_skb(priv->ibss_beacon);
4195
4196 ieee80211_free_hw(priv->hw);
4197}
4198
Zhu Yib481de92007-09-25 17:54:57 -07004199
4200/*****************************************************************************
4201 *
4202 * driver and module entry point
4203 *
4204 *****************************************************************************/
4205
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004206static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004207 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004208 .id_table = iwl3945_hw_card_ids,
4209 .probe = iwl3945_pci_probe,
4210 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004211#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004212 .suspend = iwl_pci_suspend,
4213 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004214#endif
4215};
4216
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004217static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004218{
4219
4220 int ret;
4221 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4222 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004223
4224 ret = iwl3945_rate_control_register();
4225 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004226 printk(KERN_ERR DRV_NAME
4227 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004228 return ret;
4229 }
4230
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004231 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004232 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004233 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004234 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004235 }
Zhu Yib481de92007-09-25 17:54:57 -07004236
4237 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004238
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004239error_register:
4240 iwl3945_rate_control_unregister();
4241 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004242}
4243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004244static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004245{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004246 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004247 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004248}
4249
Reinette Chatrea0987a82008-12-02 12:14:06 -08004250MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004251
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004252module_param_named(antenna, iwl3945_mod_params.antenna, int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004253MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004254module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, S_IRUGO);
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004255MODULE_PARM_DESC(swcrypto,
4256 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004257#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004258module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Zhu Yib481de92007-09-25 17:54:57 -07004259MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004260#endif
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004261module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan,
4262 int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004263MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004264module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, S_IRUGO);
Samuel Ortizaf48d042009-01-23 13:45:19 -08004265MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4266
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004267module_exit(iwl3945_exit);
4268module_init(iwl3945_init);