blob: 70c4b8fba0ee89093c56c056e7152b927da5a37c [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
Joe Perchesc96c31e2010-07-26 14:39:58 -070030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/kernel.h>
33#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070034#include <linux/init.h>
35#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Zhu Yib481de92007-09-25 17:54:57 -070037#include <linux/dma-mapping.h>
38#include <linux/delay.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040039#include <linux/sched.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/skbuff.h>
41#include <linux/netdevice.h>
42#include <linux/wireless.h>
43#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070044#include <linux/etherdevice.h>
45#include <linux/if_arp.h>
46
47#include <net/ieee80211_radiotap.h>
48#include <net/mac80211.h>
49
50#include <asm/div64.h>
51
Samuel Ortiza3139c52008-12-19 10:37:09 +080052#define DRV_NAME "iwl3945"
53
Winkler, Tomasdbb66542008-12-22 11:31:14 +080054#include "iwl-fh.h"
55#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080056#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080057#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070058#include "iwl-3945.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080059#include "iwl-core.h"
Reinette Chatre4a6547c2010-02-18 22:03:02 -080060#include "iwl-helpers.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080061#include "iwl-dev.h"
Reinette Chatre81963d62010-01-22 14:22:57 -080062#include "iwl-spectrum.h"
Zhu Yib481de92007-09-25 17:54:57 -070063
Zhu Yib481de92007-09-25 17:54:57 -070064/*
65 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070066 */
67
68#define DRV_DESCRIPTION \
69"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
70
Samuel Ortizd08853a2009-01-23 13:45:17 -080071#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070072#define VD "d"
73#else
74#define VD
75#endif
76
Reinette Chatre81963d62010-01-22 14:22:57 -080077/*
78 * add "s" to indicate spectrum measurement included.
79 * we add it here to be consistent with previous releases in which
80 * this was configurable.
81 */
82#define DRV_VERSION IWLWIFI_VERSION VD "s"
Reinette Chatre1f447802010-01-15 13:43:41 -080083#define DRV_COPYRIGHT "Copyright(c) 2003-2010 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080084#define DRV_AUTHOR "<ilw@linux.intel.com>"
Zhu Yib481de92007-09-25 17:54:57 -070085
86MODULE_DESCRIPTION(DRV_DESCRIPTION);
87MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080088MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070089MODULE_LICENSE("GPL");
90
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080091 /* module parameters */
92struct iwl_mod_params iwl3945_mod_params = {
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080093 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080094 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080095 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -080099 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
100 * @priv: eeprom and antenna fields are used to determine antenna flags
101 *
102 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
103 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
104 *
105 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
106 * IWL_ANTENNA_MAIN - Force MAIN antenna
107 * IWL_ANTENNA_AUX - Force AUX antenna
108 */
109__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
110{
111 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
112
113 switch (iwl3945_mod_params.antenna) {
114 case IWL_ANTENNA_DIVERSITY:
115 return 0;
116
117 case IWL_ANTENNA_MAIN:
118 if (eeprom->antenna_switch_type)
119 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
120 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
121
122 case IWL_ANTENNA_AUX:
123 if (eeprom->antenna_switch_type)
124 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
125 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
126 }
127
128 /* bad antenna selector value */
129 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
130 iwl3945_mod_params.antenna);
131
132 return 0; /* "diversity" is default if error */
133}
134
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800135static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700136 struct ieee80211_key_conf *keyconf,
137 u8 sta_id)
138{
139 unsigned long flags;
140 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800141 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700142
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800143 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
144 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
145
146 if (sta_id == priv->hw_params.bcast_sta_id)
147 key_flags |= STA_KEY_MULTICAST_MSK;
148
149 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
150 keyconf->hw_key_idx = keyconf->keyidx;
151 key_flags &= ~STA_KEY_FLG_INVALID;
152
Zhu Yib481de92007-09-25 17:54:57 -0700153 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700154 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
155 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
156 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700157 keyconf->keylen);
158
Tomas Winklerc587de02009-06-03 11:44:07 -0700159 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700160 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800161
Tomas Winklerc587de02009-06-03 11:44:07 -0700162 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800163 == STA_KEY_FLG_NO_ENC)
Tomas Winklerc587de02009-06-03 11:44:07 -0700164 priv->stations[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800165 iwl_get_free_ucode_key_index(priv);
166 /* else, we are overriding an existing key => no need to allocated room
167 * in uCode. */
168
Tomas Winklerc587de02009-06-03 11:44:07 -0700169 WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800170 "no space for a new key");
171
Tomas Winklerc587de02009-06-03 11:44:07 -0700172 priv->stations[sta_id].sta.key.key_flags = key_flags;
173 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
174 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700175
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800176 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
177
Tomas Winklerc587de02009-06-03 11:44:07 -0700178 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800179
Zhu Yib481de92007-09-25 17:54:57 -0700180 spin_unlock_irqrestore(&priv->sta_lock, flags);
181
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800182 return ret;
183}
184
185static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
186 struct ieee80211_key_conf *keyconf,
187 u8 sta_id)
188{
189 return -EOPNOTSUPP;
190}
191
192static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
193 struct ieee80211_key_conf *keyconf,
194 u8 sta_id)
195{
196 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700197}
198
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800199static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700200{
201 unsigned long flags;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700202 struct iwl_addsta_cmd sta_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700203
204 spin_lock_irqsave(&priv->sta_lock, flags);
Tomas Winklerc587de02009-06-03 11:44:07 -0700205 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
206 memset(&priv->stations[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800207 sizeof(struct iwl4965_keyinfo));
Tomas Winklerc587de02009-06-03 11:44:07 -0700208 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
209 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
210 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700211 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700212 spin_unlock_irqrestore(&priv->sta_lock, flags);
213
Tomas Winklere1623442009-01-27 14:27:56 -0800214 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700215 return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Zhu Yib481de92007-09-25 17:54:57 -0700216}
217
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700218static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800219 struct ieee80211_key_conf *keyconf, u8 sta_id)
220{
221 int ret = 0;
222
223 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
224
225 switch (keyconf->alg) {
226 case ALG_CCMP:
227 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
228 break;
229 case ALG_TKIP:
230 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
231 break;
232 case ALG_WEP:
233 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
234 break;
235 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700236 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800237 ret = -EINVAL;
238 }
239
240 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
241 keyconf->alg, keyconf->keylen, keyconf->keyidx,
242 sta_id, ret);
243
244 return ret;
245}
246
247static int iwl3945_remove_static_key(struct iwl_priv *priv)
248{
249 int ret = -EOPNOTSUPP;
250
251 return ret;
252}
253
254static int iwl3945_set_static_key(struct iwl_priv *priv,
255 struct ieee80211_key_conf *key)
256{
257 if (key->alg == ALG_WEP)
258 return -EOPNOTSUPP;
259
260 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
261 return -EINVAL;
262}
263
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800264static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700265{
266 struct list_head *element;
267
Tomas Winklere1623442009-01-27 14:27:56 -0800268 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700269 priv->frames_count);
270
271 while (!list_empty(&priv->free_frames)) {
272 element = priv->free_frames.next;
273 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800274 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700275 priv->frames_count--;
276 }
277
278 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800279 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700280 priv->frames_count);
281 priv->frames_count = 0;
282 }
283}
284
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800285static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700286{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800287 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700288 struct list_head *element;
289 if (list_empty(&priv->free_frames)) {
290 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
291 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800292 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700293 return NULL;
294 }
295
296 priv->frames_count++;
297 return frame;
298 }
299
300 element = priv->free_frames.next;
301 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800302 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700303}
304
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800305static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700306{
307 memset(frame, 0, sizeof(*frame));
308 list_add(&frame->list, &priv->free_frames);
309}
310
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800311unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700312 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200313 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700314{
315
Johannes Berg6abbe552010-07-15 05:59:07 -0700316 if (!iwl_is_associated(priv) || !priv->ibss_beacon)
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
Johannes Berg94597ab2010-08-09 10:57:02 -0700438 priv->cfg->ops->utils->tx_cmd_protection(priv, info, fc, &tx_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700439
440 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700441 if (ieee80211_is_mgmt(fc)) {
442 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700443 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700444 else
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700445 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700446 } else {
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700447 tx_cmd->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700448 }
Zhu Yib481de92007-09-25 17:54:57 -0700449
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700450 tx_cmd->driver_txop = 0;
451 tx_cmd->tx_flags = tx_flags;
452 tx_cmd->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700453}
454
Zhu Yib481de92007-09-25 17:54:57 -0700455/*
456 * start REPLY_TX command process
457 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800458static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700459{
460 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200461 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700462 struct iwl3945_tx_cmd *tx_cmd;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800463 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800464 struct iwl_queue *q = NULL;
Johannes Bergc2acea82009-07-24 11:13:05 -0700465 struct iwl_device_cmd *out_cmd;
466 struct iwl_cmd_meta *out_meta;
Zhu Yib481de92007-09-25 17:54:57 -0700467 dma_addr_t phys_addr;
468 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800469 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700470 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800471 u8 id;
472 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700473 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800474 u8 tid = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700475 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700476 u8 wait_write_ptr = 0;
477 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -0700478
479 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800480 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800481 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700482 goto drop_unlock;
483 }
484
Johannes Berge039fa42008-05-15 12:55:29 +0200485 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800486 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700487 goto drop_unlock;
488 }
489
490 unicast = !is_multicast_ether_addr(hdr->addr1);
491 id = 0;
492
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700493 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700494
Samuel Ortizd08853a2009-01-23 13:45:17 -0800495#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700496 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800497 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700498 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800499 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700500 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800501 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700502#endif
503
Zhu Yib481de92007-09-25 17:54:57 -0700504 spin_unlock_irqrestore(&priv->lock, flags);
505
Harvey Harrison7294ec92008-07-15 18:43:59 -0700506 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800507
Johannes Berg2a87c262010-04-30 11:30:45 -0700508 /* Find index into station table for destination station */
Johannes Berg0af8bca2010-04-30 14:08:00 -0700509 sta_id = iwl_sta_id_or_broadcast(priv, info->control.sta);
Zhu Yib481de92007-09-25 17:54:57 -0700510 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800511 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700512 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700513 goto drop;
514 }
515
Tomas Winklere1623442009-01-27 14:27:56 -0800516 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700517
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700518 if (ieee80211_is_data_qos(fc)) {
Johannes Bergf862a232010-05-03 01:20:52 -0700519 u8 *qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700520 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700521 if (unlikely(tid >= MAX_TID_COUNT))
522 goto drop;
Zhu Yib481de92007-09-25 17:54:57 -0700523 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800524
525 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800526 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700527 q = &txq->q;
528
Zhu Yidc57a302009-12-14 14:12:12 -0800529 if ((iwl_queue_space(q) < q->high_mark))
530 goto drop;
531
Zhu Yib481de92007-09-25 17:54:57 -0700532 spin_lock_irqsave(&priv->lock, flags);
533
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800534 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700535
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800536 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800537 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Johannes Bergff0d91c2010-05-17 02:37:34 -0700538 txq->txb[q->write_ptr].skb = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800539
540 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800541 out_cmd = txq->cmd[idx];
Johannes Bergc2acea82009-07-24 11:13:05 -0700542 out_meta = &txq->meta[idx];
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700543 tx_cmd = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700544 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700545 memset(tx_cmd, 0, sizeof(*tx_cmd));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800546
547 /*
548 * Set up the Tx-command (not MAC!) header.
549 * Store the chosen Tx queue and TFD index within the sequence field;
550 * after Tx, uCode's Tx response will return this value so driver can
551 * locate the frame within the tx queue and do post-tx processing.
552 */
Zhu Yib481de92007-09-25 17:54:57 -0700553 out_cmd->hdr.cmd = REPLY_TX;
554 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800555 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800556
557 /* Copy MAC header from skb into command buffer */
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700558 memcpy(tx_cmd->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700559
Reinette Chatredf833b12009-04-21 10:55:48 -0700560
561 if (info->control.hw_key)
562 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
563
564 /* TODO need this for burst mode later on */
565 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
566
567 /* set is_hcca to 0; it probably will never be implemented */
568 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
569
570 /* Total # bytes to be transmitted */
571 len = (u16)skb->len;
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700572 tx_cmd->len = cpu_to_le16(len);
Reinette Chatredf833b12009-04-21 10:55:48 -0700573
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700574 iwl_dbg_log_tx_data_frame(priv, len, hdr);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700575 iwl_update_stats(priv, true, fc, len);
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700576 tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
577 tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Reinette Chatredf833b12009-04-21 10:55:48 -0700578
579 if (!ieee80211_has_morefrags(hdr->frame_control)) {
580 txq->need_update = 1;
Reinette Chatredf833b12009-04-21 10:55:48 -0700581 } else {
582 wait_write_ptr = 1;
583 txq->need_update = 0;
584 }
585
Frans Pop91dd6c22010-03-24 14:19:58 -0700586 IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
Reinette Chatredf833b12009-04-21 10:55:48 -0700587 le16_to_cpu(out_cmd->hdr.sequence));
Frans Pop91dd6c22010-03-24 14:19:58 -0700588 IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Abhijeet Kolekar9744c912009-10-09 13:20:31 -0700589 iwl_print_hex_dump(priv, IWL_DL_TX, tx_cmd, sizeof(*tx_cmd));
590 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr,
Reinette Chatredf833b12009-04-21 10:55:48 -0700591 ieee80211_hdrlen(fc));
592
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800593 /*
594 * Use the first empty entry in this queue's command buffer array
595 * to contain the Tx command and MAC header concatenated together
596 * (payload data will be in another buffer).
597 * Size of this varies, due to varying MAC header length.
598 * If end is not dword aligned, we'll have 2 extra bytes at the end
599 * of the MAC header (device reads on dword boundaries).
600 * We'll tell device about this padding later.
601 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800602 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800603 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700604
605 len_org = len;
606 len = (len + 3) & ~3;
607
608 if (len_org != len)
609 len_org = 1;
610 else
611 len_org = 0;
612
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800613 /* Physical address of this Tx command's header (not MAC header!),
614 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700615 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
616 len, PCI_DMA_TODEVICE);
617 /* we do not map meta data ... so we can safely access address to
618 * provide to unmap command*/
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900619 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
620 dma_unmap_len_set(out_meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700621
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800622 /* Add buffer containing Tx command and MAC(!) header to TFD's
623 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800624 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
625 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700626
Zhu Yib481de92007-09-25 17:54:57 -0700627
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800628 /* Set up TFD's 2nd entry to point directly to remainder of skb,
629 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700630 len = skb->len - hdr_len;
631 if (len) {
632 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
633 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800634 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
635 phys_addr, len,
636 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700637 }
638
Zhu Yib481de92007-09-25 17:54:57 -0700639
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800640 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800641 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800642 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700643 spin_unlock_irqrestore(&priv->lock, flags);
644
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800645 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700646 && priv->mac80211_registered) {
647 if (wait_write_ptr) {
648 spin_lock_irqsave(&priv->lock, flags);
649 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800650 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700651 spin_unlock_irqrestore(&priv->lock, flags);
652 }
653
Johannes Berge4e72fb2009-03-23 17:28:42 +0100654 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700655 }
656
657 return 0;
658
659drop_unlock:
660 spin_unlock_irqrestore(&priv->lock, flags);
661drop:
662 return -1;
663}
664
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800665static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700666 struct ieee80211_measurement_params *params,
667 u8 type)
668{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800669 struct iwl_spectrum_cmd spectrum;
Zhu Yi2f301222009-10-09 17:19:45 +0800670 struct iwl_rx_packet *pkt;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800671 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700672 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
673 .data = (void *)&spectrum,
Johannes Bergc2acea82009-07-24 11:13:05 -0700674 .flags = CMD_WANT_SKB,
Zhu Yib481de92007-09-25 17:54:57 -0700675 };
676 u32 add_time = le64_to_cpu(params->start_time);
677 int rc;
678 int spectrum_resp_status;
679 int duration = le16_to_cpu(params->duration);
680
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800681 if (iwl_is_associated(priv))
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -0700682 add_time = iwl_usecs_to_beacons(priv,
Johannes Berge99f1682010-01-19 10:04:28 -0800683 le64_to_cpu(params->start_time) - priv->_3945.last_tsf,
Zhu Yib481de92007-09-25 17:54:57 -0700684 le16_to_cpu(priv->rxon_timing.beacon_interval));
685
686 memset(&spectrum, 0, sizeof(spectrum));
687
688 spectrum.channel_count = cpu_to_le16(1);
689 spectrum.flags =
690 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
691 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
692 cmd.len = sizeof(spectrum);
693 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
694
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800695 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700696 spectrum.start_time =
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -0700697 iwl_add_beacon_time(priv,
698 priv->_3945.last_beacon_time, add_time,
Zhu Yib481de92007-09-25 17:54:57 -0700699 le16_to_cpu(priv->rxon_timing.beacon_interval));
700 else
701 spectrum.start_time = 0;
702
703 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
704 spectrum.channels[0].channel = params->channel;
705 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800706 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700707 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
708 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
709
Samuel Ortiz518099a2009-01-19 15:30:27 -0800710 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700711 if (rc)
712 return rc;
713
Zhu Yi2f301222009-10-09 17:19:45 +0800714 pkt = (struct iwl_rx_packet *)cmd.reply_page;
715 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800716 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700717 rc = -EIO;
718 }
719
Zhu Yi2f301222009-10-09 17:19:45 +0800720 spectrum_resp_status = le16_to_cpu(pkt->u.spectrum.status);
Zhu Yib481de92007-09-25 17:54:57 -0700721 switch (spectrum_resp_status) {
722 case 0: /* Command will be handled */
Zhu Yi2f301222009-10-09 17:19:45 +0800723 if (pkt->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -0800724 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800725 pkt->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -0700726 priv->measurement_status &= ~MEASUREMENT_READY;
727 }
728 priv->measurement_status |= MEASUREMENT_ACTIVE;
729 rc = 0;
730 break;
731
732 case 1: /* Command will not be handled */
733 rc = -EAGAIN;
734 break;
735 }
736
Zhu Yi64a76b52009-12-10 14:37:21 -0800737 iwl_free_pages(priv, cmd.reply_page);
Zhu Yib481de92007-09-25 17:54:57 -0700738
739 return rc;
740}
Zhu Yib481de92007-09-25 17:54:57 -0700741
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800742static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800743 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700744{
Zhu Yi2f301222009-10-09 17:19:45 +0800745 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800746 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700747 struct delayed_work *pwork;
748
749 palive = &pkt->u.alive_frame;
750
Tomas Winklere1623442009-01-27 14:27:56 -0800751 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700752 "0x%01X 0x%01X\n",
753 palive->is_valid, palive->ver_type,
754 palive->ver_subtype);
755
756 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800757 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800758 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
759 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700760 pwork = &priv->init_alive_start;
761 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800762 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700763 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800764 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700765 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800766 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700767 }
768
769 /* We delay the ALIVE response by 5ms to
770 * give the HW RF Kill time to activate... */
771 if (palive->is_valid == UCODE_VALID_OK)
772 queue_delayed_work(priv->workqueue, pwork,
773 msecs_to_jiffies(5));
774 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800775 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700776}
777
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800778static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800779 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700780{
Helmut Schaac7e035a2009-01-19 13:02:15 +0100781#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800782 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Helmut Schaac7e035a2009-01-19 13:02:15 +0100783#endif
Zhu Yib481de92007-09-25 17:54:57 -0700784
Tomas Winklere1623442009-01-27 14:27:56 -0800785 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -0700786}
787
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800788static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700789{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800790 struct iwl_priv *priv =
791 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700792 struct sk_buff *beacon;
793
794 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200795 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700796
797 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800798 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700799 return;
800 }
801
802 mutex_lock(&priv->mutex);
803 /* new beacon skb is allocated every time; dispose previous.*/
804 if (priv->ibss_beacon)
805 dev_kfree_skb(priv->ibss_beacon);
806
807 priv->ibss_beacon = beacon;
808 mutex_unlock(&priv->mutex);
809
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800810 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700811}
812
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800813static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800814 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700815{
Samuel Ortizd08853a2009-01-23 13:45:17 -0800816#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800817 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800818 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -0700819 u8 rate = beacon->beacon_notify_hdr.rate;
820
Tomas Winklere1623442009-01-27 14:27:56 -0800821 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700822 "tsf %d %d rate %d\n",
823 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
824 beacon->beacon_notify_hdr.failure_frame,
825 le32_to_cpu(beacon->ibss_mgr_status),
826 le32_to_cpu(beacon->high_tsf),
827 le32_to_cpu(beacon->low_tsf), rate);
828#endif
829
Johannes Berg05c914f2008-09-11 00:01:58 +0200830 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700831 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
832 queue_work(priv->workqueue, &priv->beacon_update);
833}
834
Zhu Yib481de92007-09-25 17:54:57 -0700835/* Handle notification from uCode that card's power state is changing
836 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800837static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800838 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700839{
Zhu Yi2f301222009-10-09 17:19:45 +0800840 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700841 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
842 unsigned long status = priv->status;
843
Reinette Chatre4c423a22009-07-17 09:30:26 -0700844 IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700845 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
846 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
847
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +0800848 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700849 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
850
851 if (flags & HW_CARD_DISABLED)
852 set_bit(STATUS_RF_KILL_HW, &priv->status);
853 else
854 clear_bit(STATUS_RF_KILL_HW, &priv->status);
855
856
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800857 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700858
859 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200860 test_bit(STATUS_RF_KILL_HW, &priv->status)))
861 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
862 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700863 else
864 wake_up_interruptible(&priv->wait_command_queue);
865}
866
867/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800868 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700869 *
870 * Setup the RX handlers for each of the reply types sent from the uCode
871 * to the host.
872 *
873 * This function chains into the hardware specific files for them to setup
874 * any hardware specific handlers as well.
875 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800876static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700877{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800878 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
879 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -0800880 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800881 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800882 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
883 iwl_rx_spectrum_measure_notif;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800884 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700885 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -0800886 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800887 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700888
Ben Cahill9fbab512007-11-29 11:09:47 +0800889 /*
890 * The same handler is used for both the REPLY to a discrete
891 * statistics request from the host as well as for the periodic
892 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700893 */
Abhijeet Kolekar17f36fc2010-04-16 10:03:54 -0700894 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_reply_statistics;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800895 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -0700896
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -0800897 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800898 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700899
Ben Cahill9fbab512007-11-29 11:09:47 +0800900 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800901 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700902}
903
Zhu Yib481de92007-09-25 17:54:57 -0700904/************************** RX-FUNCTIONS ****************************/
905/*
906 * Rx theory of operation
907 *
908 * The host allocates 32 DMA target addresses and passes the host address
909 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
910 * 0 to 31
911 *
912 * Rx Queue Indexes
913 * The host/firmware share two index registers for managing the Rx buffers.
914 *
915 * The READ index maps to the first position that the firmware may be writing
916 * to -- the driver can read up to (but not including) this position and get
917 * good data.
918 * The READ index is managed by the firmware once the card is enabled.
919 *
920 * The WRITE index maps to the last position the driver has read from -- the
921 * position preceding WRITE is the last slot the firmware can place a packet.
922 *
923 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
924 * WRITE = READ.
925 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800926 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -0700927 * INDEX position, and WRITE to the last (READ - 1 wrapped)
928 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800929 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -0700930 * and fire the RX interrupt. The driver can then query the READ index and
931 * process as many packets as possible, moving the WRITE index forward as it
932 * resets the Rx queue buffers with new memory.
933 *
934 * The management in the driver is as follows:
935 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
936 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +0800937 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800938 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -0700939 * iwl->rxq is replenished and the READ INDEX is updated (updating the
940 * 'processed' and 'read' driver indexes as well)
941 * + A received packet is processed and handed to the kernel network stack,
942 * detached from the iwl->rxq. The driver 'processed' index is updated.
943 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
944 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
945 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
946 * were enough free buffers and RX_STALLED is set it is cleared.
947 *
948 *
949 * Driver sequence:
950 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800951 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800952 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +0800953 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -0700954 * queue, updates firmware pointers, and updates
955 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800956 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -0700957 *
958 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800959 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -0700960 * READ INDEX, detaching the SKB from the pool.
961 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800962 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -0700963 * slots.
964 * ...
965 *
966 */
967
968/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800969 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -0700970 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800971static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700972 dma_addr_t dma_addr)
973{
974 return cpu_to_le32((u32)dma_addr);
975}
976
977/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800978 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -0700979 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800980 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -0700981 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +0800982 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -0700983 *
984 * This moves the 'write' index forward to catch up with 'processed', and
985 * also updates the memory address in the firmware to reference the new
986 * target buffer.
987 */
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800988static void iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700989{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +0800990 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700991 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +0800992 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -0700993 unsigned long flags;
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800994 int write;
Zhu Yib481de92007-09-25 17:54:57 -0700995
996 spin_lock_irqsave(&rxq->lock, flags);
997 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -0800998 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800999 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001000 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001001 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001002 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001003
1004 /* Point to Rx buffer via next RBD in circular buffer */
Zhu Yi2f301222009-10-09 17:19:45 +08001005 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->page_dma);
Zhu Yib481de92007-09-25 17:54:57 -07001006 rxq->queue[rxq->write] = rxb;
1007 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1008 rxq->free_count--;
1009 }
1010 spin_unlock_irqrestore(&rxq->lock, flags);
1011 /* If the pre-allocated buffer pool is dropping low, schedule to
1012 * refill it */
1013 if (rxq->free_count <= RX_LOW_WATERMARK)
1014 queue_work(priv->workqueue, &priv->rx_replenish);
1015
1016
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001017 /* If we've added more space for the firmware to place data, tell it.
1018 * Increment device's write pointer in multiples of 8. */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001019 if ((rxq->write_actual != (rxq->write & ~0x7))
Zhu Yib481de92007-09-25 17:54:57 -07001020 || (abs(rxq->write - rxq->read) > 7)) {
1021 spin_lock_irqsave(&rxq->lock, flags);
1022 rxq->need_update = 1;
1023 spin_unlock_irqrestore(&rxq->lock, flags);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001024 iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001025 }
Zhu Yib481de92007-09-25 17:54:57 -07001026}
1027
1028/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001029 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001030 *
1031 * When moving to rx_free an SKB is allocated for the slot.
1032 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001033 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001034 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001035 */
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001036static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
Zhu Yib481de92007-09-25 17:54:57 -07001037{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001038 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001039 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001040 struct iwl_rx_mem_buffer *rxb;
Zhu Yi2f301222009-10-09 17:19:45 +08001041 struct page *page;
Zhu Yib481de92007-09-25 17:54:57 -07001042 unsigned long flags;
Zhu Yi29b1b262009-10-23 13:42:25 -07001043 gfp_t gfp_mask = priority;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001044
1045 while (1) {
1046 spin_lock_irqsave(&rxq->lock, flags);
1047
1048 if (list_empty(&rxq->rx_used)) {
1049 spin_unlock_irqrestore(&rxq->lock, flags);
1050 return;
1051 }
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001052 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001053
Reinette Chatref82a9242009-09-17 10:43:56 -07001054 if (rxq->free_count > RX_LOW_WATERMARK)
Zhu Yi29b1b262009-10-23 13:42:25 -07001055 gfp_mask |= __GFP_NOWARN;
Zhu Yi2f301222009-10-09 17:19:45 +08001056
1057 if (priv->hw_params.rx_page_order > 0)
Zhu Yi29b1b262009-10-23 13:42:25 -07001058 gfp_mask |= __GFP_COMP;
Zhu Yi2f301222009-10-09 17:19:45 +08001059
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001060 /* Alloc a new receive buffer */
Zhu Yi29b1b262009-10-23 13:42:25 -07001061 page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order);
Zhu Yi2f301222009-10-09 17:19:45 +08001062 if (!page) {
Zhu Yib481de92007-09-25 17:54:57 -07001063 if (net_ratelimit())
Reinette Chatref82a9242009-09-17 10:43:56 -07001064 IWL_DEBUG_INFO(priv, "Failed to allocate SKB buffer.\n");
1065 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
1066 net_ratelimit())
1067 IWL_CRIT(priv, "Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n",
1068 priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL",
1069 rxq->free_count);
Zhu Yib481de92007-09-25 17:54:57 -07001070 /* We don't reschedule replenish work here -- we will
1071 * call the restock method and if it still needs
1072 * more buffers it will schedule replenish */
1073 break;
1074 }
Zhu Yi12342c42007-12-20 11:27:32 +08001075
Reinette Chatrede0bd502009-09-11 10:38:12 -07001076 spin_lock_irqsave(&rxq->lock, flags);
1077 if (list_empty(&rxq->rx_used)) {
1078 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001079 __free_pages(page, priv->hw_params.rx_page_order);
Reinette Chatrede0bd502009-09-11 10:38:12 -07001080 return;
1081 }
1082 element = rxq->rx_used.next;
1083 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
1084 list_del(element);
1085 spin_unlock_irqrestore(&rxq->lock, flags);
1086
Zhu Yi2f301222009-10-09 17:19:45 +08001087 rxb->page = page;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001088 /* Get physical address of RB/SKB */
Zhu Yi2f301222009-10-09 17:19:45 +08001089 rxb->page_dma = pci_map_page(priv->pci_dev, page, 0,
1090 PAGE_SIZE << priv->hw_params.rx_page_order,
1091 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001092
1093 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi2f301222009-10-09 17:19:45 +08001094
Zhu Yib481de92007-09-25 17:54:57 -07001095 list_add_tail(&rxb->list, &rxq->rx_free);
1096 rxq->free_count++;
Zhu Yi2f301222009-10-09 17:19:45 +08001097 priv->alloc_rxb_page++;
1098
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001099 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001100 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001101}
1102
Reinette Chatredf833b12009-04-21 10:55:48 -07001103void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1104{
1105 unsigned long flags;
1106 int i;
1107 spin_lock_irqsave(&rxq->lock, flags);
1108 INIT_LIST_HEAD(&rxq->rx_free);
1109 INIT_LIST_HEAD(&rxq->rx_used);
1110 /* Fill the rx_used queue with _all_ of the Rx buffers */
1111 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1112 /* In the reset function, these buffers may have been allocated
1113 * to an SKB, so we need to unmap and free potential storage */
Zhu Yi2f301222009-10-09 17:19:45 +08001114 if (rxq->pool[i].page != NULL) {
1115 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1116 PAGE_SIZE << priv->hw_params.rx_page_order,
1117 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001118 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001119 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001120 }
1121 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1122 }
1123
1124 /* Set us so that we have processed and used all buffers, but have
1125 * not restocked the Rx queue with fresh buffers */
1126 rxq->read = rxq->write = 0;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001127 rxq->write_actual = 0;
Zhu Yi2f301222009-10-09 17:19:45 +08001128 rxq->free_count = 0;
Reinette Chatredf833b12009-04-21 10:55:48 -07001129 spin_unlock_irqrestore(&rxq->lock, flags);
1130}
Reinette Chatredf833b12009-04-21 10:55:48 -07001131
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001132void iwl3945_rx_replenish(void *data)
1133{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001134 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001135 unsigned long flags;
1136
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001137 iwl3945_rx_allocate(priv, GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001138
1139 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001140 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001141 spin_unlock_irqrestore(&priv->lock, flags);
1142}
1143
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001144static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1145{
1146 iwl3945_rx_allocate(priv, GFP_ATOMIC);
1147
1148 iwl3945_rx_queue_restock(priv);
1149}
1150
1151
Reinette Chatredf833b12009-04-21 10:55:48 -07001152/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1153 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1154 * This free routine walks the list of POOL entries and if SKB is set to
1155 * non NULL it is unmapped and freed
1156 */
1157static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1158{
1159 int i;
1160 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
Zhu Yi2f301222009-10-09 17:19:45 +08001161 if (rxq->pool[i].page != NULL) {
1162 pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1163 PAGE_SIZE << priv->hw_params.rx_page_order,
1164 PCI_DMA_FROMDEVICE);
Zhu Yi64a76b52009-12-10 14:37:21 -08001165 __iwl_free_pages(priv, rxq->pool[i].page);
Zhu Yi2f301222009-10-09 17:19:45 +08001166 rxq->pool[i].page = NULL;
Reinette Chatredf833b12009-04-21 10:55:48 -07001167 }
1168 }
1169
Stanislaw Gruszkaf36d04a2010-02-10 05:07:45 -08001170 dma_free_coherent(&priv->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
Emmanuel Grumbachd5b25c92010-06-07 13:21:46 -07001171 rxq->bd_dma);
Stanislaw Gruszkaf36d04a2010-02-10 05:07:45 -08001172 dma_free_coherent(&priv->pci_dev->dev, sizeof(struct iwl_rb_status),
1173 rxq->rb_stts, rxq->rb_stts_dma);
Reinette Chatredf833b12009-04-21 10:55:48 -07001174 rxq->bd = NULL;
1175 rxq->rb_stts = NULL;
1176}
Reinette Chatredf833b12009-04-21 10:55:48 -07001177
1178
Zhu Yib481de92007-09-25 17:54:57 -07001179/* Convert linear signal-to-noise ratio into dB */
1180static u8 ratio2dB[100] = {
1181/* 0 1 2 3 4 5 6 7 8 9 */
1182 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1183 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1184 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1185 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1186 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1187 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1188 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1189 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1190 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1191 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1192};
1193
1194/* Calculates a relative dB value from a ratio of linear
1195 * (i.e. not dB) signal levels.
1196 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001197int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001198{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001199 /* 1000:1 or higher just report as 60 dB */
1200 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001201 return 60;
1202
Adrian Bunk221c80c2008-02-02 23:19:01 +02001203 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001204 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001205 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001206 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001207
1208 /* We shouldn't see this */
1209 if (sig_ratio < 1)
1210 return 0;
1211
1212 /* Use table for ratios 1:1 - 99:1 */
1213 return (int)ratio2dB[sig_ratio];
1214}
1215
Zhu Yib481de92007-09-25 17:54:57 -07001216/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001217 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001218 *
1219 * Uses the priv->rx_handlers callback function array to invoke
1220 * the appropriate handlers, including command responses,
1221 * frame-received notifications, and other notifications.
1222 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001223static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001224{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001225 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001226 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001227 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001228 u32 r, i;
1229 int reclaim;
1230 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001231 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001232 u32 count = 8;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001233 int total_empty = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001234
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001235 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1236 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001237 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001238 i = rxq->read;
1239
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001240 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001241 total_empty = r - rxq->write_actual;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001242 if (total_empty < 0)
1243 total_empty += RX_QUEUE_SIZE;
1244
1245 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001246 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001247 /* Rx interrupt, but nothing sent from uCode */
1248 if (i == r)
Reinette Chatreaf472a952009-08-28 09:58:50 -07001249 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001250
1251 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001252 int len;
1253
Zhu Yib481de92007-09-25 17:54:57 -07001254 rxb = rxq->queue[i];
1255
Ben Cahill9fbab512007-11-29 11:09:47 +08001256 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001257 * then a bug has been introduced in the queue refilling
1258 * routines -- catch it here */
1259 BUG_ON(rxb == NULL);
1260
1261 rxq->queue[i] = NULL;
1262
Zhu Yi2f301222009-10-09 17:19:45 +08001263 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1264 PAGE_SIZE << priv->hw_params.rx_page_order,
1265 PCI_DMA_FROMDEVICE);
1266 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001267
Johannes Bergf4989d92010-05-28 04:08:30 -07001268 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1269 len += sizeof(u32); /* account for status word */
1270 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001271
Zhu Yib481de92007-09-25 17:54:57 -07001272 /* Reclaim a command buffer only if this packet is a response
1273 * to a (driver-originated) command.
1274 * If the packet (e.g. Rx frame) originated from uCode,
1275 * there is no command buffer to reclaim.
1276 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1277 * but apparently a few don't get set; catch them here. */
1278 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1279 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1280 (pkt->hdr.cmd != REPLY_TX);
1281
1282 /* Based on type of command response or notification,
1283 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001284 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001285 if (priv->rx_handlers[pkt->hdr.cmd]) {
Reinette Chatreaf472a952009-08-28 09:58:50 -07001286 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r, i,
Zhu Yib481de92007-09-25 17:54:57 -07001287 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001288 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001289 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001290 } else {
1291 /* No handling needed */
Zhu Yi2f301222009-10-09 17:19:45 +08001292 IWL_DEBUG_RX(priv,
1293 "r %d i %d No handler needed for %s, 0x%02x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001294 r, i, get_cmd_string(pkt->hdr.cmd),
1295 pkt->hdr.cmd);
1296 }
1297
Zhu Yi29b1b262009-10-23 13:42:25 -07001298 /*
1299 * XXX: After here, we should always check rxb->page
1300 * against NULL before touching it or its virtual
1301 * memory (pkt). Because some rx_handler might have
1302 * already taken or freed the pages.
1303 */
1304
Zhu Yib481de92007-09-25 17:54:57 -07001305 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001306 /* Invoke any callbacks, transfer the buffer to caller,
1307 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001308 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001309 if (rxb->page)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001310 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001311 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001312 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001313 }
1314
Zhu Yi73005152009-10-23 13:42:32 -07001315 /* Reuse the page if possible. For notification packets and
1316 * SKBs that fail to Rx correctly, add them back into the
1317 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001318 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001319 if (rxb->page != NULL) {
1320 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1321 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1322 PCI_DMA_FROMDEVICE);
1323 list_add_tail(&rxb->list, &rxq->rx_free);
1324 rxq->free_count++;
1325 } else
1326 list_add_tail(&rxb->list, &rxq->rx_used);
1327
Zhu Yib481de92007-09-25 17:54:57 -07001328 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001329
Zhu Yib481de92007-09-25 17:54:57 -07001330 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001331 /* If there are a lot of unused frames,
1332 * restock the Rx queue so ucode won't assert. */
1333 if (fill_rx) {
1334 count++;
1335 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001336 rxq->read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001337 iwl3945_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001338 count = 0;
1339 }
1340 }
Zhu Yib481de92007-09-25 17:54:57 -07001341 }
1342
1343 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001344 rxq->read = i;
Abhijeet Kolekard14d4442009-06-03 11:44:08 -07001345 if (fill_rx)
1346 iwl3945_rx_replenish_now(priv);
1347 else
1348 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001349}
1350
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001351/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001352static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001353{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001354 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001355 synchronize_irq(priv->pci_dev->irq);
1356 tasklet_kill(&priv->irq_tasklet);
1357}
1358
Zhu Yib481de92007-09-25 17:54:57 -07001359static const char *desc_lookup(int i)
1360{
1361 switch (i) {
1362 case 1:
1363 return "FAIL";
1364 case 2:
1365 return "BAD_PARAM";
1366 case 3:
1367 return "BAD_CHECKSUM";
1368 case 4:
1369 return "NMI_INTERRUPT";
1370 case 5:
1371 return "SYSASSERT";
1372 case 6:
1373 return "FATAL_ERROR";
1374 }
1375
1376 return "UNKNOWN";
1377}
1378
1379#define ERROR_START_OFFSET (1 * sizeof(u32))
1380#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1381
Reinette Chatreb7a79402009-09-25 14:24:23 -07001382void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001383{
1384 u32 i;
1385 u32 desc, time, count, base, data1;
1386 u32 blink1, blink2, ilink1, ilink2;
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1389
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001390 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001391 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001392 return;
1393 }
1394
Zhu Yib481de92007-09-25 17:54:57 -07001395
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001396 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001397
1398 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001399 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1400 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1401 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001402 }
1403
Winkler, Tomas15b16872008-12-19 10:37:33 +08001404 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001405 "ilink1 nmiPC Line\n");
1406 for (i = ERROR_START_OFFSET;
1407 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1408 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001409 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001410 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001411 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001412 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001413 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001414 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001415 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001416 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001417 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001418 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001419 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001420 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001421 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001422
Winkler, Tomas15b16872008-12-19 10:37:33 +08001423 IWL_ERR(priv,
Jay Sternberg87563712010-06-14 14:40:40 -07001424 "%-13s (0x%X) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
Winkler, Tomas15b16872008-12-19 10:37:33 +08001425 desc_lookup(desc), desc, time, blink1, blink2,
1426 ilink1, ilink2, data1);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001427 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, 0,
1428 0, blink1, blink2, ilink1, ilink2);
Zhu Yib481de92007-09-25 17:54:57 -07001429 }
Zhu Yib481de92007-09-25 17:54:57 -07001430}
1431
Ben Cahillf58177b2007-11-29 11:09:43 +08001432#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001433
1434/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001435 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001436 *
Zhu Yib481de92007-09-25 17:54:57 -07001437 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001438static int iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
1439 u32 num_events, u32 mode,
1440 int pos, char **buf, size_t bufsz)
Zhu Yib481de92007-09-25 17:54:57 -07001441{
1442 u32 i;
1443 u32 base; /* SRAM byte address of event log header */
1444 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1445 u32 ptr; /* SRAM byte address of log data */
1446 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08001447 unsigned long reg_flags;
Zhu Yib481de92007-09-25 17:54:57 -07001448
1449 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001450 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001451
1452 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1453
1454 if (mode == 0)
1455 event_size = 2 * sizeof(u32);
1456 else
1457 event_size = 3 * sizeof(u32);
1458
1459 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1460
Ben Cahille5854472009-11-06 14:52:58 -08001461 /* Make sure device is powered up for SRAM reads */
1462 spin_lock_irqsave(&priv->reg_lock, reg_flags);
1463 iwl_grab_nic_access(priv);
1464
1465 /* Set starting address; reads will auto-increment */
1466 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1467 rmb();
1468
Zhu Yib481de92007-09-25 17:54:57 -07001469 /* "time" is actually "data" for mode 0 (no timestamp).
1470 * place event id # at far right for easier visual parsing. */
1471 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08001472 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1473 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001474 if (mode == 0) {
1475 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001476 if (bufsz) {
1477 pos += scnprintf(*buf + pos, bufsz - pos,
1478 "0x%08x:%04u\n",
1479 time, ev);
1480 } else {
1481 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1482 trace_iwlwifi_dev_ucode_event(priv, 0,
1483 time, ev);
1484 }
Winkler, Tomas15b16872008-12-19 10:37:33 +08001485 } else {
Ben Cahille5854472009-11-06 14:52:58 -08001486 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001487 if (bufsz) {
1488 pos += scnprintf(*buf + pos, bufsz - pos,
1489 "%010u:0x%08x:%04u\n",
1490 time, data, ev);
1491 } else {
1492 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n",
1493 time, data, ev);
1494 trace_iwlwifi_dev_ucode_event(priv, time,
1495 data, ev);
1496 }
Zhu Yib481de92007-09-25 17:54:57 -07001497 }
1498 }
Ben Cahille5854472009-11-06 14:52:58 -08001499
1500 /* Allow device to power down */
1501 iwl_release_nic_access(priv);
1502 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001503 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001504}
1505
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001506/**
1507 * iwl3945_print_last_event_logs - Dump the newest # of event log to syslog
1508 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001509static int iwl3945_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001510 u32 num_wraps, u32 next_entry,
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001511 u32 size, u32 mode,
1512 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001513{
1514 /*
1515 * display the newest DEFAULT_LOG_ENTRIES entries
1516 * i.e the entries just before the next ont that uCode would fill.
1517 */
1518 if (num_wraps) {
1519 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001520 pos = iwl3945_print_event_log(priv,
1521 capacity - (size - next_entry),
1522 size - next_entry, mode,
1523 pos, buf, bufsz);
1524 pos = iwl3945_print_event_log(priv, 0,
1525 next_entry, mode,
1526 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001527 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001528 pos = iwl3945_print_event_log(priv, next_entry - size,
1529 size, mode,
1530 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001531 } else {
1532 if (next_entry < size)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001533 pos = iwl3945_print_event_log(priv, 0,
1534 next_entry, mode,
1535 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001536 else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001537 pos = iwl3945_print_event_log(priv, next_entry - size,
1538 size, mode,
1539 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001540 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001541 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001542}
1543
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001544#define DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES (20)
1545
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001546int iwl3945_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
1547 char **buf, bool display)
Zhu Yib481de92007-09-25 17:54:57 -07001548{
Zhu Yib481de92007-09-25 17:54:57 -07001549 u32 base; /* SRAM byte address of event log header */
1550 u32 capacity; /* event log capacity in # entries */
1551 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1552 u32 num_wraps; /* # times uCode wrapped to top of log */
1553 u32 next_entry; /* index of next entry to be written by uCode */
1554 u32 size; /* # entries that we'll print */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001555 int pos = 0;
1556 size_t bufsz = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001557
1558 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001559 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001560 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001561 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001562 }
1563
Zhu Yib481de92007-09-25 17:54:57 -07001564 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001565 capacity = iwl_read_targ_mem(priv, base);
1566 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1567 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1568 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001569
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001570 if (capacity > priv->cfg->max_event_log_size) {
Ben Cahill84c40692009-11-06 14:52:57 -08001571 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001572 capacity, priv->cfg->max_event_log_size);
1573 capacity = priv->cfg->max_event_log_size;
Ben Cahill84c40692009-11-06 14:52:57 -08001574 }
1575
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001576 if (next_entry > priv->cfg->max_event_log_size) {
Ben Cahill84c40692009-11-06 14:52:57 -08001577 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Wey-Yi Guy678b3852010-03-26 12:54:37 -07001578 next_entry, priv->cfg->max_event_log_size);
1579 next_entry = priv->cfg->max_event_log_size;
Ben Cahill84c40692009-11-06 14:52:57 -08001580 }
1581
Zhu Yib481de92007-09-25 17:54:57 -07001582 size = num_wraps ? capacity : next_entry;
1583
1584 /* bail out if nothing in log */
1585 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001586 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001587 return pos;
Zhu Yib481de92007-09-25 17:54:57 -07001588 }
1589
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001590#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08001591 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001592 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1593 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1594#else
1595 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1596 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1597#endif
1598
1599 IWL_ERR(priv, "Start IWL Event Log Dump: display last %d count\n",
1600 size);
Zhu Yib481de92007-09-25 17:54:57 -07001601
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001602#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001603 if (display) {
1604 if (full_log)
1605 bufsz = capacity * 48;
1606 else
1607 bufsz = size * 48;
1608 *buf = kmalloc(bufsz, GFP_KERNEL);
1609 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08001610 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001611 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001612 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
1613 /* if uCode has wrapped back to top of log,
1614 * start at the oldest entry,
1615 * i.e the next one that uCode would fill.
1616 */
1617 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001618 pos = iwl3945_print_event_log(priv, next_entry,
1619 capacity - next_entry, mode,
1620 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001621
1622 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001623 pos = iwl3945_print_event_log(priv, 0, next_entry, mode,
1624 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001625 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001626 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1627 next_entry, size, mode,
1628 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001629#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001630 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1631 next_entry, size, mode,
1632 pos, buf, bufsz);
Reinette Chatreb7a79402009-09-25 14:24:23 -07001633#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08001634 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08001635}
1636
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001637static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001638{
1639 u32 inta, handled = 0;
1640 u32 inta_fh;
1641 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001642#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001643 u32 inta_mask;
1644#endif
1645
1646 spin_lock_irqsave(&priv->lock, flags);
1647
1648 /* Ack/clear/reset pending uCode interrupts.
1649 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1650 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001651 inta = iwl_read32(priv, CSR_INT);
1652 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001653
1654 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1655 * Any new interrupts that happen after this, either while we're
1656 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001657 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1658 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001659
Samuel Ortizd08853a2009-01-23 13:45:17 -08001660#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001661 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001662 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001663 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001664 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001665 inta, inta_mask, inta_fh);
1666 }
1667#endif
1668
Zhu Yi2f301222009-10-09 17:19:45 +08001669 spin_unlock_irqrestore(&priv->lock, flags);
1670
Zhu Yib481de92007-09-25 17:54:57 -07001671 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1672 * atomic, make sure that inta covers all the interrupts that
1673 * we've discovered, even if FH interrupt came in just after
1674 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001675 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001676 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001677 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001678 inta |= CSR_INT_BIT_FH_TX;
1679
1680 /* Now service all interrupt bits discovered above. */
1681 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001682 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001683
1684 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001685 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001686
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001687 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001688 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001689
1690 handled |= CSR_INT_BIT_HW_ERR;
1691
Zhu Yib481de92007-09-25 17:54:57 -07001692 return;
1693 }
1694
Samuel Ortizd08853a2009-01-23 13:45:17 -08001695#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001696 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001697 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001698 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001699 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001700 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001701 priv->isr_stats.sch++;
1702 }
Zhu Yib481de92007-09-25 17:54:57 -07001703
1704 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001705 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001706 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001707 priv->isr_stats.alive++;
1708 }
Zhu Yib481de92007-09-25 17:54:57 -07001709 }
1710#endif
1711 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001712 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001713
Zhu Yib481de92007-09-25 17:54:57 -07001714 /* Error detected by uCode */
1715 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001716 IWL_ERR(priv, "Microcode SW error detected. "
1717 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001718 priv->isr_stats.sw++;
1719 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001720 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001721 handled |= CSR_INT_BIT_SW_ERR;
1722 }
1723
1724 /* uCode wakes up after power-down sleep */
1725 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001726 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001727 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001728 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1729 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1730 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1731 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1732 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1733 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001734
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001735 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001736 handled |= CSR_INT_BIT_WAKEUP;
1737 }
1738
1739 /* All uCode command responses, including Tx command responses,
1740 * Rx "responses" (frame-received notification), and other
1741 * notifications from uCode come through here*/
1742 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001743 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001744 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001745 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1746 }
1747
1748 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001749 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001750 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001751
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001752 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07001753 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1754 (FH39_SRVC_CHNL), 0x0);
Zhu Yib481de92007-09-25 17:54:57 -07001755 handled |= CSR_INT_BIT_FH_TX;
1756 }
1757
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001758 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001759 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001760 priv->isr_stats.unhandled++;
1761 }
Zhu Yib481de92007-09-25 17:54:57 -07001762
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001763 if (inta & ~priv->inta_mask) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001764 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001765 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001766 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001767 }
1768
1769 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001770 /* only Re-enable if disabled by irq */
1771 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001772 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001773
Samuel Ortizd08853a2009-01-23 13:45:17 -08001774#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001775 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001776 inta = iwl_read32(priv, CSR_INT);
1777 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1778 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001779 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001780 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1781 }
1782#endif
Zhu Yib481de92007-09-25 17:54:57 -07001783}
1784
Abhijeet Kolekar14023642010-06-02 21:15:10 -07001785static int iwl3945_get_single_channel_for_scan(struct iwl_priv *priv,
1786 struct ieee80211_vif *vif,
1787 enum ieee80211_band band,
1788 struct iwl3945_scan_channel *scan_ch)
1789{
1790 const struct ieee80211_supported_band *sband;
1791 u16 passive_dwell = 0;
1792 u16 active_dwell = 0;
1793 int added = 0;
1794 u8 channel = 0;
1795
1796 sband = iwl_get_hw_mode(priv, band);
1797 if (!sband) {
1798 IWL_ERR(priv, "invalid band\n");
1799 return added;
1800 }
1801
1802 active_dwell = iwl_get_active_dwell_time(priv, band, 0);
1803 passive_dwell = iwl_get_passive_dwell_time(priv, band, vif);
1804
1805 if (passive_dwell <= active_dwell)
1806 passive_dwell = active_dwell + 1;
1807
1808
1809 channel = iwl_get_single_channel_number(priv, band);
1810
1811 if (channel) {
1812 scan_ch->channel = channel;
1813 scan_ch->type = 0; /* passive */
1814 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1815 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
1816 /* Set txpower levels to defaults */
1817 scan_ch->tpc.dsp_atten = 110;
1818 if (band == IEEE80211_BAND_5GHZ)
1819 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1820 else
1821 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1822 added++;
1823 } else
1824 IWL_ERR(priv, "no valid channel found\n");
1825 return added;
1826}
1827
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001828static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001829 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001830 u8 is_active, u8 n_probes,
Johannes Berg1dda6d22010-04-29 04:43:06 -07001831 struct iwl3945_scan_channel *scan_ch,
1832 struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07001833{
Johannes Berg4e05c232009-06-19 13:52:44 -07001834 struct ieee80211_channel *chan;
Johannes Berg8318d782008-01-24 19:38:38 +01001835 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001836 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001837 u16 passive_dwell = 0;
1838 u16 active_dwell = 0;
1839 int added, i;
1840
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001841 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001842 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001843 return 0;
1844
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001845 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
Johannes Berg1dda6d22010-04-29 04:43:06 -07001846 passive_dwell = iwl_get_passive_dwell_time(priv, band, vif);
Zhu Yib481de92007-09-25 17:54:57 -07001847
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001848 if (passive_dwell <= active_dwell)
1849 passive_dwell = active_dwell + 1;
1850
Johannes Berg4e05c232009-06-19 13:52:44 -07001851 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1852 chan = priv->scan_request->channels[i];
1853
1854 if (chan->band != band)
Johannes Berg182e2e62008-04-04 10:41:56 +02001855 continue;
1856
Johannes Berg4e05c232009-06-19 13:52:44 -07001857 scan_ch->channel = chan->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001858
Samuel Ortize6148912009-01-23 13:45:15 -08001859 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001860 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001861 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001862 scan_ch->channel);
1863 continue;
1864 }
1865
Zhu Yib481de92007-09-25 17:54:57 -07001866 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1867 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001868 /* If passive , set up for auto-switch
1869 * and use long active_dwell time.
1870 */
1871 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg4e05c232009-06-19 13:52:44 -07001872 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001873 scan_ch->type = 0; /* passive */
1874 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1875 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1876 } else {
1877 scan_ch->type = 1; /* active */
1878 }
1879
1880 /* Set direct probe bits. These may be used both for active
1881 * scan channels (probes gets sent right away),
1882 * or for passive channels (probes get se sent only after
1883 * hearing clear Rx packet).*/
1884 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1885 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001886 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001887 } else {
1888 /* uCode v1 does not allow setting direct probe bits on
1889 * passive channel. */
1890 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001891 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001892 }
Zhu Yib481de92007-09-25 17:54:57 -07001893
Ben Cahill9fbab512007-11-29 11:09:47 +08001894 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07001895 scan_ch->tpc.dsp_atten = 110;
1896 /* scan_pwr_info->tpc.dsp_atten; */
1897
1898 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01001899 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001900 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1901 else {
1902 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1903 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08001904 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001905 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07001906 */
1907 }
1908
Tomas Winklere1623442009-01-27 14:27:56 -08001909 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07001910 scan_ch->channel,
1911 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1912 (scan_ch->type & 1) ?
1913 active_dwell : passive_dwell);
1914
1915 scan_ch++;
1916 added++;
1917 }
1918
Frans Pop91dd6c22010-03-24 14:19:58 -07001919 IWL_DEBUG_SCAN(priv, "total channels to scan %d\n", added);
Zhu Yib481de92007-09-25 17:54:57 -07001920 return added;
1921}
1922
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001923static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001924 struct ieee80211_rate *rates)
1925{
1926 int i;
1927
Dan Carpenter8e1a53c2010-03-28 14:55:00 +03001928 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001929 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1930 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1931 rates[i].hw_value_short = i;
1932 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08001933 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07001934 /*
Johannes Berg8318d782008-01-24 19:38:38 +01001935 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07001936 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001937 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01001938 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07001939 }
Zhu Yib481de92007-09-25 17:54:57 -07001940 }
1941}
1942
Zhu Yib481de92007-09-25 17:54:57 -07001943/******************************************************************************
1944 *
1945 * uCode download functions
1946 *
1947 ******************************************************************************/
1948
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001949static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001950{
Tomas Winkler98c92212008-01-14 17:46:20 -08001951 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1952 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1953 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1954 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1955 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1956 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001957}
1958
1959/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001960 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07001961 * looking at all data.
1962 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001963static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07001964{
1965 u32 val;
1966 u32 save_len = len;
1967 int rc = 0;
1968 u32 errcnt;
1969
Tomas Winklere1623442009-01-27 14:27:56 -08001970 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001971
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001972 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001973 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07001974
1975 errcnt = 0;
1976 for (; len > 0; len -= sizeof(u32), image++) {
1977 /* read data comes through single port, auto-incr addr */
1978 /* NOTE: Use the debugless read so we don't flood kernel log
1979 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001980 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07001981 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001982 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07001983 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1984 save_len - len, val, le32_to_cpu(*image));
1985 rc = -EIO;
1986 errcnt++;
1987 if (errcnt >= 20)
1988 break;
1989 }
1990 }
1991
Zhu Yib481de92007-09-25 17:54:57 -07001992
1993 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08001994 IWL_DEBUG_INFO(priv,
1995 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07001996
1997 return rc;
1998}
1999
2000
2001/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002002 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002003 * using sample data 100 bytes apart. If these sample points are good,
2004 * it's a pretty good bet that everything between them is good, too.
2005 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002006static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002007{
2008 u32 val;
2009 int rc = 0;
2010 u32 errcnt = 0;
2011 u32 i;
2012
Tomas Winklere1623442009-01-27 14:27:56 -08002013 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002014
Zhu Yib481de92007-09-25 17:54:57 -07002015 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2016 /* read data comes through single port, auto-incr addr */
2017 /* NOTE: Use the debugless read so we don't flood kernel log
2018 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002019 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002020 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002021 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002022 if (val != le32_to_cpu(*image)) {
2023#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002024 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002025 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2026 i, val, *image);
2027#endif
2028 rc = -EIO;
2029 errcnt++;
2030 if (errcnt >= 3)
2031 break;
2032 }
2033 }
2034
Zhu Yib481de92007-09-25 17:54:57 -07002035 return rc;
2036}
2037
2038
2039/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002040 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002041 * and verify its contents
2042 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002043static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002044{
2045 __le32 *image;
2046 u32 len;
2047 int rc = 0;
2048
2049 /* Try bootstrap */
2050 image = (__le32 *)priv->ucode_boot.v_addr;
2051 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002052 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002053 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002054 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002055 return 0;
2056 }
2057
2058 /* Try initialize */
2059 image = (__le32 *)priv->ucode_init.v_addr;
2060 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002061 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002062 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002063 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002064 return 0;
2065 }
2066
2067 /* Try runtime/protocol */
2068 image = (__le32 *)priv->ucode_code.v_addr;
2069 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002070 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002071 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002072 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002073 return 0;
2074 }
2075
Winkler, Tomas15b16872008-12-19 10:37:33 +08002076 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002077
Ben Cahill9fbab512007-11-29 11:09:47 +08002078 /* Since nothing seems to match, show first several data entries in
2079 * instruction SRAM, so maybe visual inspection will give a clue.
2080 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002081 image = (__le32 *)priv->ucode_boot.v_addr;
2082 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002083 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002084
2085 return rc;
2086}
2087
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002088static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002089{
2090 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002091 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002092}
2093
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002094#define IWL3945_UCODE_GET(item) \
2095static u32 iwl3945_ucode_get_##item(const struct iwl_ucode_header *ucode)\
2096{ \
2097 return le32_to_cpu(ucode->u.v1.item); \
2098}
2099
2100static u32 iwl3945_ucode_get_header_size(u32 api_ver)
2101{
Johannes Berg22adba22010-04-28 12:09:14 -07002102 return 24;
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002103}
2104
2105static u8 *iwl3945_ucode_get_data(const struct iwl_ucode_header *ucode)
2106{
2107 return (u8 *) ucode->u.v1.data;
2108}
2109
2110IWL3945_UCODE_GET(inst_size);
2111IWL3945_UCODE_GET(data_size);
2112IWL3945_UCODE_GET(init_size);
2113IWL3945_UCODE_GET(init_data_size);
2114IWL3945_UCODE_GET(boot_size);
2115
Zhu Yib481de92007-09-25 17:54:57 -07002116/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002117 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002118 *
2119 * Copy into buffers for card to fetch via bus-mastering
2120 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002121static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002122{
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002123 const struct iwl_ucode_header *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002124 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002125 const struct firmware *ucode_raw;
2126 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002127 const char *name_pre = priv->cfg->fw_name_pre;
2128 const unsigned int api_max = priv->cfg->ucode_api_max;
2129 const unsigned int api_min = priv->cfg->ucode_api_min;
2130 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002131 u8 *src;
2132 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002133 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002134
2135 /* Ask kernel firmware_class module to get the boot firmware off disk.
2136 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002137 for (index = api_max; index >= api_min; index--) {
2138 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2139 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2140 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002141 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002142 buf, ret);
2143 if (ret == -ENOENT)
2144 continue;
2145 else
2146 goto error;
2147 } else {
2148 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002149 IWL_ERR(priv, "Loaded firmware %s, "
2150 "which is deprecated. "
2151 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002152 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002153 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2154 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002155 buf, ucode_raw->size);
2156 break;
2157 }
Zhu Yib481de92007-09-25 17:54:57 -07002158 }
2159
Reinette Chatrea0987a82008-12-02 12:14:06 -08002160 if (ret < 0)
2161 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002162
2163 /* Make sure that we got at least our header! */
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002164 if (ucode_raw->size < iwl3945_ucode_get_header_size(1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002165 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002166 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002167 goto err_release;
2168 }
2169
2170 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002171 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002172
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002173 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002174 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002175 inst_size = iwl3945_ucode_get_inst_size(ucode);
2176 data_size = iwl3945_ucode_get_data_size(ucode);
2177 init_size = iwl3945_ucode_get_init_size(ucode);
2178 init_data_size = iwl3945_ucode_get_init_data_size(ucode);
2179 boot_size = iwl3945_ucode_get_boot_size(ucode);
2180 src = iwl3945_ucode_get_data(ucode);
Zhu Yib481de92007-09-25 17:54:57 -07002181
Reinette Chatrea0987a82008-12-02 12:14:06 -08002182 /* api_ver should match the api version forming part of the
2183 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002184 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002185
2186 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002187 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002188 "Driver supports v%u, firmware is v%u.\n",
2189 api_max, api_ver);
2190 priv->ucode_ver = 0;
2191 ret = -EINVAL;
2192 goto err_release;
2193 }
2194 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002195 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002196 "got %u. New firmware can be obtained "
2197 "from http://www.intellinuxwireless.org.\n",
2198 api_max, api_ver);
2199
Tomas Winkler978785a2008-12-19 10:37:31 +08002200 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2201 IWL_UCODE_MAJOR(priv->ucode_ver),
2202 IWL_UCODE_MINOR(priv->ucode_ver),
2203 IWL_UCODE_API(priv->ucode_ver),
2204 IWL_UCODE_SERIAL(priv->ucode_ver));
2205
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002206 snprintf(priv->hw->wiphy->fw_version,
2207 sizeof(priv->hw->wiphy->fw_version),
2208 "%u.%u.%u.%u",
2209 IWL_UCODE_MAJOR(priv->ucode_ver),
2210 IWL_UCODE_MINOR(priv->ucode_ver),
2211 IWL_UCODE_API(priv->ucode_ver),
2212 IWL_UCODE_SERIAL(priv->ucode_ver));
2213
Tomas Winklere1623442009-01-27 14:27:56 -08002214 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002215 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002216 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2217 inst_size);
2218 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2219 data_size);
2220 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2221 init_size);
2222 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2223 init_data_size);
2224 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2225 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002226
Reinette Chatrea0987a82008-12-02 12:14:06 -08002227
Zhu Yib481de92007-09-25 17:54:57 -07002228 /* Verify size of file vs. image size info in file's header */
Johannes Berg93b1a2f2010-04-28 12:09:13 -07002229 if (ucode_raw->size != iwl3945_ucode_get_header_size(api_ver) +
Zhu Yib481de92007-09-25 17:54:57 -07002230 inst_size + data_size + init_size +
2231 init_data_size + boot_size) {
2232
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002233 IWL_DEBUG_INFO(priv,
2234 "uCode file size %zd does not match expected size\n",
2235 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002236 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002237 goto err_release;
2238 }
2239
2240 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002241 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002242 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002243 inst_size);
2244 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002245 goto err_release;
2246 }
2247
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002248 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002249 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002250 data_size);
2251 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002252 goto err_release;
2253 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002254 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002255 IWL_DEBUG_INFO(priv,
2256 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002257 init_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_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002262 IWL_DEBUG_INFO(priv,
2263 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002264 init_data_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 (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002269 IWL_DEBUG_INFO(priv,
2270 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002271 boot_size);
2272 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002273 goto err_release;
2274 }
2275
2276 /* Allocate ucode buffers for card's bus-master loading ... */
2277
2278 /* Runtime instructions and 2 copies of data:
2279 * 1) unmodified from disk
2280 * 2) backup cache for save/restore during power-downs */
2281 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002282 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002283
2284 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002285 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002286
2287 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002288 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002289
2290 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002291 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002292 goto err_pci_alloc;
2293
Tomas Winkler90e759d2007-11-29 11:09:41 +08002294 /* Initialization instructions and data */
2295 if (init_size && init_data_size) {
2296 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002297 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002298
2299 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002300 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002301
2302 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2303 goto err_pci_alloc;
2304 }
2305
2306 /* Bootstrap (instructions only, no data) */
2307 if (boot_size) {
2308 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002309 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002310
2311 if (!priv->ucode_boot.v_addr)
2312 goto err_pci_alloc;
2313 }
2314
Zhu Yib481de92007-09-25 17:54:57 -07002315 /* Copy images into buffers for card's bus-master reads ... */
2316
2317 /* Runtime instructions (first block of data in file) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002318 len = inst_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002319 IWL_DEBUG_INFO(priv,
2320 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002321 memcpy(priv->ucode_code.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002322 src += len;
2323
Tomas Winklere1623442009-01-27 14:27:56 -08002324 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002325 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2326
2327 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002328 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002329 len = data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002330 IWL_DEBUG_INFO(priv,
2331 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002332 memcpy(priv->ucode_data.v_addr, src, len);
2333 memcpy(priv->ucode_data_backup.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002334 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002335
2336 /* Initialization instructions (3rd block) */
2337 if (init_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002338 len = init_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002339 IWL_DEBUG_INFO(priv,
2340 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002341 memcpy(priv->ucode_init.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002342 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002343 }
2344
2345 /* Initialization data (4th block) */
2346 if (init_data_size) {
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002347 len = init_data_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002348 IWL_DEBUG_INFO(priv,
2349 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002350 memcpy(priv->ucode_init_data.v_addr, src, len);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002351 src += len;
Zhu Yib481de92007-09-25 17:54:57 -07002352 }
2353
2354 /* Bootstrap instructions (5th block) */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002355 len = boot_size;
Tomas Winklere1623442009-01-27 14:27:56 -08002356 IWL_DEBUG_INFO(priv,
2357 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002358 memcpy(priv->ucode_boot.v_addr, src, len);
2359
2360 /* We have our copies now, allow OS release its copies */
2361 release_firmware(ucode_raw);
2362 return 0;
2363
2364 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002365 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002366 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002367 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002368
2369 err_release:
2370 release_firmware(ucode_raw);
2371
2372 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002373 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002374}
2375
2376
2377/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002378 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002379 *
2380 * Tell initialization uCode where to find runtime uCode.
2381 *
2382 * BSM registers initially contain pointers to initialization uCode.
2383 * We need to replace them to load runtime uCode inst and data,
2384 * and to save runtime data when powering down.
2385 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002386static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002387{
2388 dma_addr_t pinst;
2389 dma_addr_t pdata;
Zhu Yib481de92007-09-25 17:54:57 -07002390
2391 /* bits 31:0 for 3945 */
2392 pinst = priv->ucode_code.p_addr;
2393 pdata = priv->ucode_data_backup.p_addr;
2394
Zhu Yib481de92007-09-25 17:54:57 -07002395 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002396 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2397 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2398 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002399 priv->ucode_data.len);
2400
Tomas Winklera96a27f2008-10-23 23:48:56 -07002401 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002402 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002403 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002404 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2405
Tomas Winklere1623442009-01-27 14:27:56 -08002406 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002407
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07002408 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002409}
2410
2411/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002412 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002413 *
2414 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2415 *
Zhu Yib481de92007-09-25 17:54:57 -07002416 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002417 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002418static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002419{
2420 /* Check alive response for "valid" sign from uCode */
2421 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2422 /* We had an error bringing up the hardware, so take it
2423 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002424 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002425 goto restart;
2426 }
2427
2428 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2429 * This is a paranoid check, because we would not have gotten the
2430 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002431 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002432 /* Runtime instruction load was bad;
2433 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002434 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002435 goto restart;
2436 }
2437
2438 /* Send pointers to protocol/runtime uCode image ... init code will
2439 * load and launch runtime uCode, which will send us another "Alive"
2440 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002441 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002442 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002443 /* Runtime instruction load won't happen;
2444 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002445 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002446 goto restart;
2447 }
2448 return;
2449
2450 restart:
2451 queue_work(priv->workqueue, &priv->restart);
2452}
2453
Zhu Yib481de92007-09-25 17:54:57 -07002454/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002455 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002456 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002457 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002458 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002459static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002460{
Zhu Yib481de92007-09-25 17:54:57 -07002461 int thermal_spin = 0;
2462 u32 rfkill;
2463
Tomas Winklere1623442009-01-27 14:27:56 -08002464 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002465
2466 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2467 /* We had an error bringing up the hardware, so take it
2468 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002469 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002470 goto restart;
2471 }
2472
2473 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2474 * This is a paranoid check, because we would not have gotten the
2475 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002476 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002477 /* Runtime instruction load was bad;
2478 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002479 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002480 goto restart;
2481 }
2482
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002483 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002484 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Zhu Yib481de92007-09-25 17:54:57 -07002485
2486 if (rfkill & 0x1) {
2487 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002488 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002489 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002490 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002491 thermal_spin++;
2492 udelay(10);
2493 }
2494
2495 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002496 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002497 thermal_spin * 10);
2498 } else
2499 set_bit(STATUS_RF_KILL_HW, &priv->status);
2500
Ben Cahill9fbab512007-11-29 11:09:47 +08002501 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002502 set_bit(STATUS_ALIVE, &priv->status);
2503
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002504 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2505 /* Enable timer to monitor the driver queues */
2506 mod_timer(&priv->monitor_recover,
2507 jiffies +
2508 msecs_to_jiffies(priv->cfg->monitor_recover_period));
2509 }
2510
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002511 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002512 return;
2513
Johannes Berg36d68252008-05-15 12:55:26 +02002514 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002515
Johannes Berg470ab2d2010-01-21 11:23:30 -08002516 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002517
Ben Cahill4d6ccbf2009-11-13 11:56:29 -08002518 iwl_power_update_mode(priv, true);
Zhu Yib481de92007-09-25 17:54:57 -07002519
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002520 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002521 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002522 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002523
Abhijeet Kolekar8a9b9922009-06-12 13:22:52 -07002524 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002525 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2526 } else {
2527 /* Initialize our rx_config data */
Johannes Berg1dda6d22010-04-29 04:43:06 -07002528 iwl_connection_init_rx_config(priv, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002529 }
2530
Ben Cahill9fbab512007-11-29 11:09:47 +08002531 /* Configure Bluetooth device coexistence support */
Johannes Berg65b52bd2010-04-13 01:04:31 -07002532 priv->cfg->ops->hcmd->send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002533
2534 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002535 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002536
Zhu Yib481de92007-09-25 17:54:57 -07002537 iwl3945_reg_txpower_periodic(priv);
2538
Johannes Berge932a602009-10-02 13:44:03 -07002539 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002540
Tomas Winklere1623442009-01-27 14:27:56 -08002541 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002542 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002543 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002544
Zhu Yib481de92007-09-25 17:54:57 -07002545 return;
2546
2547 restart:
2548 queue_work(priv->workqueue, &priv->restart);
2549}
2550
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002551static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002552
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002553static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002554{
2555 unsigned long flags;
2556 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2557 struct ieee80211_conf *conf = NULL;
2558
Tomas Winklere1623442009-01-27 14:27:56 -08002559 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002560
2561 conf = ieee80211_get_hw_conf(priv->hw);
2562
2563 if (!exit_pending)
2564 set_bit(STATUS_EXIT_PENDING, &priv->status);
2565
Reinette Chatre7e246192010-02-18 22:58:32 -08002566 /* Station information will now be cleared in device */
Johannes Berg2c810cc2010-04-29 00:53:29 -07002567 iwl_clear_ucode_stations(priv);
2568 iwl_dealloc_bcast_station(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002569 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002570
2571 /* Unblock any waiting calls */
2572 wake_up_interruptible_all(&priv->wait_command_queue);
2573
Zhu Yib481de92007-09-25 17:54:57 -07002574 /* Wipe out the EXIT_PENDING status bit if we are not actually
2575 * exiting the module */
2576 if (!exit_pending)
2577 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2578
2579 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002580 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002581
2582 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002583 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002584 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002585 spin_unlock_irqrestore(&priv->lock, flags);
2586 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002587
2588 if (priv->mac80211_registered)
2589 ieee80211_stop_queues(priv->hw);
2590
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002591 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002592 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002593 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002594 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2595 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002596 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2597 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002598 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2599 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002600 goto exit;
2601 }
2602
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002603 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002604 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002605 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2606 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002607 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2608 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002609 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002610 STATUS_FW_ERROR |
2611 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2612 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002613
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002614 iwl3945_hw_txq_ctx_stop(priv);
2615 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002616
Ben Cahill309e7312009-11-06 14:53:03 -08002617 /* Power-down device's busmaster DMA clocks */
2618 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002619 udelay(5);
2620
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002621 /* Stop the device, and put it in low power state */
2622 priv->cfg->ops->lib->apm_ops.stop(priv);
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002623
Zhu Yib481de92007-09-25 17:54:57 -07002624 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002625 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002626
2627 if (priv->ibss_beacon)
2628 dev_kfree_skb(priv->ibss_beacon);
2629 priv->ibss_beacon = NULL;
2630
2631 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002632 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002633}
2634
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002635static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002636{
2637 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002638 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002639 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002640
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002641 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002642}
2643
2644#define MAX_HW_RESTARTS 5
2645
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002646static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002647{
2648 int rc, i;
2649
Johannes Berg2c810cc2010-04-29 00:53:29 -07002650 rc = iwl_alloc_bcast_station(priv, false);
2651 if (rc)
2652 return rc;
2653
Zhu Yib481de92007-09-25 17:54:57 -07002654 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002655 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002656 return -EIO;
2657 }
2658
Reinette Chatree903fbd2008-01-30 22:05:15 -08002659 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002660 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002661 return -EIO;
2662 }
2663
Zhu Yie655b9f2008-01-24 02:19:38 -08002664 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002665 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002666 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2667 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2668 else {
2669 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002670 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2671 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002672 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002673
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002674 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002675
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002676 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002677 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002678 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002679 return rc;
2680 }
2681
2682 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002683 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2684 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002685 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2686
2687 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002688 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002689 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002690
2691 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002692 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2693 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002694
2695 /* Copy original ucode data image from disk into backup cache.
2696 * This will be used to initialize the on-board processor's
2697 * data SRAM for a clean start when the runtime program first loads. */
2698 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002699 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002700
Zhu Yie655b9f2008-01-24 02:19:38 -08002701 /* We return success when we resume from suspend and rf_kill is on. */
2702 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2703 return 0;
2704
Zhu Yib481de92007-09-25 17:54:57 -07002705 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2706
Zhu Yib481de92007-09-25 17:54:57 -07002707 /* load bootstrap state machine,
2708 * load bootstrap program into processor's memory,
2709 * prepare to load the "initialize" uCode */
Abhijeet Kolekar75a9a922010-02-26 15:17:01 -08002710 rc = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002711
2712 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002713 IWL_ERR(priv,
2714 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002715 continue;
2716 }
2717
2718 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002719 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002720
Tomas Winklere1623442009-01-27 14:27:56 -08002721 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002722
2723 return 0;
2724 }
2725
2726 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002727 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002728 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002729
2730 /* tried to restart and config the device for as long as our
2731 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002732 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002733 return -EIO;
2734}
2735
2736
2737/*****************************************************************************
2738 *
2739 * Workqueue callbacks
2740 *
2741 *****************************************************************************/
2742
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002743static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002744{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002745 struct iwl_priv *priv =
2746 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002747
2748 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2749 return;
2750
2751 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002752 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002753 mutex_unlock(&priv->mutex);
2754}
2755
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002756static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002757{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002758 struct iwl_priv *priv =
2759 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002760
2761 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2762 return;
2763
2764 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002765 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002766 mutex_unlock(&priv->mutex);
2767}
2768
Ben Cahill743cdf12009-10-09 13:20:26 -07002769/*
2770 * 3945 cannot interrupt driver when hardware rf kill switch toggles;
2771 * driver must poll CSR_GP_CNTRL_REG register for change. This register
2772 * *is* readable even when device has been SW_RESET into low power mode
2773 * (e.g. during RF KILL).
2774 */
Helmut Schaa26635162009-01-15 09:38:44 +01002775static void iwl3945_rfkill_poll(struct work_struct *data)
2776{
2777 struct iwl_priv *priv =
Johannes Bergee525d12010-01-21 06:09:28 -08002778 container_of(data, struct iwl_priv, _3945.rfkill_poll.work);
Ben Cahill743cdf12009-10-09 13:20:26 -07002779 bool old_rfkill = test_bit(STATUS_RF_KILL_HW, &priv->status);
2780 bool new_rfkill = !(iwl_read32(priv, CSR_GP_CNTRL)
2781 & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
Helmut Schaa26635162009-01-15 09:38:44 +01002782
Ben Cahill743cdf12009-10-09 13:20:26 -07002783 if (new_rfkill != old_rfkill) {
2784 if (new_rfkill)
2785 set_bit(STATUS_RF_KILL_HW, &priv->status);
2786 else
2787 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Helmut Schaa26635162009-01-15 09:38:44 +01002788
Ben Cahill743cdf12009-10-09 13:20:26 -07002789 wiphy_rfkill_set_hw_state(priv->hw->wiphy, new_rfkill);
Helmut Schaa26635162009-01-15 09:38:44 +01002790
Ben Cahill743cdf12009-10-09 13:20:26 -07002791 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
2792 new_rfkill ? "disable radio" : "enable radio");
2793 }
2794
2795 /* Keep this running, even if radio now enabled. This will be
2796 * cancelled in mac_start() if system decides to start again */
Johannes Bergee525d12010-01-21 06:09:28 -08002797 queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
Helmut Schaa26635162009-01-15 09:38:44 +01002798 round_jiffies_relative(2 * HZ));
2799
2800}
2801
Johannes Berg1dda6d22010-04-29 04:43:06 -07002802void iwl3945_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07002803{
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002804 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002805 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002806 .len = sizeof(struct iwl3945_scan_cmd),
Johannes Bergc2acea82009-07-24 11:13:05 -07002807 .flags = CMD_SIZE_HUGE,
Zhu Yib481de92007-09-25 17:54:57 -07002808 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002809 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002810 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002811 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002812 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002813 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002814
2815 conf = ieee80211_get_hw_conf(priv->hw);
2816
Reinette Chatrefbc9f972009-05-15 16:13:46 -07002817 cancel_delayed_work(&priv->scan_check);
2818
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002819 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002820 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002821 goto done;
2822 }
2823
Tomas Winklera96a27f2008-10-23 23:48:56 -07002824 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002825 * was given the chance to run... */
2826 if (!test_bit(STATUS_SCANNING, &priv->status))
2827 goto done;
2828
2829 /* This should never be called or scheduled if there is currently
2830 * a scan active in the hardware. */
2831 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002832 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2833 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002834 goto done;
2835 }
2836
2837 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002838 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002839 goto done;
2840 }
2841
2842 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002843 IWL_DEBUG_HC(priv,
2844 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002845 goto done;
2846 }
2847
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002848 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002849 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002850 goto done;
2851 }
2852
2853 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002854 IWL_DEBUG_HC(priv,
2855 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002856 goto done;
2857 }
2858
Johannes Berg811ecc92010-04-06 04:12:41 -07002859 if (!priv->scan_cmd) {
2860 priv->scan_cmd = kmalloc(sizeof(struct iwl3945_scan_cmd) +
2861 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
2862 if (!priv->scan_cmd) {
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002863 IWL_DEBUG_SCAN(priv, "Fail to allocate scan memory\n");
Zhu Yib481de92007-09-25 17:54:57 -07002864 goto done;
2865 }
2866 }
Johannes Berg811ecc92010-04-06 04:12:41 -07002867 scan = priv->scan_cmd;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002868 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002869
2870 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2871 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2872
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002873 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002874 u16 interval = 0;
2875 u32 extra;
2876 u32 suspend_time = 100;
2877 u32 scan_suspend_time = 100;
2878 unsigned long flags;
2879
Tomas Winklere1623442009-01-27 14:27:56 -08002880 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07002881
2882 spin_lock_irqsave(&priv->lock, flags);
John W. Linvillea6e492b2010-07-22 15:24:56 -04002883 if (priv->is_internal_short_scan)
2884 interval = 0;
2885 else
2886 interval = vif->bss_conf.beacon_int;
Zhu Yib481de92007-09-25 17:54:57 -07002887 spin_unlock_irqrestore(&priv->lock, flags);
2888
2889 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08002890 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07002891 if (!interval)
2892 interval = suspend_time;
2893 /*
2894 * suspend time format:
2895 * 0-19: beacon interval in usec (time before exec.)
2896 * 20-23: 0
2897 * 24-31: number of beacons (suspend between channels)
2898 */
2899
2900 extra = (suspend_time / interval) << 24;
2901 scan_suspend_time = 0xFF0FFFFF &
2902 (extra | ((suspend_time % interval) * 1024));
2903
2904 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08002905 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002906 scan_suspend_time, interval);
2907 }
2908
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002909 if (priv->is_internal_short_scan) {
2910 IWL_DEBUG_SCAN(priv, "Start internal passive scan.\n");
2911 } else if (priv->scan_request->n_ssids) {
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002912 int i, p = 0;
2913 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2914 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2915 /* always does wildcard anyway */
2916 if (!priv->scan_request->ssids[i].ssid_len)
2917 continue;
2918 scan->direct_scan[p].id = WLAN_EID_SSID;
2919 scan->direct_scan[p].len =
2920 priv->scan_request->ssids[i].ssid_len;
2921 memcpy(scan->direct_scan[p].ssid,
2922 priv->scan_request->ssids[i].ssid,
2923 priv->scan_request->ssids[i].ssid_len);
2924 n_probes++;
2925 p++;
2926 }
2927 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002928 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002929 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002930
2931 /* We don't build a direct scan probe request; the uCode will do
2932 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07002933 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002934 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002935 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2936
2937 /* flags + rate selection */
2938
Johannes Berg00700ee2010-04-06 04:12:37 -07002939 switch (priv->scan_band) {
2940 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07002941 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2942 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2943 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002944 band = IEEE80211_BAND_2GHZ;
Johannes Berg00700ee2010-04-06 04:12:37 -07002945 break;
2946 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07002947 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07002948 /*
2949 * If active scaning is requested but a certain channel
2950 * is marked passive, we can do active scanning if we
2951 * detect transmissions.
2952 */
Johannes Berg96ff5642010-04-30 14:42:15 -07002953 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
2954 IWL_GOOD_CRC_TH_DISABLED;
Johannes Berg8318d782008-01-24 19:38:38 +01002955 band = IEEE80211_BAND_5GHZ;
Johannes Berg00700ee2010-04-06 04:12:37 -07002956 break;
2957 default:
2958 IWL_WARN(priv, "Invalid scan band\n");
Zhu Yib481de92007-09-25 17:54:57 -07002959 goto done;
2960 }
2961
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002962 if (!priv->is_internal_short_scan) {
2963 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002964 iwl_fill_probe_req(priv,
2965 (struct ieee80211_mgmt *)scan->data,
Johannes Berg3a0b9aa2010-05-12 03:33:12 -07002966 vif->addr,
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002967 priv->scan_request->ie,
2968 priv->scan_request->ie_len,
2969 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002970 } else {
Johannes Berg3a0b9aa2010-05-12 03:33:12 -07002971 /* use bcast addr, will not be transmitted but must be valid */
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002972 scan->tx_cmd.len = cpu_to_le16(
2973 iwl_fill_probe_req(priv,
2974 (struct ieee80211_mgmt *)scan->data,
Johannes Berg3a0b9aa2010-05-12 03:33:12 -07002975 iwl_bcast_addr, NULL, 0,
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08002976 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
2977 }
Zhu Yib481de92007-09-25 17:54:57 -07002978 /* select Rx antennas */
2979 scan->flags |= iwl3945_get_antenna_flags(priv);
2980
Abhijeet Kolekar14023642010-06-02 21:15:10 -07002981 if (priv->is_internal_short_scan) {
2982 scan->channel_count =
2983 iwl3945_get_single_channel_for_scan(priv, vif, band,
2984 (void *)&scan->data[le16_to_cpu(
2985 scan->tx_cmd.len)]);
2986 } else {
2987 scan->channel_count =
2988 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
2989 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)], vif);
2990 }
Zhu Yib481de92007-09-25 17:54:57 -07002991
Reinette Chatre14b54332008-11-04 12:21:35 -08002992 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002993 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08002994 goto done;
2995 }
2996
Zhu Yib481de92007-09-25 17:54:57 -07002997 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002998 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07002999 cmd.data = scan;
3000 scan->len = cpu_to_le16(cmd.len);
3001
3002 set_bit(STATUS_SCAN_HW, &priv->status);
Wey-Yi Guy4f4d4082010-02-24 08:28:30 -08003003 if (iwl_send_cmd_sync(priv, &cmd))
Zhu Yib481de92007-09-25 17:54:57 -07003004 goto done;
3005
3006 queue_delayed_work(priv->workqueue, &priv->scan_check,
3007 IWL_SCAN_CHECK_WATCHDOG);
3008
Zhu Yib481de92007-09-25 17:54:57 -07003009 return;
3010
3011 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003012 /* can not perform scan make sure we clear scanning
3013 * bits from status so next scan request can be performed.
3014 * if we dont clear scanning status bit here all next scan
3015 * will fail
3016 */
3017 clear_bit(STATUS_SCAN_HW, &priv->status);
3018 clear_bit(STATUS_SCANNING, &priv->status);
3019
Ian Schram01ebd062007-10-25 17:15:22 +08003020 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003021 queue_work(priv->workqueue, &priv->scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07003022}
3023
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003024static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003025{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003026 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003027
3028 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3029 return;
3030
Johannes Berg19cc1082009-05-08 13:44:36 -07003031 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3032 mutex_lock(&priv->mutex);
3033 priv->vif = NULL;
3034 priv->is_open = 0;
3035 mutex_unlock(&priv->mutex);
3036 iwl3945_down(priv);
3037 ieee80211_restart_hw(priv->hw);
3038 } else {
3039 iwl3945_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003040
3041 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3042 return;
3043
3044 mutex_lock(&priv->mutex);
3045 __iwl3945_up(priv);
3046 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003047 }
Zhu Yib481de92007-09-25 17:54:57 -07003048}
3049
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003050static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003051{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003052 struct iwl_priv *priv =
3053 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003054
3055 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3056 return;
3057
3058 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003059 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003060 mutex_unlock(&priv->mutex);
3061}
3062
Johannes Berg1dda6d22010-04-29 04:43:06 -07003063void iwl3945_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003064{
Zhu Yib481de92007-09-25 17:54:57 -07003065 int rc = 0;
3066 struct ieee80211_conf *conf = NULL;
3067
Johannes Berg1dda6d22010-04-29 04:43:06 -07003068 if (!vif || !priv->is_open)
3069 return;
3070
3071 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003072 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003073 return;
3074 }
3075
Tomas Winklere1623442009-01-27 14:27:56 -08003076 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003077 vif->bss_conf.aid, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003078
3079 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3080 return;
3081
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003082 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003083
Zhu Yib481de92007-09-25 17:54:57 -07003084 conf = ieee80211_get_hw_conf(priv->hw);
3085
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003086 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003087 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003088
Tomas Winkler28afaf92008-12-19 10:37:06 +08003089 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Johannes Berg1dda6d22010-04-29 04:43:06 -07003090 iwl_setup_rxon_timing(priv, vif);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003091 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003092 sizeof(priv->rxon_timing), &priv->rxon_timing);
3093 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003094 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003095 "Attempting to continue.\n");
3096
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003097 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003098
Johannes Berg1dda6d22010-04-29 04:43:06 -07003099 priv->staging_rxon.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003100
Tomas Winklere1623442009-01-27 14:27:56 -08003101 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003102 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003103
Johannes Bergc213d742010-05-06 12:21:40 -07003104 if (vif->bss_conf.use_short_preamble)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003105 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003106 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003107 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003108
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003109 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003110 if (vif->bss_conf.use_short_slot)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003111 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003112 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003113 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003114 }
3115
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003116 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003117
Johannes Berg1dda6d22010-04-29 04:43:06 -07003118 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003119 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003120 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003121 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003122 case NL80211_IFTYPE_ADHOC:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003123 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003124 break;
Zhu Yib481de92007-09-25 17:54:57 -07003125 default:
Johannes Berg1dda6d22010-04-29 04:43:06 -07003126 IWL_ERR(priv, "%s Should not be called in %d mode\n",
3127 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003128 break;
3129 }
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003130}
3131
Zhu Yib481de92007-09-25 17:54:57 -07003132/*****************************************************************************
3133 *
3134 * mac80211 entry point functions
3135 *
3136 *****************************************************************************/
3137
Zhu Yi5a669262008-01-14 17:46:18 -08003138#define UCODE_READY_TIMEOUT (2 * HZ)
3139
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003140static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003141{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003142 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003143 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003144
Tomas Winklere1623442009-01-27 14:27:56 -08003145 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003146
3147 /* we should be verifying the device is ready to be opened */
3148 mutex_lock(&priv->mutex);
3149
Zhu Yi5a669262008-01-14 17:46:18 -08003150 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3151 * ucode filename and max sizes are card-specific. */
3152
3153 if (!priv->ucode_code.len) {
3154 ret = iwl3945_read_ucode(priv);
3155 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003156 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003157 mutex_unlock(&priv->mutex);
3158 goto out_release_irq;
3159 }
3160 }
3161
Zhu Yie655b9f2008-01-24 02:19:38 -08003162 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003163
Zhu Yib481de92007-09-25 17:54:57 -07003164 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003165
Zhu Yie655b9f2008-01-24 02:19:38 -08003166 if (ret)
3167 goto out_release_irq;
3168
Tomas Winklere1623442009-01-27 14:27:56 -08003169 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003170
Zhu Yi5a669262008-01-14 17:46:18 -08003171 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3172 * mac80211 will not be run successfully. */
3173 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3174 test_bit(STATUS_READY, &priv->status),
3175 UCODE_READY_TIMEOUT);
3176 if (!ret) {
3177 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003178 IWL_ERR(priv,
3179 "Wait for START_ALIVE timeout after %dms.\n",
3180 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003181 ret = -ETIMEDOUT;
3182 goto out_release_irq;
3183 }
3184 }
3185
Helmut Schaa26635162009-01-15 09:38:44 +01003186 /* ucode is running and will send rfkill notifications,
3187 * no need to poll the killswitch state anymore */
Johannes Bergee525d12010-01-21 06:09:28 -08003188 cancel_delayed_work(&priv->_3945.rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01003189
Johannes Berge932a602009-10-02 13:44:03 -07003190 iwl_led_start(priv);
3191
Zhu Yie655b9f2008-01-24 02:19:38 -08003192 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003193 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003194 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003195
3196out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003197 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003198 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003199 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003200}
3201
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003202static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003203{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003204 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003205
Tomas Winklere1623442009-01-27 14:27:56 -08003206 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003207
Zhu Yie655b9f2008-01-24 02:19:38 -08003208 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003209 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003210 return;
3211 }
3212
Zhu Yib481de92007-09-25 17:54:57 -07003213 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003214
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003215 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003216 /* stop mac, cancel any scan request and clear
3217 * RXON_FILTER_ASSOC_MSK BIT
3218 */
Zhu Yi5a669262008-01-14 17:46:18 -08003219 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003220 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003221 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003222 }
3223
Zhu Yi5a669262008-01-14 17:46:18 -08003224 iwl3945_down(priv);
3225
3226 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003227
3228 /* start polling the killswitch state again */
Johannes Bergee525d12010-01-21 06:09:28 -08003229 queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
Helmut Schaa26635162009-01-15 09:38:44 +01003230 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003231
Tomas Winklere1623442009-01-27 14:27:56 -08003232 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003233}
3234
Johannes Berge039fa42008-05-15 12:55:29 +02003235static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003236{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003237 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003238
Tomas Winklere1623442009-01-27 14:27:56 -08003239 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003240
Tomas Winklere1623442009-01-27 14:27:56 -08003241 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003242 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003243
Johannes Berge039fa42008-05-15 12:55:29 +02003244 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003245 dev_kfree_skb_any(skb);
3246
Tomas Winklere1623442009-01-27 14:27:56 -08003247 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003248 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003249}
3250
Johannes Berg1dda6d22010-04-29 04:43:06 -07003251void iwl3945_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003252{
3253 int rc = 0;
3254
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003255 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003256 return;
3257
3258 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003259 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003260
3261 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003262 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003263 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003264
3265 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003266 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Johannes Berg1dda6d22010-04-29 04:43:06 -07003267 iwl_setup_rxon_timing(priv, vif);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003268 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3269 sizeof(priv->rxon_timing),
3270 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003271 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003272 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003273 "Attempting to continue.\n");
3274
Johannes Berg1dda6d22010-04-29 04:43:06 -07003275 priv->staging_rxon.assoc_id = 0;
3276
Johannes Bergc213d742010-05-06 12:21:40 -07003277 if (vif->bss_conf.use_short_preamble)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003278 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003279 RXON_FLG_SHORT_PREAMBLE_MSK;
3280 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003281 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003282 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3283
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003284 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003285 if (vif->bss_conf.use_short_slot)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003286 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003287 RXON_FLG_SHORT_SLOT_MSK;
3288 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003289 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003290 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003291 }
3292 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003293 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003294 iwlcore_commit_rxon(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08003295 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003296 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003297
3298 /* FIXME - we need to add code here to detect a totally new
3299 * configuration, reset the AP, unassoc, rxon timing, assoc,
3300 * clear sta table, add BCAST sta... */
3301}
3302
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003303static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003304 struct ieee80211_vif *vif,
3305 struct ieee80211_sta *sta,
3306 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003307{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003308 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003309 int ret = 0;
3310 u8 sta_id = IWL_INVALID_STATION;
3311 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003312
Tomas Winklere1623442009-01-27 14:27:56 -08003313 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003314
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003315 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003316 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003317 return -EOPNOTSUPP;
3318 }
3319
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003320 static_key = !iwl_is_associated(priv);
3321
3322 if (!static_key) {
Johannes Berg0af8bca2010-04-30 14:08:00 -07003323 sta_id = iwl_sta_id_or_broadcast(priv, sta);
3324 if (sta_id == IWL_INVALID_STATION)
3325 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003326 }
3327
3328 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003329 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003330
Zhu Yib481de92007-09-25 17:54:57 -07003331 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003332 case SET_KEY:
3333 if (static_key)
3334 ret = iwl3945_set_static_key(priv, key);
3335 else
3336 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3337 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003338 break;
3339 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003340 if (static_key)
3341 ret = iwl3945_remove_static_key(priv);
3342 else
3343 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3344 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003345 break;
3346 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003347 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003348 }
3349
Johannes Berg72e15d72010-02-19 11:42:32 -08003350 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003351 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003352
Winkler, Tomas42986792009-01-19 15:30:22 -08003353 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003354}
3355
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003356static int iwl3945_mac_sta_add(struct ieee80211_hw *hw,
3357 struct ieee80211_vif *vif,
3358 struct ieee80211_sta *sta)
3359{
3360 struct iwl_priv *priv = hw->priv;
Johannes Bergfd1af152010-04-30 11:30:43 -07003361 struct iwl3945_sta_priv *sta_priv = (void *)sta->drv_priv;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003362 int ret;
Johannes Bergfd1af152010-04-30 11:30:43 -07003363 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003364 u8 sta_id;
3365
3366 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3367 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003368 mutex_lock(&priv->mutex);
3369 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3370 sta->addr);
3371 sta_priv->common.sta_id = IWL_INVALID_STATION;
3372
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003373
3374 ret = iwl_add_station_common(priv, sta->addr, is_ap, &sta->ht_cap,
3375 &sta_id);
3376 if (ret) {
3377 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3378 sta->addr, ret);
3379 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003380 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003381 return ret;
3382 }
3383
Johannes Bergfd1af152010-04-30 11:30:43 -07003384 sta_priv->common.sta_id = sta_id;
3385
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003386 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003387 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003388 sta->addr);
3389 iwl3945_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003390 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003391
3392 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003393}
Zhu Yib481de92007-09-25 17:54:57 -07003394/*****************************************************************************
3395 *
3396 * sysfs attributes
3397 *
3398 *****************************************************************************/
3399
Samuel Ortizd08853a2009-01-23 13:45:17 -08003400#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003401
3402/*
3403 * The following adds a new attribute to the sysfs representation
3404 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3405 * used for controlling the debug level.
3406 *
3407 * See the level definitions in iwl for details.
Reinette Chatrea562a9d2009-07-17 09:30:24 -07003408 *
Reinette Chatre3d816c72009-08-07 15:41:37 -07003409 * The debug_level being managed using sysfs below is a per device debug
3410 * level that is used instead of the global debug level if it (the per
3411 * device debug level) is set.
Zhu Yib481de92007-09-25 17:54:57 -07003412 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003413static ssize_t show_debug_level(struct device *d,
3414 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003415{
Reinette Chatre3d816c72009-08-07 15:41:37 -07003416 struct iwl_priv *priv = dev_get_drvdata(d);
3417 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003418}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003419static ssize_t store_debug_level(struct device *d,
3420 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003421 const char *buf, size_t count)
3422{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003423 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003424 unsigned long val;
3425 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003426
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003427 ret = strict_strtoul(buf, 0, &val);
3428 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003429 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003430 else {
Reinette Chatre3d816c72009-08-07 15:41:37 -07003431 priv->debug_level = val;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003432 if (iwl_alloc_traffic_mem(priv))
3433 IWL_ERR(priv,
3434 "Not enough memory to generate traffic log\n");
3435 }
Zhu Yib481de92007-09-25 17:54:57 -07003436 return strnlen(buf, count);
3437}
3438
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003439static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3440 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003441
Samuel Ortizd08853a2009-01-23 13:45:17 -08003442#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003443
Zhu Yib481de92007-09-25 17:54:57 -07003444static ssize_t show_temperature(struct device *d,
3445 struct device_attribute *attr, char *buf)
3446{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003447 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003448
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003449 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003450 return -EAGAIN;
3451
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003452 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003453}
3454
3455static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3456
Zhu Yib481de92007-09-25 17:54:57 -07003457static ssize_t show_tx_power(struct device *d,
3458 struct device_attribute *attr, char *buf)
3459{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003460 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003461 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003462}
3463
3464static ssize_t store_tx_power(struct device *d,
3465 struct device_attribute *attr,
3466 const char *buf, size_t count)
3467{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003468 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003469 char *p = (char *)buf;
3470 u32 val;
3471
3472 val = simple_strtoul(p, &p, 10);
3473 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003474 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003475 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003476 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003477
3478 return count;
3479}
3480
3481static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3482
3483static ssize_t show_flags(struct device *d,
3484 struct device_attribute *attr, char *buf)
3485{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003486 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003487
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003488 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003489}
3490
3491static ssize_t store_flags(struct device *d,
3492 struct device_attribute *attr,
3493 const char *buf, size_t count)
3494{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003495 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003496 u32 flags = simple_strtoul(buf, NULL, 0);
3497
3498 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003499 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003500 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003501 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003502 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003503 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003504 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003505 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003506 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003507 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003508 }
3509 }
3510 mutex_unlock(&priv->mutex);
3511
3512 return count;
3513}
3514
3515static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3516
3517static ssize_t show_filter_flags(struct device *d,
3518 struct device_attribute *attr, char *buf)
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
3522 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003523 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003524}
3525
3526static ssize_t store_filter_flags(struct device *d,
3527 struct device_attribute *attr,
3528 const char *buf, size_t count)
3529{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003530 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003531 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3532
3533 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003534 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003535 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003536 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003537 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003538 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003539 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003540 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003541 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003542 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003543 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003544 }
3545 }
3546 mutex_unlock(&priv->mutex);
3547
3548 return count;
3549}
3550
3551static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3552 store_filter_flags);
3553
Zhu Yib481de92007-09-25 17:54:57 -07003554static ssize_t show_measurement(struct device *d,
3555 struct device_attribute *attr, char *buf)
3556{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003557 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003558 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003559 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003560 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003561 unsigned long flags;
3562
3563 spin_lock_irqsave(&priv->lock, flags);
3564 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3565 spin_unlock_irqrestore(&priv->lock, flags);
3566 return 0;
3567 }
3568 memcpy(&measure_report, &priv->measure_report, size);
3569 priv->measurement_status = 0;
3570 spin_unlock_irqrestore(&priv->lock, flags);
3571
3572 while (size && (PAGE_SIZE - len)) {
3573 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3574 PAGE_SIZE - len, 1);
3575 len = strlen(buf);
3576 if (PAGE_SIZE - len)
3577 buf[len++] = '\n';
3578
3579 ofs += 16;
3580 size -= min(size, 16U);
3581 }
3582
3583 return len;
3584}
3585
3586static ssize_t store_measurement(struct device *d,
3587 struct device_attribute *attr,
3588 const char *buf, size_t count)
3589{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003590 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003591 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003592 .channel = le16_to_cpu(priv->active_rxon.channel),
Johannes Berge99f1682010-01-19 10:04:28 -08003593 .start_time = cpu_to_le64(priv->_3945.last_tsf),
Zhu Yib481de92007-09-25 17:54:57 -07003594 .duration = cpu_to_le16(1),
3595 };
3596 u8 type = IWL_MEASURE_BASIC;
3597 u8 buffer[32];
3598 u8 channel;
3599
3600 if (count) {
3601 char *p = buffer;
3602 strncpy(buffer, buf, min(sizeof(buffer), count));
3603 channel = simple_strtoul(p, NULL, 0);
3604 if (channel)
3605 params.channel = channel;
3606
3607 p = buffer;
3608 while (*p && *p != ' ')
3609 p++;
3610 if (*p)
3611 type = simple_strtoul(p + 1, NULL, 0);
3612 }
3613
Tomas Winklere1623442009-01-27 14:27:56 -08003614 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003615 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003616 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003617
3618 return count;
3619}
3620
3621static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3622 show_measurement, store_measurement);
Zhu Yib481de92007-09-25 17:54:57 -07003623
Zhu Yib481de92007-09-25 17:54:57 -07003624static ssize_t store_retry_rate(struct device *d,
3625 struct device_attribute *attr,
3626 const char *buf, size_t count)
3627{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003628 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003629
3630 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3631 if (priv->retry_rate <= 0)
3632 priv->retry_rate = 1;
3633
3634 return count;
3635}
3636
3637static ssize_t show_retry_rate(struct device *d,
3638 struct device_attribute *attr, char *buf)
3639{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003640 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003641 return sprintf(buf, "%d", priv->retry_rate);
3642}
3643
3644static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3645 store_retry_rate);
3646
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003647
Zhu Yib481de92007-09-25 17:54:57 -07003648static ssize_t show_channels(struct device *d,
3649 struct device_attribute *attr, char *buf)
3650{
Johannes Berg8318d782008-01-24 19:38:38 +01003651 /* all this shit doesn't belong into sysfs anyway */
3652 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003653}
3654
3655static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3656
Zhu Yib481de92007-09-25 17:54:57 -07003657static ssize_t show_antenna(struct device *d,
3658 struct device_attribute *attr, char *buf)
3659{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003660 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003661
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003662 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003663 return -EAGAIN;
3664
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003665 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003666}
3667
3668static ssize_t store_antenna(struct device *d,
3669 struct device_attribute *attr,
3670 const char *buf, size_t count)
3671{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003672 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003673 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003674
3675 if (count == 0)
3676 return 0;
3677
3678 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003679 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003680 return count;
3681 }
3682
3683 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003684 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003685 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003686 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003687 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003688
3689
3690 return count;
3691}
3692
3693static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3694
3695static ssize_t show_status(struct device *d,
3696 struct device_attribute *attr, char *buf)
3697{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003698 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003699 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003700 return -EAGAIN;
3701 return sprintf(buf, "0x%08x\n", (int)priv->status);
3702}
3703
3704static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3705
3706static ssize_t dump_error_log(struct device *d,
3707 struct device_attribute *attr,
3708 const char *buf, size_t count)
3709{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003710 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003711 char *p = (char *)buf;
3712
3713 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003714 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003715
3716 return strnlen(buf, count);
3717}
3718
3719static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3720
Zhu Yib481de92007-09-25 17:54:57 -07003721/*****************************************************************************
3722 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003723 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003724 *
3725 *****************************************************************************/
3726
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003727static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003728{
Reinette Chatred21050c2009-02-13 11:51:18 -08003729 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003730
3731 init_waitqueue_head(&priv->wait_command_queue);
3732
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003733 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3734 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003735 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003736 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3737 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Johannes Bergee525d12010-01-21 06:09:28 -08003738 INIT_DELAYED_WORK(&priv->_3945.rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003739 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003740 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
Abhijeet Kolekar1e460532010-04-23 14:14:53 -07003741 INIT_WORK(&priv->start_internal_scan, iwl_bg_start_internal_scan);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003742 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003743
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003744 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003745
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08003746 if (priv->cfg->ops->lib->recover_from_tx_stall) {
3747 init_timer(&priv->monitor_recover);
3748 priv->monitor_recover.data = (unsigned long)priv;
3749 priv->monitor_recover.function =
3750 priv->cfg->ops->lib->recover_from_tx_stall;
3751 }
3752
Zhu Yib481de92007-09-25 17:54:57 -07003753 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003754 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003755}
3756
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003757static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003758{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003759 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003760
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003761 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003762 cancel_delayed_work(&priv->scan_check);
3763 cancel_delayed_work(&priv->alive_start);
Abhijeet Kolekar1e460532010-04-23 14:14:53 -07003764 cancel_work_sync(&priv->start_internal_scan);
Zhu Yib481de92007-09-25 17:54:57 -07003765 cancel_work_sync(&priv->beacon_update);
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08003766 if (priv->cfg->ops->lib->recover_from_tx_stall)
3767 del_timer_sync(&priv->monitor_recover);
Zhu Yib481de92007-09-25 17:54:57 -07003768}
3769
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003770static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003771 &dev_attr_antenna.attr,
3772 &dev_attr_channels.attr,
3773 &dev_attr_dump_errors.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003774 &dev_attr_flags.attr,
3775 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003776 &dev_attr_measurement.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003777 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003778 &dev_attr_status.attr,
3779 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003780 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08003781#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003782 &dev_attr_debug_level.attr,
3783#endif
Zhu Yib481de92007-09-25 17:54:57 -07003784 NULL
3785};
3786
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003787static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003788 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003789 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003790};
3791
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003792static struct ieee80211_ops iwl3945_hw_ops = {
3793 .tx = iwl3945_mac_tx,
3794 .start = iwl3945_mac_start,
3795 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07003796 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07003797 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07003798 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003799 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003800 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07003801 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07003802 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003803 .bss_info_changed = iwl_bss_info_changed,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003804 .hw_scan = iwl_mac_hw_scan,
3805 .sta_add = iwl3945_mac_sta_add,
3806 .sta_remove = iwl_mac_sta_remove,
Zhu Yib481de92007-09-25 17:54:57 -07003807};
3808
Winkler, Tomase52119c2008-12-22 11:31:19 +08003809static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003810{
3811 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08003812 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003813
3814 priv->retry_rate = 1;
3815 priv->ibss_beacon = NULL;
3816
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003817 spin_lock_init(&priv->sta_lock);
3818 spin_lock_init(&priv->hcmd_lock);
3819
3820 INIT_LIST_HEAD(&priv->free_frames);
3821
3822 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08003823 mutex_init(&priv->sync_cmd_mutex);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003824
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003825 priv->ieee_channels = NULL;
3826 priv->ieee_rates = NULL;
3827 priv->band = IEEE80211_BAND_2GHZ;
3828
3829 priv->iw_mode = NL80211_IFTYPE_STATION;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08003830 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003831
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003832 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003833
Samuel Ortize6148912009-01-23 13:45:15 -08003834 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3835 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3836 eeprom->version);
3837 ret = -EINVAL;
3838 goto err;
3839 }
3840 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003841 if (ret) {
3842 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3843 goto err;
3844 }
3845
Samuel Ortize6148912009-01-23 13:45:15 -08003846 /* Set up txpower settings in driver for all channels */
3847 if (iwl3945_txpower_set_from_eeprom(priv)) {
3848 ret = -EIO;
3849 goto err_free_channel_map;
3850 }
3851
Samuel Ortiz534166d2009-01-23 13:45:16 -08003852 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003853 if (ret) {
3854 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3855 goto err_free_channel_map;
3856 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08003857 iwl3945_init_hw_rates(priv, priv->ieee_rates);
3858
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003859 return 0;
3860
3861err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08003862 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003863err:
3864 return ret;
3865}
3866
Johannes Bergdd7a2502010-04-28 23:33:10 -07003867#define IWL3945_MAX_PROBE_REQUEST 200
3868
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003869static int iwl3945_setup_mac(struct iwl_priv *priv)
3870{
3871 int ret;
3872 struct ieee80211_hw *hw = priv->hw;
3873
3874 hw->rate_control_algorithm = "iwl-3945-rs";
3875 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003876 hw->vif_data_size = sizeof(struct iwl_vif_priv);
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003877
3878 /* Tell mac80211 our characteristics */
3879 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatrebc45a672009-12-14 14:12:10 -08003880 IEEE80211_HW_SPECTRUM_MGMT;
3881
3882 if (!priv->cfg->broken_powersave)
3883 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3884 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003885
3886 hw->wiphy->interface_modes =
3887 BIT(NL80211_IFTYPE_STATION) |
3888 BIT(NL80211_IFTYPE_ADHOC);
3889
Reinette Chatref6c8f152010-03-12 11:13:26 -08003890 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003891 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Luis R. Rodriguez37184242009-07-30 17:43:48 -07003892
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003893 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3894 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003895 hw->wiphy->max_scan_ie_len = IWL3945_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02003896
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003897 /* Default value; 4 EDCA QOS priorities */
3898 hw->queues = 4;
3899
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08003900 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3901 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3902 &priv->bands[IEEE80211_BAND_2GHZ];
3903
3904 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3905 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3906 &priv->bands[IEEE80211_BAND_5GHZ];
3907
3908 ret = ieee80211_register_hw(priv->hw);
3909 if (ret) {
3910 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3911 return ret;
3912 }
3913 priv->mac80211_registered = 1;
3914
3915 return 0;
3916}
3917
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003918static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003919{
3920 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003921 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003922 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08003923 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08003924 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003925 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003926
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003927 /***********************
3928 * 1. Allocating HW data
3929 * ********************/
3930
Zhu Yib481de92007-09-25 17:54:57 -07003931 /* mac80211 allocates memory for this device instance, including
3932 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003933 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003934 if (hw == NULL) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07003935 pr_err("Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07003936 err = -ENOMEM;
3937 goto out;
3938 }
Zhu Yib481de92007-09-25 17:54:57 -07003939 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003940 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003941
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003942 /*
3943 * Disabling hardware scan means that mac80211 will perform scans
3944 * "the hard way", rather than using device's scan.
3945 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003946 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003947 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003948 iwl3945_hw_ops.hw_scan = NULL;
3949 }
3950
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003951
Tomas Winklere1623442009-01-27 14:27:56 -08003952 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003953 priv->cfg = cfg;
3954 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07003955 priv->inta_mask = CSR_INI_SET_MASK;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08003956
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07003957 if (iwl_alloc_traffic_mem(priv))
3958 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07003959
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003960 /***************************
3961 * 2. Initializing PCI bus
3962 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07003963 if (pci_enable_device(pdev)) {
3964 err = -ENODEV;
3965 goto out_ieee80211_free_hw;
3966 }
3967
3968 pci_set_master(pdev);
3969
Yang Hongyang284901a2009-04-06 19:01:15 -07003970 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003971 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07003972 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07003973 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003974 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003975 goto out_pci_disable_device;
3976 }
3977
3978 pci_set_drvdata(pdev, priv);
3979 err = pci_request_regions(pdev, DRV_NAME);
3980 if (err)
3981 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003982
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003983 /***********************
3984 * 3. Read REV Register
3985 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07003986 priv->hw_base = pci_iomap(pdev, 0, 0);
3987 if (!priv->hw_base) {
3988 err = -ENODEV;
3989 goto out_pci_release_regions;
3990 }
3991
Tomas Winklere1623442009-01-27 14:27:56 -08003992 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07003993 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003994 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07003995
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08003996 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3997 * PCI Tx retries from interfering with C3 CPU state */
3998 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07003999
Reinette Chatre731a29b2009-12-14 14:12:11 -08004000 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004001 * we should init now
4002 */
4003 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004004 spin_lock_init(&priv->lock);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004005
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004006 /*
4007 * stop and reset the on-board processor just in case it is in a
4008 * strange state ... like being left stranded by a primary kernel
4009 * and this is now the kdump kernel trying to start up
4010 */
4011 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4012
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004013 /***********************
4014 * 4. Read EEPROM
4015 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004016
Zhu Yi5a669262008-01-14 17:46:18 -08004017 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004018 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004019 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004020 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004021 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004022 }
4023 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004024 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Johannes Berg30eabc12010-05-12 03:33:10 -07004025 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", eeprom->mac_address);
4026 SET_IEEE80211_PERM_ADDR(priv->hw, eeprom->mac_address);
Zhu Yi5a669262008-01-14 17:46:18 -08004027
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004028 /***********************
4029 * 5. Setup HW Constants
4030 * ********************/
4031 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004032 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004033 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004034 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004035 }
4036
4037 /***********************
4038 * 6. Setup priv
4039 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004040
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004041 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004042 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004043 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004044 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004045 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004046
Tomas Winkler978785a2008-12-19 10:37:31 +08004047 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4048 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004049
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004050 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004051 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004052 * ********************/
4053
4054 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004055 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004056 spin_unlock_irqrestore(&priv->lock, flags);
4057
Helmut Schaa26635162009-01-15 09:38:44 +01004058 pci_enable_msi(priv->pci_dev);
4059
Mohamed Abbasef850d72009-05-22 11:01:50 -07004060 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4061 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004062 if (err) {
4063 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4064 goto out_disable_msi;
4065 }
4066
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004067 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4068 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004069 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004070 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004071 }
4072
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004073 iwl_set_rxon_channel(priv,
4074 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004075 iwl3945_setup_deferred_work(priv);
4076 iwl3945_setup_rx_handlers(priv);
Ben Cahill008a9e32009-10-09 13:20:27 -07004077 iwl_power_initialize(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004078
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004079 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004080 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004081 * *******************************/
4082
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004083 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004084
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004085 err = iwl3945_setup_mac(priv);
4086 if (err)
4087 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004088
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004089 err = iwl_dbgfs_register(priv, DRV_NAME);
4090 if (err)
4091 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4092
Helmut Schaa26635162009-01-15 09:38:44 +01004093 /* Start monitoring the killswitch */
Johannes Bergee525d12010-01-21 06:09:28 -08004094 queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
Helmut Schaa26635162009-01-15 09:38:44 +01004095 2 * HZ);
4096
Zhu Yib481de92007-09-25 17:54:57 -07004097 return 0;
4098
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004099 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004100 destroy_workqueue(priv->workqueue);
4101 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004102 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4103 out_release_irq:
4104 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004105 out_disable_msi:
4106 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004107 iwlcore_free_geos(priv);
4108 iwl_free_channel_map(priv);
4109 out_unset_hw_params:
4110 iwl3945_unset_hw_params(priv);
4111 out_eeprom_free:
4112 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004113 out_iounmap:
4114 pci_iounmap(pdev, priv->hw_base);
4115 out_pci_release_regions:
4116 pci_release_regions(pdev);
4117 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004118 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004119 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004120 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004121 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004122 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004123 out:
4124 return err;
4125}
4126
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004127static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004128{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004129 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004130 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004131
4132 if (!priv)
4133 return;
4134
Tomas Winklere1623442009-01-27 14:27:56 -08004135 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004136
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004137 iwl_dbgfs_unregister(priv);
4138
Zhu Yib481de92007-09-25 17:54:57 -07004139 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004140
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004141 if (priv->mac80211_registered) {
4142 ieee80211_unregister_hw(priv->hw);
4143 priv->mac80211_registered = 0;
4144 } else {
4145 iwl3945_down(priv);
4146 }
Zhu Yib481de92007-09-25 17:54:57 -07004147
Ben Cahillc166b252009-10-23 13:42:35 -07004148 /*
4149 * Make sure device is reset to low power before unloading driver.
4150 * This may be redundant with iwl_down(), but there are paths to
4151 * run iwl_down() without calling apm_ops.stop(), and there are
4152 * paths to avoid running iwl_down() at all before leaving driver.
4153 * This (inexpensive) call *makes sure* device is reset.
4154 */
4155 priv->cfg->ops->lib->apm_ops.stop(priv);
4156
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004157 /* make sure we flush any pending irq or
4158 * tasklet for the driver
4159 */
4160 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004161 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004162 spin_unlock_irqrestore(&priv->lock, flags);
4163
4164 iwl_synchronize_irq(priv);
4165
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004166 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004167
Johannes Bergee525d12010-01-21 06:09:28 -08004168 cancel_delayed_work_sync(&priv->_3945.rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004169
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004170 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004171
4172 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004173 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004174 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004175
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004176 iwl3945_unset_hw_params(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004177
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004178 /*netif_stop_queue(dev); */
4179 flush_workqueue(priv->workqueue);
4180
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004181 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004182 * priv->workqueue... so we can't take down the workqueue
4183 * until now... */
4184 destroy_workqueue(priv->workqueue);
4185 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004186 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004187
Helmut Schaa26635162009-01-15 09:38:44 +01004188 free_irq(pdev->irq, priv);
4189 pci_disable_msi(pdev);
4190
Zhu Yib481de92007-09-25 17:54:57 -07004191 pci_iounmap(pdev, priv->hw_base);
4192 pci_release_regions(pdev);
4193 pci_disable_device(pdev);
4194 pci_set_drvdata(pdev, NULL);
4195
Samuel Ortize6148912009-01-23 13:45:15 -08004196 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004197 iwlcore_free_geos(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004198 kfree(priv->scan_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07004199 if (priv->ibss_beacon)
4200 dev_kfree_skb(priv->ibss_beacon);
4201
4202 ieee80211_free_hw(priv->hw);
4203}
4204
Zhu Yib481de92007-09-25 17:54:57 -07004205
4206/*****************************************************************************
4207 *
4208 * driver and module entry point
4209 *
4210 *****************************************************************************/
4211
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004212static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004213 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004214 .id_table = iwl3945_hw_card_ids,
4215 .probe = iwl3945_pci_probe,
4216 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004217#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004218 .suspend = iwl_pci_suspend,
4219 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004220#endif
4221};
4222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004223static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004224{
4225
4226 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004227 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4228 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004229
4230 ret = iwl3945_rate_control_register();
4231 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004232 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004233 return ret;
4234 }
4235
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004236 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004237 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004238 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004239 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004240 }
Zhu Yib481de92007-09-25 17:54:57 -07004241
4242 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004243
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004244error_register:
4245 iwl3945_rate_control_unregister();
4246 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004247}
4248
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004249static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004250{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004251 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004252 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004253}
4254
Reinette Chatrea0987a82008-12-02 12:14:06 -08004255MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004256
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004257module_param_named(antenna, iwl3945_mod_params.antenna, int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004258MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004259module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, S_IRUGO);
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004260MODULE_PARM_DESC(swcrypto,
4261 "using software crypto (default 1 [software])\n");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004262#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004263module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Zhu Yib481de92007-09-25 17:54:57 -07004264MODULE_PARM_DESC(debug, "debug output mask");
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004265#endif
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004266module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan,
4267 int, S_IRUGO);
Zhu Yib481de92007-09-25 17:54:57 -07004268MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004269module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, S_IRUGO);
Samuel Ortizaf48d042009-01-23 13:45:19 -08004270MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4271
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004272module_exit(iwl3945_exit);
4273module_init(iwl3945_init);