blob: c15d0cfb93bc1cfb570a1d6c0369c1fdda894a72 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080054#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-3945.h"
56#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080058#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070059
Zhu Yib481de92007-09-25 17:54:57 -070060/*
61 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070062 */
63
64#define DRV_DESCRIPTION \
65"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
66
Samuel Ortizd08853a2009-01-23 13:45:17 -080067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070068#define VD "d"
69#else
70#define VD
71#endif
72
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080073#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070074#define VS "s"
75#else
76#define VS
77#endif
78
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080079#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatre01f81622009-01-08 10:20:02 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080082#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
89
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080090 /* module parameters */
91struct iwl_mod_params iwl3945_mod_params = {
92 .num_of_queues = IWL39_MAX_NUM_QUEUES,
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/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080099 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700100 * the functionality provided here
101 */
102
103/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800104#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800105/**
106 * iwl3945_remove_station - Remove driver's knowledge of station.
107 *
108 * NOTE: This does not remove station from device's station table.
109 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800110static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700111{
112 int index = IWL_INVALID_STATION;
113 int i;
114 unsigned long flags;
115
116 spin_lock_irqsave(&priv->sta_lock, flags);
117
118 if (is_ap)
119 index = IWL_AP_ID;
120 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800121 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700122 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800123 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800124 if (priv->stations_39[i].used &&
125 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700126 addr)) {
127 index = i;
128 break;
129 }
130
131 if (unlikely(index == IWL_INVALID_STATION))
132 goto out;
133
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800134 if (priv->stations_39[index].used) {
135 priv->stations_39[index].used = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700136 priv->num_stations--;
137 }
138
139 BUG_ON(priv->num_stations < 0);
140
141out:
142 spin_unlock_irqrestore(&priv->sta_lock, flags);
143 return 0;
144}
Zhu Yi556f8db2007-09-27 11:27:33 +0800145#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800146
147/**
148 * iwl3945_clear_stations_table - Clear the driver's station table
149 *
150 * NOTE: This does not clear or otherwise alter the device's station table.
151 */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700152void iwl3945_clear_stations_table(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700153{
154 unsigned long flags;
155
156 spin_lock_irqsave(&priv->sta_lock, flags);
157
158 priv->num_stations = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800159 memset(priv->stations_39, 0, sizeof(priv->stations_39));
Zhu Yib481de92007-09-25 17:54:57 -0700160
161 spin_unlock_irqrestore(&priv->sta_lock, flags);
162}
163
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800164/**
165 * iwl3945_add_station - Add station to station tables in driver and device
166 */
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -0700167u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags, struct ieee80211_sta_ht_cap *ht_info)
Zhu Yib481de92007-09-25 17:54:57 -0700168{
169 int i;
170 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800171 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700172 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800173 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700174
175 spin_lock_irqsave(&priv->sta_lock, flags_spin);
176 if (is_ap)
177 index = IWL_AP_ID;
178 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800179 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700180 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800181 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800182 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700183 addr)) {
184 index = i;
185 break;
186 }
187
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800188 if (!priv->stations_39[i].used &&
Zhu Yib481de92007-09-25 17:54:57 -0700189 index == IWL_INVALID_STATION)
190 index = i;
191 }
192
Ian Schram01ebd062007-10-25 17:15:22 +0800193 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700194 since they have different meaning */
195 if (unlikely(index == IWL_INVALID_STATION)) {
196 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
197 return index;
198 }
199
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800200 if (priv->stations_39[index].used &&
201 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
Zhu Yib481de92007-09-25 17:54:57 -0700202 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
203 return index;
204 }
205
Tomas Winklere1623442009-01-27 14:27:56 -0800206 IWL_DEBUG_ASSOC(priv, "Add STA ID %d: %pM\n", index, addr);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800207 station = &priv->stations_39[index];
Zhu Yib481de92007-09-25 17:54:57 -0700208 station->used = 1;
209 priv->num_stations++;
210
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800211 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800212 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700213 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
214 station->sta.mode = 0;
215 station->sta.sta.sta_id = index;
216 station->sta.station_flags = 0;
217
Johannes Berg8318d782008-01-24 19:38:38 +0100218 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800219 rate = IWL_RATE_6M_PLCP;
220 else
221 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800222
223 /* Turn on both antennas for the station... */
224 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800225 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800226
Zhu Yib481de92007-09-25 17:54:57 -0700227 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800228
229 /* Add station to device's station table */
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800230 iwl_send_add_sta(priv,
231 (struct iwl_addsta_cmd *)&station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700232 return index;
233
234}
235
Zhu Yib481de92007-09-25 17:54:57 -0700236/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -0800237 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
238 * @priv: eeprom and antenna fields are used to determine antenna flags
239 *
240 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
241 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
242 *
243 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
244 * IWL_ANTENNA_MAIN - Force MAIN antenna
245 * IWL_ANTENNA_AUX - Force AUX antenna
246 */
247__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
248{
249 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
250
251 switch (iwl3945_mod_params.antenna) {
252 case IWL_ANTENNA_DIVERSITY:
253 return 0;
254
255 case IWL_ANTENNA_MAIN:
256 if (eeprom->antenna_switch_type)
257 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
258 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
259
260 case IWL_ANTENNA_AUX:
261 if (eeprom->antenna_switch_type)
262 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
263 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
264 }
265
266 /* bad antenna selector value */
267 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
268 iwl3945_mod_params.antenna);
269
270 return 0; /* "diversity" is default if error */
271}
272
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800273static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700274 struct ieee80211_key_conf *keyconf,
275 u8 sta_id)
276{
277 unsigned long flags;
278 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800279 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700280
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800281 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
282 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
283
284 if (sta_id == priv->hw_params.bcast_sta_id)
285 key_flags |= STA_KEY_MULTICAST_MSK;
286
287 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
288 keyconf->hw_key_idx = keyconf->keyidx;
289 key_flags &= ~STA_KEY_FLG_INVALID;
290
Zhu Yib481de92007-09-25 17:54:57 -0700291 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800292 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
293 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
294 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700295 keyconf->keylen);
296
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800297 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700298 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800299
Abhijeet Kolekar43da9192009-03-17 21:51:53 -0700300 if ((priv->stations_39[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800301 == STA_KEY_FLG_NO_ENC)
Abhijeet Kolekar43da9192009-03-17 21:51:53 -0700302 priv->stations_39[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800303 iwl_get_free_ucode_key_index(priv);
304 /* else, we are overriding an existing key => no need to allocated room
305 * in uCode. */
306
Abhijeet Kolekar43da9192009-03-17 21:51:53 -0700307 WARN(priv->stations_39[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800308 "no space for a new key");
309
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800310 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
311 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
312 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700313
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800314 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
315
316 ret = iwl_send_add_sta(priv,
317 (struct iwl_addsta_cmd *)&priv->stations_39[sta_id].sta, CMD_ASYNC);
318
Zhu Yib481de92007-09-25 17:54:57 -0700319 spin_unlock_irqrestore(&priv->sta_lock, flags);
320
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800321 return ret;
322}
323
324static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
325 struct ieee80211_key_conf *keyconf,
326 u8 sta_id)
327{
328 return -EOPNOTSUPP;
329}
330
331static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
332 struct ieee80211_key_conf *keyconf,
333 u8 sta_id)
334{
335 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700336}
337
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800338static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700339{
340 unsigned long flags;
341
342 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800343 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
344 memset(&priv->stations_39[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800345 sizeof(struct iwl4965_keyinfo));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800346 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
347 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
348 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700349 spin_unlock_irqrestore(&priv->sta_lock, flags);
350
Tomas Winklere1623442009-01-27 14:27:56 -0800351 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800352 iwl_send_add_sta(priv,
353 (struct iwl_addsta_cmd *)&priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700354 return 0;
355}
356
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700357static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800358 struct ieee80211_key_conf *keyconf, u8 sta_id)
359{
360 int ret = 0;
361
362 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
363
364 switch (keyconf->alg) {
365 case ALG_CCMP:
366 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
367 break;
368 case ALG_TKIP:
369 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
370 break;
371 case ALG_WEP:
372 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
373 break;
374 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700375 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800376 ret = -EINVAL;
377 }
378
379 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
380 keyconf->alg, keyconf->keylen, keyconf->keyidx,
381 sta_id, ret);
382
383 return ret;
384}
385
386static int iwl3945_remove_static_key(struct iwl_priv *priv)
387{
388 int ret = -EOPNOTSUPP;
389
390 return ret;
391}
392
393static int iwl3945_set_static_key(struct iwl_priv *priv,
394 struct ieee80211_key_conf *key)
395{
396 if (key->alg == ALG_WEP)
397 return -EOPNOTSUPP;
398
399 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
400 return -EINVAL;
401}
402
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800403static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700404{
405 struct list_head *element;
406
Tomas Winklere1623442009-01-27 14:27:56 -0800407 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700408 priv->frames_count);
409
410 while (!list_empty(&priv->free_frames)) {
411 element = priv->free_frames.next;
412 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800413 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700414 priv->frames_count--;
415 }
416
417 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800418 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700419 priv->frames_count);
420 priv->frames_count = 0;
421 }
422}
423
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800424static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700425{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800426 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700427 struct list_head *element;
428 if (list_empty(&priv->free_frames)) {
429 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
430 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800431 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700432 return NULL;
433 }
434
435 priv->frames_count++;
436 return frame;
437 }
438
439 element = priv->free_frames.next;
440 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800441 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700442}
443
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800444static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700445{
446 memset(frame, 0, sizeof(*frame));
447 list_add(&frame->list, &priv->free_frames);
448}
449
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800450unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700451 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200452 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700453{
454
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800455 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200456 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
457 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700458 return 0;
459
460 if (priv->ibss_beacon->len > left)
461 return 0;
462
463 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
464
465 return priv->ibss_beacon->len;
466}
467
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800468static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700469{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800470 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700471 unsigned int frame_size;
472 int rc;
473 u8 rate;
474
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800475 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700476
477 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800478 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700479 "command.\n");
480 return -ENOMEM;
481 }
482
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800483 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800485 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700486
Samuel Ortiz518099a2009-01-19 15:30:27 -0800487 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700488 &frame->u.cmd[0]);
489
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800490 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700491
492 return rc;
493}
494
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800495static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700496{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800497 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700498 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800499 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800500 priv->shared_virt,
501 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700502}
503
Zhu Yib481de92007-09-25 17:54:57 -0700504#define MAX_UCODE_BEACON_INTERVAL 1024
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800505#define INTEL_CONN_LISTEN_INTERVAL cpu_to_le16(0xA)
Zhu Yib481de92007-09-25 17:54:57 -0700506
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800507static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700508{
509 u16 new_val = 0;
510 u16 beacon_factor = 0;
511
512 beacon_factor =
513 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
514 / MAX_UCODE_BEACON_INTERVAL;
515 new_val = beacon_val / beacon_factor;
516
517 return cpu_to_le16(new_val);
518}
519
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800520static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700521{
522 u64 interval_tm_unit;
523 u64 tsf, result;
524 unsigned long flags;
525 struct ieee80211_conf *conf = NULL;
526 u16 beacon_int = 0;
527
528 conf = ieee80211_get_hw_conf(priv->hw);
529
530 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler28afaf92008-12-19 10:37:06 +0800531 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -0700532 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
533
Tomas Winkler28afaf92008-12-19 10:37:06 +0800534 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -0700535
536 beacon_int = priv->beacon_int;
537 spin_unlock_irqrestore(&priv->lock, flags);
538
Johannes Berg05c914f2008-09-11 00:01:58 +0200539 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -0700540 if (beacon_int == 0) {
541 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
542 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
543 } else {
544 priv->rxon_timing.beacon_interval =
545 cpu_to_le16(beacon_int);
546 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800547 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -0700548 le16_to_cpu(priv->rxon_timing.beacon_interval));
549 }
550
551 priv->rxon_timing.atim_window = 0;
552 } else {
553 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800554 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700555 /* TODO: we need to get atim_window from upper stack
556 * for now we set to 0 */
557 priv->rxon_timing.atim_window = 0;
558 }
559
560 interval_tm_unit =
561 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
562 result = do_div(tsf, interval_tm_unit);
563 priv->rxon_timing.beacon_init_val =
564 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
565
Tomas Winklere1623442009-01-27 14:27:56 -0800566 IWL_DEBUG_ASSOC(priv,
567 "beacon interval %d beacon timer %d beacon tim %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700568 le16_to_cpu(priv->rxon_timing.beacon_interval),
569 le32_to_cpu(priv->rxon_timing.beacon_init_val),
570 le16_to_cpu(priv->rxon_timing.atim_window));
571}
572
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800573static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200574 struct ieee80211_tx_info *info,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800575 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700576 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800577 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700578{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800579 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Ivo van Doorn1c014422008-04-17 19:41:02 +0200580 struct iwl3945_hw_key *keyinfo =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800581 &priv->stations_39[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700582
583 switch (keyinfo->alg) {
584 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800585 tx->sec_ctl = TX_CMD_SEC_CCM;
586 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800587 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700588 break;
589
590 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700591 break;
592
593 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800594 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200595 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700596
597 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800598 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700599
Winkler, Tomase52119c2008-12-22 11:31:19 +0800600 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700601
Tomas Winklere1623442009-01-27 14:27:56 -0800602 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200603 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700604 break;
605
Zhu Yib481de92007-09-25 17:54:57 -0700606 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800607 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700608 break;
609 }
610}
611
612/*
613 * handle build REPLY_TX command notification.
614 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800615static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800616 struct iwl_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200617 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800618 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700619{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800620 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
621 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700622 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200623 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -0700624
Winkler, Tomase52119c2008-12-22 11:31:19 +0800625 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200626 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700627 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700628 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700629 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700630 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700631 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
632 tx_flags |= TX_CMD_FLG_TSF_MSK;
633 } else {
634 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
635 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
636 }
637
Winkler, Tomase52119c2008-12-22 11:31:19 +0800638 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700639 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700640 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
641
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700642 if (ieee80211_is_data_qos(fc)) {
643 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800644 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700645 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800646 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700647 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800648 }
Zhu Yib481de92007-09-25 17:54:57 -0700649
Johannes Berge6a98542008-10-21 12:40:02 +0200650 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -0700651 tx_flags |= TX_CMD_FLG_RTS_MSK;
652 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +0200653 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -0700654 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
655 tx_flags |= TX_CMD_FLG_CTS_MSK;
656 }
657
658 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
659 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
660
661 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700662 if (ieee80211_is_mgmt(fc)) {
663 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +0800664 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700665 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800666 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700667 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +0800668 tx->timeout.pm_frame_timeout = 0;
Abhijeet Kolekar5c8df2d2009-03-11 11:17:55 -0700669#ifdef CONFIG_IWLWIFI_LEDS
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700670 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
671#endif
672 }
Zhu Yib481de92007-09-25 17:54:57 -0700673
Winkler, Tomase52119c2008-12-22 11:31:19 +0800674 tx->driver_txop = 0;
675 tx->tx_flags = tx_flags;
676 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700677}
678
Zhu Yib481de92007-09-25 17:54:57 -0700679/*
680 * start REPLY_TX command process
681 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800682static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700683{
684 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200685 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800686 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800687 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800688 struct iwl_queue *q = NULL;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800689 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700690 dma_addr_t phys_addr;
691 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800692 int txq_id = skb_get_queue_mapping(skb);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800693 u16 len, idx, len_org, hdr_len;
694 u8 id;
695 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700696 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800697 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700698 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700699 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700700 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800701 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700702 unsigned long flags;
703 int rc;
704
705 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800706 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800707 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700708 goto drop_unlock;
709 }
710
Johannes Berge039fa42008-05-15 12:55:29 +0200711 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800712 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700713 goto drop_unlock;
714 }
715
716 unicast = !is_multicast_ether_addr(hdr->addr1);
717 id = 0;
718
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700719 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700720
Samuel Ortizd08853a2009-01-23 13:45:17 -0800721#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700722 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800723 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700724 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800725 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700726 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800727 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700728#endif
729
Mohamed Abbas7878a5a2007-11-29 11:10:13 +0800730 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800731 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200732 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800733 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200734 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800735 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700736 goto drop_unlock;
737 }
738
739 spin_unlock_irqrestore(&priv->lock, flags);
740
Harvey Harrison7294ec92008-07-15 18:43:59 -0700741 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800742
743 /* Find (or create) index into station table for destination station */
Abhijeet Kolekarf5d30262009-04-08 11:26:43 -0700744 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700745 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800746 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700747 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700748 goto drop;
749 }
750
Tomas Winklere1623442009-01-27 14:27:56 -0800751 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700752
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700753 if (ieee80211_is_data_qos(fc)) {
754 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700755 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800756 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700757 IEEE80211_SCTL_SEQ;
758 hdr->seq_ctrl = cpu_to_le16(seq_number) |
759 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800760 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700761 seq_number += 0x10;
762 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800763
764 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800765 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700766 q = &txq->q;
767
768 spin_lock_irqsave(&priv->lock, flags);
769
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800770 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700771
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800772 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800773 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800774 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800775
776 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800777 out_cmd = txq->cmd[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +0800778 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700779 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +0800780 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800781
782 /*
783 * Set up the Tx-command (not MAC!) header.
784 * Store the chosen Tx queue and TFD index within the sequence field;
785 * after Tx, uCode's Tx response will return this value so driver can
786 * locate the frame within the tx queue and do post-tx processing.
787 */
Zhu Yib481de92007-09-25 17:54:57 -0700788 out_cmd->hdr.cmd = REPLY_TX;
789 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800790 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800791
792 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800793 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700794
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800795 /*
796 * Use the first empty entry in this queue's command buffer array
797 * to contain the Tx command and MAC header concatenated together
798 * (payload data will be in another buffer).
799 * Size of this varies, due to varying MAC header length.
800 * If end is not dword aligned, we'll have 2 extra bytes at the end
801 * of the MAC header (device reads on dword boundaries).
802 * We'll tell device about this padding later.
803 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800804 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800805 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700806
807 len_org = len;
808 len = (len + 3) & ~3;
809
810 if (len_org != len)
811 len_org = 1;
812 else
813 len_org = 0;
814
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800815 /* Physical address of this Tx command's header (not MAC header!),
816 * within command buffer array. */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800817 txcmd_phys = pci_map_single(priv->pci_dev,
818 out_cmd, sizeof(struct iwl_cmd),
819 PCI_DMA_TODEVICE);
820 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
821 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
822 /* Add buffer containing Tx command and MAC(!) header to TFD's
823 * first entry */
824 txcmd_phys += offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700825
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800826 /* Add buffer containing Tx command and MAC(!) header to TFD's
827 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800828 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
829 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700830
Johannes Bergd0f09802008-07-29 11:32:07 +0200831 if (info->control.hw_key)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800832 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700833
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800834 /* Set up TFD's 2nd entry to point directly to remainder of skb,
835 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700836 len = skb->len - hdr_len;
837 if (len) {
838 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
839 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800840 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
841 phys_addr, len,
842 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700843 }
844
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800845 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -0700846 len = (u16)skb->len;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800847 tx->len = cpu_to_le16(len);
Zhu Yib481de92007-09-25 17:54:57 -0700848
849 /* TODO need this for burst mode later on */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800850 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700851
852 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +0200853 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700854
Winkler, Tomase52119c2008-12-22 11:31:19 +0800855 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
856 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700857
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700858 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -0700859 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300860 if (qc)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800861 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -0700862 } else {
863 wait_write_ptr = 1;
864 txq->need_update = 0;
865 }
866
Winkler, Tomase52119c2008-12-22 11:31:19 +0800867 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
Zhu Yib481de92007-09-25 17:54:57 -0700868
Winkler, Tomase52119c2008-12-22 11:31:19 +0800869 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -0700870 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -0700871
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800872 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800873 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800874 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700875 spin_unlock_irqrestore(&priv->lock, flags);
876
877 if (rc)
878 return rc;
879
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800880 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700881 && priv->mac80211_registered) {
882 if (wait_write_ptr) {
883 spin_lock_irqsave(&priv->lock, flags);
884 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800885 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700886 spin_unlock_irqrestore(&priv->lock, flags);
887 }
888
Johannes Berge4e72fb2009-03-23 17:28:42 +0100889 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700890 }
891
892 return 0;
893
894drop_unlock:
895 spin_unlock_irqrestore(&priv->lock, flags);
896drop:
897 return -1;
898}
899
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800900#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700901
902#include "iwl-spectrum.h"
903
904#define BEACON_TIME_MASK_LOW 0x00FFFFFF
905#define BEACON_TIME_MASK_HIGH 0xFF000000
906#define TIME_UNIT 1024
907
908/*
909 * extended beacon time format
910 * time in usec will be changed into a 32-bit value in 8:24 format
911 * the high 1 byte is the beacon counts
912 * the lower 3 bytes is the time in usec within one beacon interval
913 */
914
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800915static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700916{
917 u32 quot;
918 u32 rem;
919 u32 interval = beacon_interval * 1024;
920
921 if (!interval || !usec)
922 return 0;
923
924 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
925 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
926
927 return (quot << 24) + rem;
928}
929
930/* base is usually what we get from ucode with each received frame,
931 * the same as HW timer counter counting down
932 */
933
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800934static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700935{
936 u32 base_low = base & BEACON_TIME_MASK_LOW;
937 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
938 u32 interval = beacon_interval * TIME_UNIT;
939 u32 res = (base & BEACON_TIME_MASK_HIGH) +
940 (addon & BEACON_TIME_MASK_HIGH);
941
942 if (base_low > addon_low)
943 res += base_low - addon_low;
944 else if (base_low < addon_low) {
945 res += interval + base_low - addon_low;
946 res += (1 << 24);
947 } else
948 res += (1 << 24);
949
950 return cpu_to_le32(res);
951}
952
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800953static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700954 struct ieee80211_measurement_params *params,
955 u8 type)
956{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800957 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800958 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800959 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700960 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
961 .data = (void *)&spectrum,
962 .meta.flags = CMD_WANT_SKB,
963 };
964 u32 add_time = le64_to_cpu(params->start_time);
965 int rc;
966 int spectrum_resp_status;
967 int duration = le16_to_cpu(params->duration);
968
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800969 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700970 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800971 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700972 le64_to_cpu(params->start_time) - priv->last_tsf,
973 le16_to_cpu(priv->rxon_timing.beacon_interval));
974
975 memset(&spectrum, 0, sizeof(spectrum));
976
977 spectrum.channel_count = cpu_to_le16(1);
978 spectrum.flags =
979 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
980 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
981 cmd.len = sizeof(spectrum);
982 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
983
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800984 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700985 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800986 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700987 add_time,
988 le16_to_cpu(priv->rxon_timing.beacon_interval));
989 else
990 spectrum.start_time = 0;
991
992 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
993 spectrum.channels[0].channel = params->channel;
994 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800995 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700996 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
997 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
998
Samuel Ortiz518099a2009-01-19 15:30:27 -0800999 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001000 if (rc)
1001 return rc;
1002
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001003 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001004 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001005 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07001006 rc = -EIO;
1007 }
1008
1009 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
1010 switch (spectrum_resp_status) {
1011 case 0: /* Command will be handled */
1012 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -08001013 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +08001014 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07001015 priv->measurement_status &= ~MEASUREMENT_READY;
1016 }
1017 priv->measurement_status |= MEASUREMENT_ACTIVE;
1018 rc = 0;
1019 break;
1020
1021 case 1: /* Command will not be handled */
1022 rc = -EAGAIN;
1023 break;
1024 }
1025
1026 dev_kfree_skb_any(cmd.meta.u.skb);
1027
1028 return rc;
1029}
1030#endif
1031
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001032static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001033 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001034{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001035 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
1036 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07001037 struct delayed_work *pwork;
1038
1039 palive = &pkt->u.alive_frame;
1040
Tomas Winklere1623442009-01-27 14:27:56 -08001041 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -07001042 "0x%01X 0x%01X\n",
1043 palive->is_valid, palive->ver_type,
1044 palive->ver_subtype);
1045
1046 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001047 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001048 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
1049 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001050 pwork = &priv->init_alive_start;
1051 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08001052 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001053 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001054 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001055 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001056 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001057 }
1058
1059 /* We delay the ALIVE response by 5ms to
1060 * give the HW RF Kill time to activate... */
1061 if (palive->is_valid == UCODE_VALID_OK)
1062 queue_delayed_work(priv->workqueue, pwork,
1063 msecs_to_jiffies(5));
1064 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001065 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001066}
1067
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001068static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001069 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001070{
Helmut Schaac7e035a2009-01-19 13:02:15 +01001071#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001072 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +01001073#endif
Zhu Yib481de92007-09-25 17:54:57 -07001074
Tomas Winklere1623442009-01-27 14:27:56 -08001075 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -07001076 return;
1077}
1078
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001079static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001080{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001081 struct iwl_priv *priv =
1082 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001083 struct sk_buff *beacon;
1084
1085 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001086 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001087
1088 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001089 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001090 return;
1091 }
1092
1093 mutex_lock(&priv->mutex);
1094 /* new beacon skb is allocated every time; dispose previous.*/
1095 if (priv->ibss_beacon)
1096 dev_kfree_skb(priv->ibss_beacon);
1097
1098 priv->ibss_beacon = beacon;
1099 mutex_unlock(&priv->mutex);
1100
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001101 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001102}
1103
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001104static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001105 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001106{
Samuel Ortizd08853a2009-01-23 13:45:17 -08001107#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001108 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001109 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07001110 u8 rate = beacon->beacon_notify_hdr.rate;
1111
Tomas Winklere1623442009-01-27 14:27:56 -08001112 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -07001113 "tsf %d %d rate %d\n",
1114 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
1115 beacon->beacon_notify_hdr.failure_frame,
1116 le32_to_cpu(beacon->ibss_mgr_status),
1117 le32_to_cpu(beacon->high_tsf),
1118 le32_to_cpu(beacon->low_tsf), rate);
1119#endif
1120
Johannes Berg05c914f2008-09-11 00:01:58 +02001121 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07001122 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1123 queue_work(priv->workqueue, &priv->beacon_update);
1124}
1125
Zhu Yib481de92007-09-25 17:54:57 -07001126/* Handle notification from uCode that card's power state is changing
1127 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001128static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001129 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001130{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001131 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001132 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1133 unsigned long status = priv->status;
1134
Tomas Winklere1623442009-01-27 14:27:56 -08001135 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -07001136 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1137 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1138
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001139 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001140 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1141
1142 if (flags & HW_CARD_DISABLED)
1143 set_bit(STATUS_RF_KILL_HW, &priv->status);
1144 else
1145 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1146
1147
1148 if (flags & SW_CARD_DISABLED)
1149 set_bit(STATUS_RF_KILL_SW, &priv->status);
1150 else
1151 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1152
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08001153 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001154
1155 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1156 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1157 (test_bit(STATUS_RF_KILL_SW, &status) !=
1158 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1159 queue_work(priv->workqueue, &priv->rf_kill);
1160 else
1161 wake_up_interruptible(&priv->wait_command_queue);
1162}
1163
1164/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001165 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001166 *
1167 * Setup the RX handlers for each of the reply types sent from the uCode
1168 * to the host.
1169 *
1170 * This function chains into the hardware specific files for them to setup
1171 * any hardware specific handlers as well.
1172 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001173static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001174{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001175 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
1176 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001177 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001178 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001179 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001180 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001181 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001182 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001183
Ben Cahill9fbab512007-11-29 11:09:47 +08001184 /*
1185 * The same handler is used for both the REPLY to a discrete
1186 * statistics request from the host as well as for the periodic
1187 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001188 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001189 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
1190 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07001191
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001192 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -08001193 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001194 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001195
Ben Cahill9fbab512007-11-29 11:09:47 +08001196 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001197 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001198}
1199
Zhu Yib481de92007-09-25 17:54:57 -07001200/************************** RX-FUNCTIONS ****************************/
1201/*
1202 * Rx theory of operation
1203 *
1204 * The host allocates 32 DMA target addresses and passes the host address
1205 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
1206 * 0 to 31
1207 *
1208 * Rx Queue Indexes
1209 * The host/firmware share two index registers for managing the Rx buffers.
1210 *
1211 * The READ index maps to the first position that the firmware may be writing
1212 * to -- the driver can read up to (but not including) this position and get
1213 * good data.
1214 * The READ index is managed by the firmware once the card is enabled.
1215 *
1216 * The WRITE index maps to the last position the driver has read from -- the
1217 * position preceding WRITE is the last slot the firmware can place a packet.
1218 *
1219 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1220 * WRITE = READ.
1221 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001222 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001223 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1224 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001225 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001226 * and fire the RX interrupt. The driver can then query the READ index and
1227 * process as many packets as possible, moving the WRITE index forward as it
1228 * resets the Rx queue buffers with new memory.
1229 *
1230 * The management in the driver is as follows:
1231 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1232 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001233 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001234 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001235 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1236 * 'processed' and 'read' driver indexes as well)
1237 * + A received packet is processed and handed to the kernel network stack,
1238 * detached from the iwl->rxq. The driver 'processed' index is updated.
1239 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1240 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1241 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1242 * were enough free buffers and RX_STALLED is set it is cleared.
1243 *
1244 *
1245 * Driver sequence:
1246 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001247 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001248 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001249 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001250 * queue, updates firmware pointers, and updates
1251 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001252 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001253 *
1254 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001255 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001256 * READ INDEX, detaching the SKB from the pool.
1257 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001258 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001259 * slots.
1260 * ...
1261 *
1262 */
1263
1264/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001265 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001266 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001267static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001268 dma_addr_t dma_addr)
1269{
1270 return cpu_to_le32((u32)dma_addr);
1271}
1272
1273/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001274 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001275 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001276 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001277 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001278 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001279 *
1280 * This moves the 'write' index forward to catch up with 'processed', and
1281 * also updates the memory address in the firmware to reference the new
1282 * target buffer.
1283 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001284static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001285{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001286 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001287 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001288 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001289 unsigned long flags;
1290 int write, rc;
1291
1292 spin_lock_irqsave(&rxq->lock, flags);
1293 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001294 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001295 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001296 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001297 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001298 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001299
1300 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001301 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001302 rxq->queue[rxq->write] = rxb;
1303 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1304 rxq->free_count--;
1305 }
1306 spin_unlock_irqrestore(&rxq->lock, flags);
1307 /* If the pre-allocated buffer pool is dropping low, schedule to
1308 * refill it */
1309 if (rxq->free_count <= RX_LOW_WATERMARK)
1310 queue_work(priv->workqueue, &priv->rx_replenish);
1311
1312
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001313 /* If we've added more space for the firmware to place data, tell it.
1314 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07001315 if ((write != (rxq->write & ~0x7))
1316 || (abs(rxq->write - rxq->read) > 7)) {
1317 spin_lock_irqsave(&rxq->lock, flags);
1318 rxq->need_update = 1;
1319 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001320 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001321 if (rc)
1322 return rc;
1323 }
1324
1325 return 0;
1326}
1327
1328/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001329 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001330 *
1331 * When moving to rx_free an SKB is allocated for the slot.
1332 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001333 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001334 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001335 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001336static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001337{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001338 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001339 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001340 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001341 unsigned long flags;
1342 spin_lock_irqsave(&rxq->lock, flags);
1343 while (!list_empty(&rxq->rx_used)) {
1344 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001345 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001346
1347 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001348 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001349 alloc_skb(priv->hw_params.rx_buf_size,
1350 __GFP_NOWARN | GFP_ATOMIC);
Zhu Yib481de92007-09-25 17:54:57 -07001351 if (!rxb->skb) {
1352 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001353 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001354 /* We don't reschedule replenish work here -- we will
1355 * call the restock method and if it still needs
1356 * more buffers it will schedule replenish */
1357 break;
1358 }
Zhu Yi12342c42007-12-20 11:27:32 +08001359
1360 /* If radiotap head is required, reserve some headroom here.
1361 * The physical head count is a variable rx_stats->phy_count.
1362 * We reserve 4 bytes here. Plus these extra bytes, the
1363 * headroom of the physical head should be enough for the
1364 * radiotap head that iwl3945 supported. See iwl3945_rt.
1365 */
1366 skb_reserve(rxb->skb, 4);
1367
Zhu Yib481de92007-09-25 17:54:57 -07001368 priv->alloc_rxb_skb++;
1369 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001370
1371 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001372 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1373 rxb->skb->data,
1374 priv->hw_params.rx_buf_size,
1375 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001376 list_add_tail(&rxb->list, &rxq->rx_free);
1377 rxq->free_count++;
1378 }
1379 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001380}
1381
1382/*
1383 * this should be called while priv->lock is locked
1384 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02001385static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001386{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001387 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001388
1389 iwl3945_rx_allocate(priv);
1390 iwl3945_rx_queue_restock(priv);
1391}
1392
1393
1394void iwl3945_rx_replenish(void *data)
1395{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001396 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001397 unsigned long flags;
1398
1399 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001400
1401 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001402 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001403 spin_unlock_irqrestore(&priv->lock, flags);
1404}
1405
Zhu Yib481de92007-09-25 17:54:57 -07001406/* Convert linear signal-to-noise ratio into dB */
1407static u8 ratio2dB[100] = {
1408/* 0 1 2 3 4 5 6 7 8 9 */
1409 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1410 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1411 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1412 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1413 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1414 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1415 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1416 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1417 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1418 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1419};
1420
1421/* Calculates a relative dB value from a ratio of linear
1422 * (i.e. not dB) signal levels.
1423 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001424int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001425{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001426 /* 1000:1 or higher just report as 60 dB */
1427 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001428 return 60;
1429
Adrian Bunk221c80c2008-02-02 23:19:01 +02001430 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001431 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001432 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001433 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001434
1435 /* We shouldn't see this */
1436 if (sig_ratio < 1)
1437 return 0;
1438
1439 /* Use table for ratios 1:1 - 99:1 */
1440 return (int)ratio2dB[sig_ratio];
1441}
1442
1443#define PERFECT_RSSI (-20) /* dBm */
1444#define WORST_RSSI (-95) /* dBm */
1445#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1446
1447/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1448 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1449 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001450int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001451{
1452 int sig_qual;
1453 int degradation = PERFECT_RSSI - rssi_dbm;
1454
1455 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1456 * as indicator; formula is (signal dbm - noise dbm).
1457 * SNR at or above 40 is a great signal (100%).
1458 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1459 * Weakest usable signal is usually 10 - 15 dB SNR. */
1460 if (noise_dbm) {
1461 if (rssi_dbm - noise_dbm >= 40)
1462 return 100;
1463 else if (rssi_dbm < noise_dbm)
1464 return 0;
1465 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1466
1467 /* Else use just the signal level.
1468 * This formula is a least squares fit of data points collected and
1469 * compared with a reference system that had a percentage (%) display
1470 * for signal quality. */
1471 } else
1472 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1473 (15 * RSSI_RANGE + 62 * degradation)) /
1474 (RSSI_RANGE * RSSI_RANGE);
1475
1476 if (sig_qual > 100)
1477 sig_qual = 100;
1478 else if (sig_qual < 1)
1479 sig_qual = 0;
1480
1481 return sig_qual;
1482}
1483
1484/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001485 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001486 *
1487 * Uses the priv->rx_handlers callback function array to invoke
1488 * the appropriate handlers, including command responses,
1489 * frame-received notifications, and other notifications.
1490 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001491static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001492{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001493 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001494 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001495 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001496 u32 r, i;
1497 int reclaim;
1498 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001499 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001500 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001501
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001502 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1503 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001504 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001505 i = rxq->read;
1506
Winkler, Tomas37d68312009-01-08 10:19:54 -08001507 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001508 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001509 /* Rx interrupt, but nothing sent from uCode */
1510 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001511 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001512
1513 while (i != r) {
1514 rxb = rxq->queue[i];
1515
Ben Cahill9fbab512007-11-29 11:09:47 +08001516 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001517 * then a bug has been introduced in the queue refilling
1518 * routines -- catch it here */
1519 BUG_ON(rxb == NULL);
1520
1521 rxq->queue[i] = NULL;
1522
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001523 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001524 priv->hw_params.rx_buf_size,
Zhu Yib481de92007-09-25 17:54:57 -07001525 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001526 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001527
1528 /* Reclaim a command buffer only if this packet is a response
1529 * to a (driver-originated) command.
1530 * If the packet (e.g. Rx frame) originated from uCode,
1531 * there is no command buffer to reclaim.
1532 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1533 * but apparently a few don't get set; catch them here. */
1534 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1535 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1536 (pkt->hdr.cmd != REPLY_TX);
1537
1538 /* Based on type of command response or notification,
1539 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001540 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001541 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001542 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001543 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1544 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1545 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1546 } else {
1547 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001548 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001549 "r %d i %d No handler needed for %s, 0x%02x\n",
1550 r, i, get_cmd_string(pkt->hdr.cmd),
1551 pkt->hdr.cmd);
1552 }
1553
1554 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001555 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001556 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001557 * as we reclaim the driver command queue */
1558 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001559 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001560 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001561 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001562 }
1563
1564 /* For now we just don't re-use anything. We can tweak this
1565 * later to try and re-use notification packets and SKBs that
1566 * fail to Rx correctly */
1567 if (rxb->skb != NULL) {
1568 priv->alloc_rxb_skb--;
1569 dev_kfree_skb_any(rxb->skb);
1570 rxb->skb = NULL;
1571 }
1572
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001573 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001574 priv->hw_params.rx_buf_size,
1575 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001576 spin_lock_irqsave(&rxq->lock, flags);
1577 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1578 spin_unlock_irqrestore(&rxq->lock, flags);
1579 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001580 /* If there are a lot of unused frames,
1581 * restock the Rx queue so ucode won't assert. */
1582 if (fill_rx) {
1583 count++;
1584 if (count >= 8) {
1585 priv->rxq.read = i;
1586 __iwl3945_rx_replenish(priv);
1587 count = 0;
1588 }
1589 }
Zhu Yib481de92007-09-25 17:54:57 -07001590 }
1591
1592 /* Backtrack one entry */
1593 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001594 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001595}
1596
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001597/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001598static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001599{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001600 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001601 synchronize_irq(priv->pci_dev->irq);
1602 tasklet_kill(&priv->irq_tasklet);
1603}
1604
Zhu Yib481de92007-09-25 17:54:57 -07001605static const char *desc_lookup(int i)
1606{
1607 switch (i) {
1608 case 1:
1609 return "FAIL";
1610 case 2:
1611 return "BAD_PARAM";
1612 case 3:
1613 return "BAD_CHECKSUM";
1614 case 4:
1615 return "NMI_INTERRUPT";
1616 case 5:
1617 return "SYSASSERT";
1618 case 6:
1619 return "FATAL_ERROR";
1620 }
1621
1622 return "UNKNOWN";
1623}
1624
1625#define ERROR_START_OFFSET (1 * sizeof(u32))
1626#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1627
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001628static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001629{
1630 u32 i;
1631 u32 desc, time, count, base, data1;
1632 u32 blink1, blink2, ilink1, ilink2;
1633 int rc;
1634
1635 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1636
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001637 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001638 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001639 return;
1640 }
1641
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001642 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001643 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001644 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001645 return;
1646 }
1647
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001648 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001649
1650 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001651 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1652 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1653 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001654 }
1655
Winkler, Tomas15b16872008-12-19 10:37:33 +08001656 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001657 "ilink1 nmiPC Line\n");
1658 for (i = ERROR_START_OFFSET;
1659 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1660 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001661 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001662 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001663 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001664 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001665 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001666 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001667 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001668 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001669 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001670 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001671 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001672 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001673 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001674
Winkler, Tomas15b16872008-12-19 10:37:33 +08001675 IWL_ERR(priv,
1676 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1677 desc_lookup(desc), desc, time, blink1, blink2,
1678 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001679 }
1680
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001681 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001682
1683}
1684
Ben Cahillf58177b2007-11-29 11:09:43 +08001685#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001686
1687/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001688 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001689 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001690 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07001691 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001692static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001693 u32 num_events, u32 mode)
1694{
1695 u32 i;
1696 u32 base; /* SRAM byte address of event log header */
1697 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1698 u32 ptr; /* SRAM byte address of log data */
1699 u32 ev, time, data; /* event log data */
1700
1701 if (num_events == 0)
1702 return;
1703
1704 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1705
1706 if (mode == 0)
1707 event_size = 2 * sizeof(u32);
1708 else
1709 event_size = 3 * sizeof(u32);
1710
1711 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1712
1713 /* "time" is actually "data" for mode 0 (no timestamp).
1714 * place event id # at far right for easier visual parsing. */
1715 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001716 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001717 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001718 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001719 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001720 if (mode == 0) {
1721 /* data, ev */
1722 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1723 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001724 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001725 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001726 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001727 }
1728 }
1729}
1730
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001731static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001732{
1733 int rc;
1734 u32 base; /* SRAM byte address of event log header */
1735 u32 capacity; /* event log capacity in # entries */
1736 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1737 u32 num_wraps; /* # times uCode wrapped to top of log */
1738 u32 next_entry; /* index of next entry to be written by uCode */
1739 u32 size; /* # entries that we'll print */
1740
1741 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001742 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001743 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001744 return;
1745 }
1746
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001747 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001748 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001749 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001750 return;
1751 }
1752
1753 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001754 capacity = iwl_read_targ_mem(priv, base);
1755 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1756 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1757 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001758
1759 size = num_wraps ? capacity : next_entry;
1760
1761 /* bail out if nothing in log */
1762 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001763 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001764 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001765 return;
1766 }
1767
Winkler, Tomas15b16872008-12-19 10:37:33 +08001768 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001769 size, num_wraps);
1770
1771 /* if uCode has wrapped back to top of log, start at the oldest entry,
1772 * i.e the next one that uCode would fill. */
1773 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001774 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001775 capacity - next_entry, mode);
1776
1777 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001778 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001779
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001780 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001781}
1782
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001783static void iwl3945_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001784{
1785 unsigned long flags;
1786
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001787 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1788 sizeof(priv->staging_rxon));
1789 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001790 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001791
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07001792 priv->cfg->ops->smgmt->add_station(priv, priv->bssid, 1, 0, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07001793
1794 spin_lock_irqsave(&priv->lock, flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001795 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07001796 priv->error_recovering = 0;
1797 spin_unlock_irqrestore(&priv->lock, flags);
1798}
1799
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001800static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001801{
1802 u32 inta, handled = 0;
1803 u32 inta_fh;
1804 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001805#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001806 u32 inta_mask;
1807#endif
1808
1809 spin_lock_irqsave(&priv->lock, flags);
1810
1811 /* Ack/clear/reset pending uCode interrupts.
1812 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1813 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001814 inta = iwl_read32(priv, CSR_INT);
1815 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001816
1817 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1818 * Any new interrupts that happen after this, either while we're
1819 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001820 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1821 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001822
Samuel Ortizd08853a2009-01-23 13:45:17 -08001823#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001824 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001825 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001826 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001827 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001828 inta, inta_mask, inta_fh);
1829 }
1830#endif
1831
1832 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1833 * atomic, make sure that inta covers all the interrupts that
1834 * we've discovered, even if FH interrupt came in just after
1835 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001836 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001837 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001838 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001839 inta |= CSR_INT_BIT_FH_TX;
1840
1841 /* Now service all interrupt bits discovered above. */
1842 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001843 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001844
1845 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001846 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001847
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001848 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001849
1850 handled |= CSR_INT_BIT_HW_ERR;
1851
1852 spin_unlock_irqrestore(&priv->lock, flags);
1853
1854 return;
1855 }
1856
Samuel Ortizd08853a2009-01-23 13:45:17 -08001857#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001858 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001859 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001860 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001861 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001862 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001863
1864 /* Alive notification via Rx interrupt will do the real work */
1865 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001866 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001867 }
1868#endif
1869 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001870 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001871
Zhu Yib481de92007-09-25 17:54:57 -07001872 /* Error detected by uCode */
1873 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001874 IWL_ERR(priv, "Microcode SW error detected. "
1875 "Restarting 0x%X.\n", inta);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001876 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001877 handled |= CSR_INT_BIT_SW_ERR;
1878 }
1879
1880 /* uCode wakes up after power-down sleep */
1881 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001882 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001883 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001884 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1885 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1886 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1887 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1888 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1889 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001890
1891 handled |= CSR_INT_BIT_WAKEUP;
1892 }
1893
1894 /* All uCode command responses, including Tx command responses,
1895 * Rx "responses" (frame-received notification), and other
1896 * notifications from uCode come through here*/
1897 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001898 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001899 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1900 }
1901
1902 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001903 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001904
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001905 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
1906 if (!iwl_grab_nic_access(priv)) {
1907 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08001908 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001909 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001910 }
1911 handled |= CSR_INT_BIT_FH_TX;
1912 }
1913
1914 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001915 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001916
1917 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001918 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001919 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001920 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001921 }
1922
1923 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001924 /* only Re-enable if disabled by irq */
1925 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001926 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001927
Samuel Ortizd08853a2009-01-23 13:45:17 -08001928#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001929 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001930 inta = iwl_read32(priv, CSR_INT);
1931 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1932 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001933 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001934 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1935 }
1936#endif
1937 spin_unlock_irqrestore(&priv->lock, flags);
1938}
1939
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001940static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001941 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001942 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001943 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001944{
1945 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01001946 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001947 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001948 u16 passive_dwell = 0;
1949 u16 active_dwell = 0;
1950 int added, i;
1951
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08001952 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01001953 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07001954 return 0;
1955
Johannes Berg8318d782008-01-24 19:38:38 +01001956 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07001957
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08001958 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1959 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001960
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08001961 if (passive_dwell <= active_dwell)
1962 passive_dwell = active_dwell + 1;
1963
Johannes Berg8318d782008-01-24 19:38:38 +01001964 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02001965 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
1966 continue;
1967
Johannes Berg8318d782008-01-24 19:38:38 +01001968 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07001969
Samuel Ortize6148912009-01-23 13:45:15 -08001970 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001971 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001972 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001973 scan_ch->channel);
1974 continue;
1975 }
1976
Zhu Yib481de92007-09-25 17:54:57 -07001977 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1978 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001979 /* If passive , set up for auto-switch
1980 * and use long active_dwell time.
1981 */
1982 if (!is_active || is_channel_passive(ch_info) ||
1983 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
1984 scan_ch->type = 0; /* passive */
1985 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1986 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1987 } else {
1988 scan_ch->type = 1; /* active */
1989 }
1990
1991 /* Set direct probe bits. These may be used both for active
1992 * scan channels (probes gets sent right away),
1993 * or for passive channels (probes get se sent only after
1994 * hearing clear Rx packet).*/
1995 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1996 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08001997 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08001998 } else {
1999 /* uCode v1 does not allow setting direct probe bits on
2000 * passive channel. */
2001 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002002 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002003 }
Zhu Yib481de92007-09-25 17:54:57 -07002004
Ben Cahill9fbab512007-11-29 11:09:47 +08002005 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07002006 scan_ch->tpc.dsp_atten = 110;
2007 /* scan_pwr_info->tpc.dsp_atten; */
2008
2009 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01002010 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07002011 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
2012 else {
2013 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
2014 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08002015 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08002016 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07002017 */
2018 }
2019
Tomas Winklere1623442009-01-27 14:27:56 -08002020 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07002021 scan_ch->channel,
2022 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
2023 (scan_ch->type & 1) ?
2024 active_dwell : passive_dwell);
2025
2026 scan_ch++;
2027 added++;
2028 }
2029
Tomas Winklere1623442009-01-27 14:27:56 -08002030 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07002031 return added;
2032}
2033
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002034static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002035 struct ieee80211_rate *rates)
2036{
2037 int i;
2038
2039 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01002040 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
2041 rates[i].hw_value = i; /* Rate scaling will work on indexes */
2042 rates[i].hw_value_short = i;
2043 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08002044 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07002045 /*
Johannes Berg8318d782008-01-24 19:38:38 +01002046 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07002047 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002048 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01002049 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07002050 }
Zhu Yib481de92007-09-25 17:54:57 -07002051 }
2052}
2053
Zhu Yib481de92007-09-25 17:54:57 -07002054/******************************************************************************
2055 *
2056 * uCode download functions
2057 *
2058 ******************************************************************************/
2059
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002060static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002061{
Tomas Winkler98c92212008-01-14 17:46:20 -08002062 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
2063 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
2064 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2065 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
2066 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2067 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002068}
2069
2070/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002071 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002072 * looking at all data.
2073 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002074static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002075{
2076 u32 val;
2077 u32 save_len = len;
2078 int rc = 0;
2079 u32 errcnt;
2080
Tomas Winklere1623442009-01-27 14:27:56 -08002081 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002082
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002083 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002084 if (rc)
2085 return rc;
2086
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002087 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002088 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07002089
2090 errcnt = 0;
2091 for (; len > 0; len -= sizeof(u32), image++) {
2092 /* read data comes through single port, auto-incr addr */
2093 /* NOTE: Use the debugless read so we don't flood kernel log
2094 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002095 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002096 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002097 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002098 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2099 save_len - len, val, le32_to_cpu(*image));
2100 rc = -EIO;
2101 errcnt++;
2102 if (errcnt >= 20)
2103 break;
2104 }
2105 }
2106
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002107 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002108
2109 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002110 IWL_DEBUG_INFO(priv,
2111 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002112
2113 return rc;
2114}
2115
2116
2117/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002118 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002119 * using sample data 100 bytes apart. If these sample points are good,
2120 * it's a pretty good bet that everything between them is good, too.
2121 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002122static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002123{
2124 u32 val;
2125 int rc = 0;
2126 u32 errcnt = 0;
2127 u32 i;
2128
Tomas Winklere1623442009-01-27 14:27:56 -08002129 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002130
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002131 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002132 if (rc)
2133 return rc;
2134
2135 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2136 /* read data comes through single port, auto-incr addr */
2137 /* NOTE: Use the debugless read so we don't flood kernel log
2138 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002139 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002140 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002141 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002142 if (val != le32_to_cpu(*image)) {
2143#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002144 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002145 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2146 i, val, *image);
2147#endif
2148 rc = -EIO;
2149 errcnt++;
2150 if (errcnt >= 3)
2151 break;
2152 }
2153 }
2154
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002155 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002156
2157 return rc;
2158}
2159
2160
2161/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002162 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002163 * and verify its contents
2164 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002165static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002166{
2167 __le32 *image;
2168 u32 len;
2169 int rc = 0;
2170
2171 /* Try bootstrap */
2172 image = (__le32 *)priv->ucode_boot.v_addr;
2173 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002174 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002175 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002176 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002177 return 0;
2178 }
2179
2180 /* Try initialize */
2181 image = (__le32 *)priv->ucode_init.v_addr;
2182 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002183 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002184 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002185 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002186 return 0;
2187 }
2188
2189 /* Try runtime/protocol */
2190 image = (__le32 *)priv->ucode_code.v_addr;
2191 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002192 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002193 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002194 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002195 return 0;
2196 }
2197
Winkler, Tomas15b16872008-12-19 10:37:33 +08002198 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002199
Ben Cahill9fbab512007-11-29 11:09:47 +08002200 /* Since nothing seems to match, show first several data entries in
2201 * instruction SRAM, so maybe visual inspection will give a clue.
2202 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002203 image = (__le32 *)priv->ucode_boot.v_addr;
2204 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002205 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002206
2207 return rc;
2208}
2209
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002210static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002211{
2212 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002213 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002214}
2215
2216/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002217 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002218 *
2219 * Copy into buffers for card to fetch via bus-mastering
2220 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002221static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002222{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08002223 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002224 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002225 const struct firmware *ucode_raw;
2226 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002227 const char *name_pre = priv->cfg->fw_name_pre;
2228 const unsigned int api_max = priv->cfg->ucode_api_max;
2229 const unsigned int api_min = priv->cfg->ucode_api_min;
2230 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002231 u8 *src;
2232 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002233 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002234
2235 /* Ask kernel firmware_class module to get the boot firmware off disk.
2236 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002237 for (index = api_max; index >= api_min; index--) {
2238 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2239 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2240 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002241 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002242 buf, ret);
2243 if (ret == -ENOENT)
2244 continue;
2245 else
2246 goto error;
2247 } else {
2248 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002249 IWL_ERR(priv, "Loaded firmware %s, "
2250 "which is deprecated. "
2251 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002252 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002253 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2254 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002255 buf, ucode_raw->size);
2256 break;
2257 }
Zhu Yib481de92007-09-25 17:54:57 -07002258 }
2259
Reinette Chatrea0987a82008-12-02 12:14:06 -08002260 if (ret < 0)
2261 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002262
2263 /* Make sure that we got at least our header! */
2264 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002265 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002266 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002267 goto err_release;
2268 }
2269
2270 /* Data from ucode file: header followed by uCode images */
2271 ucode = (void *)ucode_raw->data;
2272
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002273 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002274 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002275 inst_size = le32_to_cpu(ucode->inst_size);
2276 data_size = le32_to_cpu(ucode->data_size);
2277 init_size = le32_to_cpu(ucode->init_size);
2278 init_data_size = le32_to_cpu(ucode->init_data_size);
2279 boot_size = le32_to_cpu(ucode->boot_size);
2280
Reinette Chatrea0987a82008-12-02 12:14:06 -08002281 /* api_ver should match the api version forming part of the
2282 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002283 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002284
2285 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002286 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002287 "Driver supports v%u, firmware is v%u.\n",
2288 api_max, api_ver);
2289 priv->ucode_ver = 0;
2290 ret = -EINVAL;
2291 goto err_release;
2292 }
2293 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002294 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002295 "got %u. New firmware can be obtained "
2296 "from http://www.intellinuxwireless.org.\n",
2297 api_max, api_ver);
2298
Tomas Winkler978785a2008-12-19 10:37:31 +08002299 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2300 IWL_UCODE_MAJOR(priv->ucode_ver),
2301 IWL_UCODE_MINOR(priv->ucode_ver),
2302 IWL_UCODE_API(priv->ucode_ver),
2303 IWL_UCODE_SERIAL(priv->ucode_ver));
2304
Tomas Winklere1623442009-01-27 14:27:56 -08002305 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002306 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002307 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2308 inst_size);
2309 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2310 data_size);
2311 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2312 init_size);
2313 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2314 init_data_size);
2315 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2316 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002317
Reinette Chatrea0987a82008-12-02 12:14:06 -08002318
Zhu Yib481de92007-09-25 17:54:57 -07002319 /* Verify size of file vs. image size info in file's header */
2320 if (ucode_raw->size < sizeof(*ucode) +
2321 inst_size + data_size + init_size +
2322 init_data_size + boot_size) {
2323
Tomas Winklere1623442009-01-27 14:27:56 -08002324 IWL_DEBUG_INFO(priv, "uCode file size %zd too small\n",
2325 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002326 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002327 goto err_release;
2328 }
2329
2330 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002331 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002332 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002333 inst_size);
2334 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002335 goto err_release;
2336 }
2337
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002338 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002339 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002340 data_size);
2341 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002342 goto err_release;
2343 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002344 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002345 IWL_DEBUG_INFO(priv,
2346 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002347 init_size);
2348 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002349 goto err_release;
2350 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002351 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002352 IWL_DEBUG_INFO(priv,
2353 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002354 init_data_size);
2355 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002356 goto err_release;
2357 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002358 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002359 IWL_DEBUG_INFO(priv,
2360 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002361 boot_size);
2362 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002363 goto err_release;
2364 }
2365
2366 /* Allocate ucode buffers for card's bus-master loading ... */
2367
2368 /* Runtime instructions and 2 copies of data:
2369 * 1) unmodified from disk
2370 * 2) backup cache for save/restore during power-downs */
2371 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002372 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002373
2374 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002375 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002376
2377 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002378 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002379
2380 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002381 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002382 goto err_pci_alloc;
2383
Tomas Winkler90e759d2007-11-29 11:09:41 +08002384 /* Initialization instructions and data */
2385 if (init_size && init_data_size) {
2386 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002387 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002388
2389 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002390 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002391
2392 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2393 goto err_pci_alloc;
2394 }
2395
2396 /* Bootstrap (instructions only, no data) */
2397 if (boot_size) {
2398 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002399 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002400
2401 if (!priv->ucode_boot.v_addr)
2402 goto err_pci_alloc;
2403 }
2404
Zhu Yib481de92007-09-25 17:54:57 -07002405 /* Copy images into buffers for card's bus-master reads ... */
2406
2407 /* Runtime instructions (first block of data in file) */
2408 src = &ucode->data[0];
2409 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002410 IWL_DEBUG_INFO(priv,
2411 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002412 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08002413 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002414 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2415
2416 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002417 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07002418 src = &ucode->data[inst_size];
2419 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002420 IWL_DEBUG_INFO(priv,
2421 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002422 memcpy(priv->ucode_data.v_addr, src, len);
2423 memcpy(priv->ucode_data_backup.v_addr, src, len);
2424
2425 /* Initialization instructions (3rd block) */
2426 if (init_size) {
2427 src = &ucode->data[inst_size + data_size];
2428 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002429 IWL_DEBUG_INFO(priv,
2430 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002431 memcpy(priv->ucode_init.v_addr, src, len);
2432 }
2433
2434 /* Initialization data (4th block) */
2435 if (init_data_size) {
2436 src = &ucode->data[inst_size + data_size + init_size];
2437 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002438 IWL_DEBUG_INFO(priv,
2439 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002440 memcpy(priv->ucode_init_data.v_addr, src, len);
2441 }
2442
2443 /* Bootstrap instructions (5th block) */
2444 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
2445 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002446 IWL_DEBUG_INFO(priv,
2447 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002448 memcpy(priv->ucode_boot.v_addr, src, len);
2449
2450 /* We have our copies now, allow OS release its copies */
2451 release_firmware(ucode_raw);
2452 return 0;
2453
2454 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002455 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002456 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002457 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002458
2459 err_release:
2460 release_firmware(ucode_raw);
2461
2462 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002463 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002464}
2465
2466
2467/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002468 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002469 *
2470 * Tell initialization uCode where to find runtime uCode.
2471 *
2472 * BSM registers initially contain pointers to initialization uCode.
2473 * We need to replace them to load runtime uCode inst and data,
2474 * and to save runtime data when powering down.
2475 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002476static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002477{
2478 dma_addr_t pinst;
2479 dma_addr_t pdata;
2480 int rc = 0;
2481 unsigned long flags;
2482
2483 /* bits 31:0 for 3945 */
2484 pinst = priv->ucode_code.p_addr;
2485 pdata = priv->ucode_data_backup.p_addr;
2486
2487 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002488 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002489 if (rc) {
2490 spin_unlock_irqrestore(&priv->lock, flags);
2491 return rc;
2492 }
2493
2494 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002495 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2496 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2497 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002498 priv->ucode_data.len);
2499
Tomas Winklera96a27f2008-10-23 23:48:56 -07002500 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002501 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002502 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002503 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2504
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002505 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002506
2507 spin_unlock_irqrestore(&priv->lock, flags);
2508
Tomas Winklere1623442009-01-27 14:27:56 -08002509 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002510
2511 return rc;
2512}
2513
2514/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002515 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002516 *
2517 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2518 *
Zhu Yib481de92007-09-25 17:54:57 -07002519 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002520 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002521static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002522{
2523 /* Check alive response for "valid" sign from uCode */
2524 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2525 /* We had an error bringing up the hardware, so take it
2526 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002527 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002528 goto restart;
2529 }
2530
2531 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2532 * This is a paranoid check, because we would not have gotten the
2533 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002534 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002535 /* Runtime instruction load was bad;
2536 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002537 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002538 goto restart;
2539 }
2540
2541 /* Send pointers to protocol/runtime uCode image ... init code will
2542 * load and launch runtime uCode, which will send us another "Alive"
2543 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002544 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002545 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002546 /* Runtime instruction load won't happen;
2547 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002548 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002549 goto restart;
2550 }
2551 return;
2552
2553 restart:
2554 queue_work(priv->workqueue, &priv->restart);
2555}
2556
Zhu Yib481de92007-09-25 17:54:57 -07002557/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002558 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002559 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002560 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002561 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002562static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002563{
2564 int rc = 0;
2565 int thermal_spin = 0;
2566 u32 rfkill;
2567
Tomas Winklere1623442009-01-27 14:27:56 -08002568 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002569
2570 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2571 /* We had an error bringing up the hardware, so take it
2572 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002573 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002574 goto restart;
2575 }
2576
2577 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2578 * This is a paranoid check, because we would not have gotten the
2579 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002580 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002581 /* Runtime instruction load was bad;
2582 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002583 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002584 goto restart;
2585 }
2586
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002587 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002588
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002589 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002590 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002591 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002592 return;
2593 }
2594
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002595 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002596 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002597 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002598
2599 if (rfkill & 0x1) {
2600 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002601 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002602 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002603 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002604 thermal_spin++;
2605 udelay(10);
2606 }
2607
2608 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002609 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002610 thermal_spin * 10);
2611 } else
2612 set_bit(STATUS_RF_KILL_HW, &priv->status);
2613
Ben Cahill9fbab512007-11-29 11:09:47 +08002614 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002615 set_bit(STATUS_ALIVE, &priv->status);
2616
2617 /* Clear out the uCode error bit if it is set */
2618 clear_bit(STATUS_FW_ERROR, &priv->status);
2619
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002620 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002621 return;
2622
Johannes Berg36d68252008-05-15 12:55:26 +02002623 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002624
2625 priv->active_rate = priv->rates_mask;
2626 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2627
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002628 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002629
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002630 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002631 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002632 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002633
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002634 memcpy(&priv->staging_rxon, &priv->active_rxon,
2635 sizeof(priv->staging_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07002636 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2637 } else {
2638 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002639 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002640 }
2641
Ben Cahill9fbab512007-11-29 11:09:47 +08002642 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002643 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002644
2645 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002646 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002647
Zhu Yib481de92007-09-25 17:54:57 -07002648 iwl3945_reg_txpower_periodic(priv);
2649
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002650 iwl3945_led_register(priv);
2651
Tomas Winklere1623442009-01-27 14:27:56 -08002652 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002653 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002654 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002655
2656 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002657 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002658
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002659 /* reassociate for ADHOC mode */
2660 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2661 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2662 priv->vif);
2663 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002664 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002665 }
2666
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002667 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002668 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002669
Zhu Yib481de92007-09-25 17:54:57 -07002670 return;
2671
2672 restart:
2673 queue_work(priv->workqueue, &priv->restart);
2674}
2675
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002676static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002677
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002678static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002679{
2680 unsigned long flags;
2681 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2682 struct ieee80211_conf *conf = NULL;
2683
Tomas Winklere1623442009-01-27 14:27:56 -08002684 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002685
2686 conf = ieee80211_get_hw_conf(priv->hw);
2687
2688 if (!exit_pending)
2689 set_bit(STATUS_EXIT_PENDING, &priv->status);
2690
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002691 iwl3945_led_unregister(priv);
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002692 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002693
2694 /* Unblock any waiting calls */
2695 wake_up_interruptible_all(&priv->wait_command_queue);
2696
Zhu Yib481de92007-09-25 17:54:57 -07002697 /* Wipe out the EXIT_PENDING status bit if we are not actually
2698 * exiting the module */
2699 if (!exit_pending)
2700 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2701
2702 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002703 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002704
2705 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002706 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002707 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002708 spin_unlock_irqrestore(&priv->lock, flags);
2709 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002710
2711 if (priv->mac80211_registered)
2712 ieee80211_stop_queues(priv->hw);
2713
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002714 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002715 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002716 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002717 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2718 STATUS_RF_KILL_HW |
2719 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2720 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002721 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2722 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002723 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2724 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002725 goto exit;
2726 }
2727
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002728 /* ...otherwise clear out all the status bits but the RF Kill
2729 * bits and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002730 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2731 STATUS_RF_KILL_HW |
2732 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2733 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002734 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2735 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002736 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002737 STATUS_FW_ERROR |
2738 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2739 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002740
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002741 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002742 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002743 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002744 spin_unlock_irqrestore(&priv->lock, flags);
2745
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002746 iwl3945_hw_txq_ctx_stop(priv);
2747 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002748
2749 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002750 if (!iwl_grab_nic_access(priv)) {
2751 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002752 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002753 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002754 }
2755 spin_unlock_irqrestore(&priv->lock, flags);
2756
2757 udelay(5);
2758
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002759 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002760 priv->cfg->ops->lib->apm_ops.stop(priv);
2761 else
2762 priv->cfg->ops->lib->apm_ops.reset(priv);
2763
Zhu Yib481de92007-09-25 17:54:57 -07002764 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002765 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002766
2767 if (priv->ibss_beacon)
2768 dev_kfree_skb(priv->ibss_beacon);
2769 priv->ibss_beacon = NULL;
2770
2771 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002772 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002773}
2774
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002775static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002776{
2777 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002778 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002779 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002780
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002781 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002782}
2783
2784#define MAX_HW_RESTARTS 5
2785
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002786static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002787{
2788 int rc, i;
2789
2790 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002791 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002792 return -EIO;
2793 }
2794
2795 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002796 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07002797 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002798 return -ENODEV;
2799 }
2800
Reinette Chatree903fbd2008-01-30 22:05:15 -08002801 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002802 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002803 return -EIO;
2804 }
2805
Zhu Yie655b9f2008-01-24 02:19:38 -08002806 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002807 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002808 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2809 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2810 else {
2811 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002812 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2813 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002814 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002815
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002816 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002817
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002818 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002819 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002820 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002821 return rc;
2822 }
2823
2824 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002825 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2826 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002827 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2828
2829 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002830 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002831 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002832
2833 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002834 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2835 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002836
2837 /* Copy original ucode data image from disk into backup cache.
2838 * This will be used to initialize the on-board processor's
2839 * data SRAM for a clean start when the runtime program first loads. */
2840 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002841 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002842
Zhu Yie655b9f2008-01-24 02:19:38 -08002843 /* We return success when we resume from suspend and rf_kill is on. */
2844 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2845 return 0;
2846
Zhu Yib481de92007-09-25 17:54:57 -07002847 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2848
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002849 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002850
2851 /* load bootstrap state machine,
2852 * load bootstrap program into processor's memory,
2853 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002854 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002855
2856 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002857 IWL_ERR(priv,
2858 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002859 continue;
2860 }
2861
2862 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002863 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002864
Tomas Winklere1623442009-01-27 14:27:56 -08002865 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002866
2867 return 0;
2868 }
2869
2870 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002871 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002872 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002873
2874 /* tried to restart and config the device for as long as our
2875 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002876 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002877 return -EIO;
2878}
2879
2880
2881/*****************************************************************************
2882 *
2883 * Workqueue callbacks
2884 *
2885 *****************************************************************************/
2886
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002887static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002888{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002889 struct iwl_priv *priv =
2890 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002891
2892 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2893 return;
2894
2895 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002896 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002897 mutex_unlock(&priv->mutex);
2898}
2899
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002900static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002901{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002902 struct iwl_priv *priv =
2903 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002904
2905 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2906 return;
2907
2908 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002909 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002910 mutex_unlock(&priv->mutex);
2911}
2912
Helmut Schaa26635162009-01-15 09:38:44 +01002913static void iwl3945_rfkill_poll(struct work_struct *data)
2914{
2915 struct iwl_priv *priv =
2916 container_of(data, struct iwl_priv, rfkill_poll.work);
2917 unsigned long status = priv->status;
2918
2919 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2920 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2921 else
2922 set_bit(STATUS_RF_KILL_HW, &priv->status);
2923
2924 if (test_bit(STATUS_RF_KILL_HW, &status) != test_bit(STATUS_RF_KILL_HW, &priv->status))
2925 queue_work(priv->workqueue, &priv->rf_kill);
2926
2927 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2928 round_jiffies_relative(2 * HZ));
2929
2930}
2931
Zhu Yib481de92007-09-25 17:54:57 -07002932#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002933static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002934{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002935 struct iwl_priv *priv =
2936 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002937 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002938 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002939 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07002940 .meta.flags = CMD_SIZE_HUGE,
2941 };
2942 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002943 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002944 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002945 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002946 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002947 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002948
2949 conf = ieee80211_get_hw_conf(priv->hw);
2950
2951 mutex_lock(&priv->mutex);
2952
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002953 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002954 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002955 goto done;
2956 }
2957
Tomas Winklera96a27f2008-10-23 23:48:56 -07002958 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07002959 * was given the chance to run... */
2960 if (!test_bit(STATUS_SCANNING, &priv->status))
2961 goto done;
2962
2963 /* This should never be called or scheduled if there is currently
2964 * a scan active in the hardware. */
2965 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002966 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
2967 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002968 rc = -EIO;
2969 goto done;
2970 }
2971
2972 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002973 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07002974 goto done;
2975 }
2976
2977 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002978 IWL_DEBUG_HC(priv,
2979 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002980 goto done;
2981 }
2982
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002983 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002984 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07002985 goto done;
2986 }
2987
2988 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002989 IWL_DEBUG_HC(priv,
2990 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002991 goto done;
2992 }
2993
2994 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08002995 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07002996 goto done;
2997 }
2998
Winkler, Tomas805cee52009-01-19 15:30:28 -08002999 if (!priv->scan) {
3000 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07003001 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08003002 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07003003 rc = -ENOMEM;
3004 goto done;
3005 }
3006 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08003007 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003008 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003009
3010 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
3011 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
3012
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003013 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003014 u16 interval = 0;
3015 u32 extra;
3016 u32 suspend_time = 100;
3017 u32 scan_suspend_time = 100;
3018 unsigned long flags;
3019
Tomas Winklere1623442009-01-27 14:27:56 -08003020 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07003021
3022 spin_lock_irqsave(&priv->lock, flags);
3023 interval = priv->beacon_int;
3024 spin_unlock_irqrestore(&priv->lock, flags);
3025
3026 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003027 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07003028 if (!interval)
3029 interval = suspend_time;
3030 /*
3031 * suspend time format:
3032 * 0-19: beacon interval in usec (time before exec.)
3033 * 20-23: 0
3034 * 24-31: number of beacons (suspend between channels)
3035 */
3036
3037 extra = (suspend_time / interval) << 24;
3038 scan_suspend_time = 0xFF0FFFFF &
3039 (extra | ((suspend_time % interval) * 1024));
3040
3041 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08003042 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003043 scan_suspend_time, interval);
3044 }
3045
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003046 if (priv->scan_request->n_ssids) {
3047 int i, p = 0;
3048 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
3049 for (i = 0; i < priv->scan_request->n_ssids; i++) {
3050 /* always does wildcard anyway */
3051 if (!priv->scan_request->ssids[i].ssid_len)
3052 continue;
3053 scan->direct_scan[p].id = WLAN_EID_SSID;
3054 scan->direct_scan[p].len =
3055 priv->scan_request->ssids[i].ssid_len;
3056 memcpy(scan->direct_scan[p].ssid,
3057 priv->scan_request->ssids[i].ssid,
3058 priv->scan_request->ssids[i].ssid_len);
3059 n_probes++;
3060 p++;
3061 }
3062 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003063 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003064 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003065
3066 /* We don't build a direct scan probe request; the uCode will do
3067 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07003068 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08003069 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07003070 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3071
3072 /* flags + rate selection */
3073
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003074 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003075 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
3076 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
3077 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003078 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003079 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003080 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07003081 /*
3082 * If active scaning is requested but a certain channel
3083 * is marked passive, we can do active scanning if we
3084 * detect transmissions.
3085 */
3086 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003087 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003088 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003089 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07003090 goto done;
3091 }
3092
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003093 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003094 iwl_fill_probe_req(priv,
3095 (struct ieee80211_mgmt *)scan->data,
3096 priv->scan_request->ie,
3097 priv->scan_request->ie_len,
3098 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003099
Zhu Yib481de92007-09-25 17:54:57 -07003100 /* select Rx antennas */
3101 scan->flags |= iwl3945_get_antenna_flags(priv);
3102
Johannes Berg05c914f2008-09-11 00:01:58 +02003103 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07003104 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
3105
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003106 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003107 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003108 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07003109
Reinette Chatre14b54332008-11-04 12:21:35 -08003110 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003111 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08003112 goto done;
3113 }
3114
Zhu Yib481de92007-09-25 17:54:57 -07003115 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003116 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003117 cmd.data = scan;
3118 scan->len = cpu_to_le16(cmd.len);
3119
3120 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003121 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003122 if (rc)
3123 goto done;
3124
3125 queue_delayed_work(priv->workqueue, &priv->scan_check,
3126 IWL_SCAN_CHECK_WATCHDOG);
3127
3128 mutex_unlock(&priv->mutex);
3129 return;
3130
3131 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003132 /* can not perform scan make sure we clear scanning
3133 * bits from status so next scan request can be performed.
3134 * if we dont clear scanning status bit here all next scan
3135 * will fail
3136 */
3137 clear_bit(STATUS_SCAN_HW, &priv->status);
3138 clear_bit(STATUS_SCANNING, &priv->status);
3139
Ian Schram01ebd062007-10-25 17:15:22 +08003140 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003141 queue_work(priv->workqueue, &priv->scan_completed);
3142 mutex_unlock(&priv->mutex);
3143}
3144
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003145static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003146{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003147 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07003148
3149 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3150 return;
3151
3152 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003153 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003154 mutex_unlock(&priv->mutex);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003155 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003156}
3157
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003158static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003159{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003160 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003161
3162 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3163 return;
3164
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003165 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003166 queue_work(priv->workqueue, &priv->up);
3167}
3168
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003169static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003170{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003171 struct iwl_priv *priv =
3172 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003173
3174 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3175 return;
3176
3177 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003178 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003179 mutex_unlock(&priv->mutex);
3180}
3181
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003182#define IWL_DELAY_NEXT_SCAN (HZ*2)
3183
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003184void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003185{
Zhu Yib481de92007-09-25 17:54:57 -07003186 int rc = 0;
3187 struct ieee80211_conf *conf = NULL;
3188
Johannes Berg05c914f2008-09-11 00:01:58 +02003189 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003190 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003191 return;
3192 }
3193
3194
Tomas Winklere1623442009-01-27 14:27:56 -08003195 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003196 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003197
3198 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3199 return;
3200
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003201 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003202 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003203
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003204 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003205
Zhu Yib481de92007-09-25 17:54:57 -07003206 conf = ieee80211_get_hw_conf(priv->hw);
3207
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003208 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003209 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003210
Tomas Winkler28afaf92008-12-19 10:37:06 +08003211 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003212 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003213 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003214 sizeof(priv->rxon_timing), &priv->rxon_timing);
3215 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003216 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003217 "Attempting to continue.\n");
3218
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003219 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003220
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003221 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003222
Tomas Winklere1623442009-01-27 14:27:56 -08003223 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003224 priv->assoc_id, priv->beacon_int);
3225
3226 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003227 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003228 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003229 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003230
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003231 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003232 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003233 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003234 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003235 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003236
Johannes Berg05c914f2008-09-11 00:01:58 +02003237 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003238 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003239
3240 }
3241
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003242 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003243
3244 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003245 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003246 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003247 break;
3248
Johannes Berg05c914f2008-09-11 00:01:58 +02003249 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003250
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003251 priv->assoc_id = 1;
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07003252 priv->cfg->ops->smgmt->add_station(priv, priv->bssid, 0, 0, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003253 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003254 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003255 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3256 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003257 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3258 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003259
3260 break;
3261
3262 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003263 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003264 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003265 break;
3266 }
3267
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003268 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003269
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003270 /* we have just associated, don't start scan too early */
3271 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003272}
3273
Zhu Yib481de92007-09-25 17:54:57 -07003274/*****************************************************************************
3275 *
3276 * mac80211 entry point functions
3277 *
3278 *****************************************************************************/
3279
Zhu Yi5a669262008-01-14 17:46:18 -08003280#define UCODE_READY_TIMEOUT (2 * HZ)
3281
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003282static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003283{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003284 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003285 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003286
Tomas Winklere1623442009-01-27 14:27:56 -08003287 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003288
3289 /* we should be verifying the device is ready to be opened */
3290 mutex_lock(&priv->mutex);
3291
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003292 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
Zhu Yi5a669262008-01-14 17:46:18 -08003293 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3294 * ucode filename and max sizes are card-specific. */
3295
3296 if (!priv->ucode_code.len) {
3297 ret = iwl3945_read_ucode(priv);
3298 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003299 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003300 mutex_unlock(&priv->mutex);
3301 goto out_release_irq;
3302 }
3303 }
3304
Zhu Yie655b9f2008-01-24 02:19:38 -08003305 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003306
Zhu Yib481de92007-09-25 17:54:57 -07003307 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003308
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003309 iwl_rfkill_set_hw_state(priv);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02003310
Zhu Yie655b9f2008-01-24 02:19:38 -08003311 if (ret)
3312 goto out_release_irq;
3313
Tomas Winklere1623442009-01-27 14:27:56 -08003314 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003315
Zhu Yi5a669262008-01-14 17:46:18 -08003316 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3317 * mac80211 will not be run successfully. */
3318 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3319 test_bit(STATUS_READY, &priv->status),
3320 UCODE_READY_TIMEOUT);
3321 if (!ret) {
3322 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003323 IWL_ERR(priv,
3324 "Wait for START_ALIVE timeout after %dms.\n",
3325 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003326 ret = -ETIMEDOUT;
3327 goto out_release_irq;
3328 }
3329 }
3330
Helmut Schaa26635162009-01-15 09:38:44 +01003331 /* ucode is running and will send rfkill notifications,
3332 * no need to poll the killswitch state anymore */
3333 cancel_delayed_work(&priv->rfkill_poll);
3334
Zhu Yie655b9f2008-01-24 02:19:38 -08003335 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003336 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003337 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003338
3339out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003340 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003341 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003342 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003343}
3344
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003345static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003346{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003347 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003348
Tomas Winklere1623442009-01-27 14:27:56 -08003349 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003350
Zhu Yie655b9f2008-01-24 02:19:38 -08003351 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003352 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003353 return;
3354 }
3355
Zhu Yib481de92007-09-25 17:54:57 -07003356 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003357
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003358 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003359 /* stop mac, cancel any scan request and clear
3360 * RXON_FILTER_ASSOC_MSK BIT
3361 */
Zhu Yi5a669262008-01-14 17:46:18 -08003362 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003363 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003364 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003365 }
3366
Zhu Yi5a669262008-01-14 17:46:18 -08003367 iwl3945_down(priv);
3368
3369 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003370
3371 /* start polling the killswitch state again */
3372 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3373 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003374
Tomas Winklere1623442009-01-27 14:27:56 -08003375 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003376}
3377
Johannes Berge039fa42008-05-15 12:55:29 +02003378static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003379{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003380 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003381
Tomas Winklere1623442009-01-27 14:27:56 -08003382 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003383
Tomas Winklere1623442009-01-27 14:27:56 -08003384 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003385 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003386
Johannes Berge039fa42008-05-15 12:55:29 +02003387 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003388 dev_kfree_skb_any(skb);
3389
Tomas Winklere1623442009-01-27 14:27:56 -08003390 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003391 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003392}
3393
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003394void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003395{
3396 int rc = 0;
3397
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003398 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003399 return;
3400
3401 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003402 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003403
3404 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003405 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003406 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003407
3408 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003409 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003410 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003411 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3412 sizeof(priv->rxon_timing),
3413 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003414 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003415 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003416 "Attempting to continue.\n");
3417
3418 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003419 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003420 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003421 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003422 RXON_FLG_SHORT_PREAMBLE_MSK;
3423 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003424 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003425 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3426
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003427 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003428 if (priv->assoc_capability &
3429 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003430 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003431 RXON_FLG_SHORT_SLOT_MSK;
3432 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003433 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003434 ~RXON_FLG_SHORT_SLOT_MSK;
3435
Johannes Berg05c914f2008-09-11 00:01:58 +02003436 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003437 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003438 ~RXON_FLG_SHORT_SLOT_MSK;
3439 }
3440 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003441 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003442 iwlcore_commit_rxon(priv);
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07003443 priv->cfg->ops->smgmt->add_station(priv, iwl_bcast_addr, 0, 0, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003444 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003445 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003446
3447 /* FIXME - we need to add code here to detect a totally new
3448 * configuration, reset the AP, unassoc, rxon timing, assoc,
3449 * clear sta table, add BCAST sta... */
3450}
3451
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003452static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003453 struct ieee80211_vif *vif,
3454 struct ieee80211_sta *sta,
3455 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003456{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003457 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003458 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003459 int ret = 0;
3460 u8 sta_id = IWL_INVALID_STATION;
3461 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003462
Tomas Winklere1623442009-01-27 14:27:56 -08003463 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003464
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003465 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003466 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003467 return -EOPNOTSUPP;
3468 }
3469
Winkler, Tomas42986792009-01-19 15:30:22 -08003470 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003471 static_key = !iwl_is_associated(priv);
3472
3473 if (!static_key) {
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07003474 sta_id = priv->cfg->ops->smgmt->find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003475 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003476 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003477 addr);
3478 return -EINVAL;
3479 }
Zhu Yib481de92007-09-25 17:54:57 -07003480 }
3481
3482 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003483 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003484 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003485
Zhu Yib481de92007-09-25 17:54:57 -07003486 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003487 case SET_KEY:
3488 if (static_key)
3489 ret = iwl3945_set_static_key(priv, key);
3490 else
3491 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3492 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003493 break;
3494 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003495 if (static_key)
3496 ret = iwl3945_remove_static_key(priv);
3497 else
3498 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3499 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003500 break;
3501 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003502 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003503 }
3504
Tomas Winklere1623442009-01-27 14:27:56 -08003505 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003506
Winkler, Tomas42986792009-01-19 15:30:22 -08003507 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003508}
3509
Zhu Yib481de92007-09-25 17:54:57 -07003510/*****************************************************************************
3511 *
3512 * sysfs attributes
3513 *
3514 *****************************************************************************/
3515
Samuel Ortizd08853a2009-01-23 13:45:17 -08003516#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003517
3518/*
3519 * The following adds a new attribute to the sysfs representation
3520 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3521 * used for controlling the debug level.
3522 *
3523 * See the level definitions in iwl for details.
3524 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003525static ssize_t show_debug_level(struct device *d,
3526 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003527{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003528 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003529
3530 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003531}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003532static ssize_t store_debug_level(struct device *d,
3533 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003534 const char *buf, size_t count)
3535{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003536 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003537 unsigned long val;
3538 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003539
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003540 ret = strict_strtoul(buf, 0, &val);
3541 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003542 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003543 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003544 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003545
3546 return strnlen(buf, count);
3547}
3548
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003549static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3550 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003551
Samuel Ortizd08853a2009-01-23 13:45:17 -08003552#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003553
Zhu Yib481de92007-09-25 17:54:57 -07003554static ssize_t show_temperature(struct device *d,
3555 struct device_attribute *attr, char *buf)
3556{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003557 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003558
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003559 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003560 return -EAGAIN;
3561
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003562 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003563}
3564
3565static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3566
Zhu Yib481de92007-09-25 17:54:57 -07003567static ssize_t show_tx_power(struct device *d,
3568 struct device_attribute *attr, char *buf)
3569{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003570 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003571 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003572}
3573
3574static ssize_t store_tx_power(struct device *d,
3575 struct device_attribute *attr,
3576 const char *buf, size_t count)
3577{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003578 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003579 char *p = (char *)buf;
3580 u32 val;
3581
3582 val = simple_strtoul(p, &p, 10);
3583 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003584 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003585 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003586 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003587
3588 return count;
3589}
3590
3591static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3592
3593static ssize_t show_flags(struct device *d,
3594 struct device_attribute *attr, char *buf)
3595{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003596 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003597
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003598 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003599}
3600
3601static ssize_t store_flags(struct device *d,
3602 struct device_attribute *attr,
3603 const char *buf, size_t count)
3604{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003605 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003606 u32 flags = simple_strtoul(buf, NULL, 0);
3607
3608 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003609 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003610 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003611 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003612 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003613 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003614 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003615 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003616 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003617 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003618 }
3619 }
3620 mutex_unlock(&priv->mutex);
3621
3622 return count;
3623}
3624
3625static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3626
3627static ssize_t show_filter_flags(struct device *d,
3628 struct device_attribute *attr, char *buf)
3629{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003630 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003631
3632 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003633 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003634}
3635
3636static ssize_t store_filter_flags(struct device *d,
3637 struct device_attribute *attr,
3638 const char *buf, size_t count)
3639{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003640 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003641 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3642
3643 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003644 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003645 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003646 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003647 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003648 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003649 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003650 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003651 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003652 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003653 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003654 }
3655 }
3656 mutex_unlock(&priv->mutex);
3657
3658 return count;
3659}
3660
3661static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3662 store_filter_flags);
3663
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003664#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003665
3666static ssize_t show_measurement(struct device *d,
3667 struct device_attribute *attr, char *buf)
3668{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003669 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003670 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003671 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003672 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003673 unsigned long flags;
3674
3675 spin_lock_irqsave(&priv->lock, flags);
3676 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3677 spin_unlock_irqrestore(&priv->lock, flags);
3678 return 0;
3679 }
3680 memcpy(&measure_report, &priv->measure_report, size);
3681 priv->measurement_status = 0;
3682 spin_unlock_irqrestore(&priv->lock, flags);
3683
3684 while (size && (PAGE_SIZE - len)) {
3685 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3686 PAGE_SIZE - len, 1);
3687 len = strlen(buf);
3688 if (PAGE_SIZE - len)
3689 buf[len++] = '\n';
3690
3691 ofs += 16;
3692 size -= min(size, 16U);
3693 }
3694
3695 return len;
3696}
3697
3698static ssize_t store_measurement(struct device *d,
3699 struct device_attribute *attr,
3700 const char *buf, size_t count)
3701{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003702 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003703 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003704 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003705 .start_time = cpu_to_le64(priv->last_tsf),
3706 .duration = cpu_to_le16(1),
3707 };
3708 u8 type = IWL_MEASURE_BASIC;
3709 u8 buffer[32];
3710 u8 channel;
3711
3712 if (count) {
3713 char *p = buffer;
3714 strncpy(buffer, buf, min(sizeof(buffer), count));
3715 channel = simple_strtoul(p, NULL, 0);
3716 if (channel)
3717 params.channel = channel;
3718
3719 p = buffer;
3720 while (*p && *p != ' ')
3721 p++;
3722 if (*p)
3723 type = simple_strtoul(p + 1, NULL, 0);
3724 }
3725
Tomas Winklere1623442009-01-27 14:27:56 -08003726 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003727 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003728 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003729
3730 return count;
3731}
3732
3733static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3734 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003735#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003736
Zhu Yib481de92007-09-25 17:54:57 -07003737static ssize_t store_retry_rate(struct device *d,
3738 struct device_attribute *attr,
3739 const char *buf, size_t count)
3740{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003741 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003742
3743 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3744 if (priv->retry_rate <= 0)
3745 priv->retry_rate = 1;
3746
3747 return count;
3748}
3749
3750static ssize_t show_retry_rate(struct device *d,
3751 struct device_attribute *attr, char *buf)
3752{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003753 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003754 return sprintf(buf, "%d", priv->retry_rate);
3755}
3756
3757static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3758 store_retry_rate);
3759
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003760
Zhu Yib481de92007-09-25 17:54:57 -07003761static ssize_t store_power_level(struct device *d,
3762 struct device_attribute *attr,
3763 const char *buf, size_t count)
3764{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003765 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003766 int ret;
3767 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003768
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003769
Zhu Yib481de92007-09-25 17:54:57 -07003770 mutex_lock(&priv->mutex);
3771
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003772 ret = strict_strtoul(buf, 10, &mode);
3773 if (ret)
3774 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003775
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003776 ret = iwl_power_set_user_mode(priv, mode);
3777 if (ret) {
3778 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
3779 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003780 }
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003781 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003782
3783 out:
3784 mutex_unlock(&priv->mutex);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003785 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003786}
3787
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003788static ssize_t show_power_level(struct device *d,
3789 struct device_attribute *attr, char *buf)
3790{
3791 struct iwl_priv *priv = dev_get_drvdata(d);
3792 int mode = priv->power_data.user_power_setting;
3793 int system = priv->power_data.system_power_setting;
3794 int level = priv->power_data.power_mode;
3795 char *p = buf;
3796
3797 switch (system) {
3798 case IWL_POWER_SYS_AUTO:
3799 p += sprintf(p, "SYSTEM:auto");
3800 break;
3801 case IWL_POWER_SYS_AC:
3802 p += sprintf(p, "SYSTEM:ac");
3803 break;
3804 case IWL_POWER_SYS_BATTERY:
3805 p += sprintf(p, "SYSTEM:battery");
3806 break;
3807 }
3808
3809 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3810 "fixed" : "auto");
3811 p += sprintf(p, "\tINDEX:%d", level);
3812 p += sprintf(p, "\n");
3813 return p - buf + 1;
3814}
3815
3816static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR,
3817 show_power_level, store_power_level);
3818
Zhu Yib481de92007-09-25 17:54:57 -07003819#define MAX_WX_STRING 80
3820
3821/* Values are in microsecond */
3822static const s32 timeout_duration[] = {
3823 350000,
3824 250000,
3825 75000,
3826 37000,
3827 25000,
3828};
3829static const s32 period_duration[] = {
3830 400000,
3831 700000,
3832 1000000,
3833 1000000,
3834 1000000
3835};
3836
Zhu Yib481de92007-09-25 17:54:57 -07003837static ssize_t show_channels(struct device *d,
3838 struct device_attribute *attr, char *buf)
3839{
Johannes Berg8318d782008-01-24 19:38:38 +01003840 /* all this shit doesn't belong into sysfs anyway */
3841 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003842}
3843
3844static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3845
3846static ssize_t show_statistics(struct device *d,
3847 struct device_attribute *attr, char *buf)
3848{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003849 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003850 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003851 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003852 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003853 int rc = 0;
3854
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003855 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003856 return -EAGAIN;
3857
3858 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003859 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003860 mutex_unlock(&priv->mutex);
3861
3862 if (rc) {
3863 len = sprintf(buf,
3864 "Error sending statistics request: 0x%08X\n", rc);
3865 return len;
3866 }
3867
3868 while (size && (PAGE_SIZE - len)) {
3869 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3870 PAGE_SIZE - len, 1);
3871 len = strlen(buf);
3872 if (PAGE_SIZE - len)
3873 buf[len++] = '\n';
3874
3875 ofs += 16;
3876 size -= min(size, 16U);
3877 }
3878
3879 return len;
3880}
3881
3882static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3883
3884static ssize_t show_antenna(struct device *d,
3885 struct device_attribute *attr, char *buf)
3886{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003887 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003888
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003889 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003890 return -EAGAIN;
3891
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003892 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003893}
3894
3895static ssize_t store_antenna(struct device *d,
3896 struct device_attribute *attr,
3897 const char *buf, size_t count)
3898{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003899 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003900 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003901
3902 if (count == 0)
3903 return 0;
3904
3905 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003906 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003907 return count;
3908 }
3909
3910 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003911 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003912 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003913 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003914 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003915
3916
3917 return count;
3918}
3919
3920static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3921
3922static ssize_t show_status(struct device *d,
3923 struct device_attribute *attr, char *buf)
3924{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003925 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003926 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003927 return -EAGAIN;
3928 return sprintf(buf, "0x%08x\n", (int)priv->status);
3929}
3930
3931static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3932
3933static ssize_t dump_error_log(struct device *d,
3934 struct device_attribute *attr,
3935 const char *buf, size_t count)
3936{
3937 char *p = (char *)buf;
3938
3939 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003940 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07003941
3942 return strnlen(buf, count);
3943}
3944
3945static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3946
3947static ssize_t dump_event_log(struct device *d,
3948 struct device_attribute *attr,
3949 const char *buf, size_t count)
3950{
3951 char *p = (char *)buf;
3952
3953 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003954 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07003955
3956 return strnlen(buf, count);
3957}
3958
3959static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
3960
3961/*****************************************************************************
3962 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07003963 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07003964 *
3965 *****************************************************************************/
3966
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003967static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003968{
Reinette Chatred21050c2009-02-13 11:51:18 -08003969 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003970
3971 init_waitqueue_head(&priv->wait_command_queue);
3972
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003973 INIT_WORK(&priv->up, iwl3945_bg_up);
3974 INIT_WORK(&priv->restart, iwl3945_bg_restart);
3975 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003976 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003977 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003978 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3979 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01003980 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003981 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3982 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3983 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3984 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07003985
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003986 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003987
3988 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003989 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003990}
3991
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003992static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003993{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003994 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003995
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09003996 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003997 cancel_delayed_work(&priv->scan_check);
3998 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003999 cancel_work_sync(&priv->beacon_update);
4000}
4001
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004002static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07004003 &dev_attr_antenna.attr,
4004 &dev_attr_channels.attr,
4005 &dev_attr_dump_errors.attr,
4006 &dev_attr_dump_events.attr,
4007 &dev_attr_flags.attr,
4008 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004009#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004010 &dev_attr_measurement.attr,
4011#endif
4012 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004013 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004014 &dev_attr_statistics.attr,
4015 &dev_attr_status.attr,
4016 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004017 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08004018#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004019 &dev_attr_debug_level.attr,
4020#endif
Zhu Yib481de92007-09-25 17:54:57 -07004021 NULL
4022};
4023
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004024static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07004025 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004026 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07004027};
4028
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004029static struct ieee80211_ops iwl3945_hw_ops = {
4030 .tx = iwl3945_mac_tx,
4031 .start = iwl3945_mac_start,
4032 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07004033 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07004034 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07004035 .config = iwl_mac_config,
Abhijeet Kolekar5ee58112009-04-08 11:26:50 -07004036 .config_interface = iwl_mac_config_interface,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004037 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004038 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07004039 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07004040 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07004041 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07004042 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08004043 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07004044};
4045
Winkler, Tomase52119c2008-12-22 11:31:19 +08004046static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004047{
4048 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08004049 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004050
4051 priv->retry_rate = 1;
4052 priv->ibss_beacon = NULL;
4053
4054 spin_lock_init(&priv->lock);
Winkler, Tomas3dae0c42009-01-19 15:30:30 -08004055 spin_lock_init(&priv->power_data.lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004056 spin_lock_init(&priv->sta_lock);
4057 spin_lock_init(&priv->hcmd_lock);
4058
4059 INIT_LIST_HEAD(&priv->free_frames);
4060
4061 mutex_init(&priv->mutex);
4062
4063 /* Clear the driver's (not device's) station table */
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07004064 priv->cfg->ops->smgmt->clear_station_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004065
4066 priv->data_retry_limit = -1;
4067 priv->ieee_channels = NULL;
4068 priv->ieee_rates = NULL;
4069 priv->band = IEEE80211_BAND_2GHZ;
4070
4071 priv->iw_mode = NL80211_IFTYPE_STATION;
4072
4073 iwl_reset_qos(priv);
4074
4075 priv->qos_data.qos_active = 0;
4076 priv->qos_data.qos_cap.val = 0;
4077
4078 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004079 /* If power management is turned on, default to CAM mode */
4080 priv->power_mode = IWL_POWER_MODE_CAM;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08004081 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004082
Samuel Ortize6148912009-01-23 13:45:15 -08004083 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
4084 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
4085 eeprom->version);
4086 ret = -EINVAL;
4087 goto err;
4088 }
4089 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004090 if (ret) {
4091 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4092 goto err;
4093 }
4094
Samuel Ortize6148912009-01-23 13:45:15 -08004095 /* Set up txpower settings in driver for all channels */
4096 if (iwl3945_txpower_set_from_eeprom(priv)) {
4097 ret = -EIO;
4098 goto err_free_channel_map;
4099 }
4100
Samuel Ortiz534166d2009-01-23 13:45:16 -08004101 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004102 if (ret) {
4103 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4104 goto err_free_channel_map;
4105 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08004106 iwl3945_init_hw_rates(priv, priv->ieee_rates);
4107
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004108 return 0;
4109
4110err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08004111 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004112err:
4113 return ret;
4114}
4115
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004116static int iwl3945_setup_mac(struct iwl_priv *priv)
4117{
4118 int ret;
4119 struct ieee80211_hw *hw = priv->hw;
4120
4121 hw->rate_control_algorithm = "iwl-3945-rs";
4122 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
4123
4124 /* Tell mac80211 our characteristics */
4125 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07004126 IEEE80211_HW_NOISE_DBM |
4127 IEEE80211_HW_SPECTRUM_MGMT;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004128
4129 hw->wiphy->interface_modes =
4130 BIT(NL80211_IFTYPE_STATION) |
4131 BIT(NL80211_IFTYPE_ADHOC);
4132
4133 hw->wiphy->custom_regulatory = true;
4134
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07004135 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
4136 /* we create the 802.11 header and a zero-length SSID element */
4137 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02004138
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004139 /* Default value; 4 EDCA QOS priorities */
4140 hw->queues = 4;
4141
4142 hw->conf.beacon_int = 100;
4143
4144 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4145 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4146 &priv->bands[IEEE80211_BAND_2GHZ];
4147
4148 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4149 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4150 &priv->bands[IEEE80211_BAND_5GHZ];
4151
4152 ret = ieee80211_register_hw(priv->hw);
4153 if (ret) {
4154 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
4155 return ret;
4156 }
4157 priv->mac80211_registered = 1;
4158
4159 return 0;
4160}
4161
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004162static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004163{
4164 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004165 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004166 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08004167 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08004168 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004169 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004170
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004171 /***********************
4172 * 1. Allocating HW data
4173 * ********************/
4174
Zhu Yib481de92007-09-25 17:54:57 -07004175 /* mac80211 allocates memory for this device instance, including
4176 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004177 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07004178 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004179 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07004180 err = -ENOMEM;
4181 goto out;
4182 }
Zhu Yib481de92007-09-25 17:54:57 -07004183 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004184 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004185
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004186 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
4187 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004188 IWL_ERR(priv,
4189 "invalid queues_num, should be between %d and %d\n",
4190 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08004191 err = -EINVAL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004192 goto out_ieee80211_free_hw;
Samuel Ortiza3139c52008-12-19 10:37:09 +08004193 }
4194
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004195 /*
4196 * Disabling hardware scan means that mac80211 will perform scans
4197 * "the hard way", rather than using device's scan.
4198 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004199 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08004200 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004201 iwl3945_hw_ops.hw_scan = NULL;
4202 }
4203
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004204
Tomas Winklere1623442009-01-27 14:27:56 -08004205 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004206 priv->cfg = cfg;
4207 priv->pci_dev = pdev;
4208
Samuel Ortizd08853a2009-01-23 13:45:17 -08004209#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004210 priv->debug_level = iwl3945_mod_params.debug;
4211 atomic_set(&priv->restrict_refcnt, 0);
4212#endif
Zhu Yib481de92007-09-25 17:54:57 -07004213
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004214 /***************************
4215 * 2. Initializing PCI bus
4216 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07004217 if (pci_enable_device(pdev)) {
4218 err = -ENODEV;
4219 goto out_ieee80211_free_hw;
4220 }
4221
4222 pci_set_master(pdev);
4223
Yang Hongyang284901a2009-04-06 19:01:15 -07004224 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004225 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07004226 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004227 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004228 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004229 goto out_pci_disable_device;
4230 }
4231
4232 pci_set_drvdata(pdev, priv);
4233 err = pci_request_regions(pdev, DRV_NAME);
4234 if (err)
4235 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004236
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004237 /***********************
4238 * 3. Read REV Register
4239 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07004240 priv->hw_base = pci_iomap(pdev, 0, 0);
4241 if (!priv->hw_base) {
4242 err = -ENODEV;
4243 goto out_pci_release_regions;
4244 }
4245
Tomas Winklere1623442009-01-27 14:27:56 -08004246 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07004247 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004248 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07004249
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004250 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4251 * PCI Tx retries from interfering with C3 CPU state */
4252 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07004253
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004254 /* amp init */
4255 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004256 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07004257 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004258 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004259 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004260
4261 /***********************
4262 * 4. Read EEPROM
4263 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004264
Zhu Yi5a669262008-01-14 17:46:18 -08004265 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004266 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004267 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004268 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004269 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004270 }
4271 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004272 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4273 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004274 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08004275 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4276
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004277 /***********************
4278 * 5. Setup HW Constants
4279 * ********************/
4280 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004281 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004282 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004283 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004284 }
4285
4286 /***********************
4287 * 6. Setup priv
4288 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004289
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004290 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004291 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004292 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004293 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004294 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004295
Tomas Winkler978785a2008-12-19 10:37:31 +08004296 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4297 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004298
4299 /***********************************
4300 * 7. Initialize Module Parameters
4301 * **********************************/
4302
4303 /* Initialize module parameter values here */
4304 /* Disable radio (SW RF KILL) via parameter when loading driver */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004305 if (iwl3945_mod_params.disable) {
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004306 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08004307 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004308 }
4309
4310
4311 /***********************
4312 * 8. Setup Services
4313 * ********************/
4314
4315 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004316 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004317 spin_unlock_irqrestore(&priv->lock, flags);
4318
Helmut Schaa26635162009-01-15 09:38:44 +01004319 pci_enable_msi(priv->pci_dev);
4320
Abhijeet Kolekarf17d08a2009-02-18 15:54:31 -08004321 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
Helmut Schaa26635162009-01-15 09:38:44 +01004322 DRV_NAME, priv);
4323 if (err) {
4324 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4325 goto out_disable_msi;
4326 }
4327
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004328 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4329 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004330 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004331 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004332 }
4333
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004334 iwl_set_rxon_channel(priv,
4335 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004336 iwl3945_setup_deferred_work(priv);
4337 iwl3945_setup_rx_handlers(priv);
4338
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004339 /*********************************
Helmut Schaa26635162009-01-15 09:38:44 +01004340 * 9. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004341 * *******************************/
4342
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004343 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004344
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004345 err = iwl3945_setup_mac(priv);
4346 if (err)
4347 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004348
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004349 err = iwl_rfkill_init(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004350 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004351 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004352 "Ignoring error: %d\n", err);
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004353 else
4354 iwl_rfkill_set_hw_state(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004355
Helmut Schaa26635162009-01-15 09:38:44 +01004356 /* Start monitoring the killswitch */
4357 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4358 2 * HZ);
4359
Zhu Yib481de92007-09-25 17:54:57 -07004360 return 0;
4361
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004362 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004363 destroy_workqueue(priv->workqueue);
4364 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004365 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4366 out_release_irq:
4367 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004368 out_disable_msi:
4369 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004370 iwlcore_free_geos(priv);
4371 iwl_free_channel_map(priv);
4372 out_unset_hw_params:
4373 iwl3945_unset_hw_params(priv);
4374 out_eeprom_free:
4375 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004376 out_iounmap:
4377 pci_iounmap(pdev, priv->hw_base);
4378 out_pci_release_regions:
4379 pci_release_regions(pdev);
4380 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004381 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004382 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004383 out_ieee80211_free_hw:
4384 ieee80211_free_hw(priv->hw);
4385 out:
4386 return err;
4387}
4388
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004389static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004390{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004391 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004392 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004393
4394 if (!priv)
4395 return;
4396
Tomas Winklere1623442009-01-27 14:27:56 -08004397 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004398
Zhu Yib481de92007-09-25 17:54:57 -07004399 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004400
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004401 if (priv->mac80211_registered) {
4402 ieee80211_unregister_hw(priv->hw);
4403 priv->mac80211_registered = 0;
4404 } else {
4405 iwl3945_down(priv);
4406 }
Zhu Yib481de92007-09-25 17:54:57 -07004407
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004408 /* make sure we flush any pending irq or
4409 * tasklet for the driver
4410 */
4411 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004412 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004413 spin_unlock_irqrestore(&priv->lock, flags);
4414
4415 iwl_synchronize_irq(priv);
4416
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004417 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004418
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004419 iwl_rfkill_unregister(priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004420 cancel_delayed_work(&priv->rfkill_poll);
4421
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004422 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004423
4424 if (priv->rxq.bd)
Winkler, Tomas51af3d32008-12-22 11:31:23 +08004425 iwl_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004426 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004427
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004428 iwl3945_unset_hw_params(priv);
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07004429 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004430
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004431 /*netif_stop_queue(dev); */
4432 flush_workqueue(priv->workqueue);
4433
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004434 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004435 * priv->workqueue... so we can't take down the workqueue
4436 * until now... */
4437 destroy_workqueue(priv->workqueue);
4438 priv->workqueue = NULL;
4439
Helmut Schaa26635162009-01-15 09:38:44 +01004440 free_irq(pdev->irq, priv);
4441 pci_disable_msi(pdev);
4442
Zhu Yib481de92007-09-25 17:54:57 -07004443 pci_iounmap(pdev, priv->hw_base);
4444 pci_release_regions(pdev);
4445 pci_disable_device(pdev);
4446 pci_set_drvdata(pdev, NULL);
4447
Samuel Ortize6148912009-01-23 13:45:15 -08004448 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004449 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004450 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004451 if (priv->ibss_beacon)
4452 dev_kfree_skb(priv->ibss_beacon);
4453
4454 ieee80211_free_hw(priv->hw);
4455}
4456
Zhu Yib481de92007-09-25 17:54:57 -07004457
4458/*****************************************************************************
4459 *
4460 * driver and module entry point
4461 *
4462 *****************************************************************************/
4463
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004464static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004465 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004466 .id_table = iwl3945_hw_card_ids,
4467 .probe = iwl3945_pci_probe,
4468 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004469#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004470 .suspend = iwl_pci_suspend,
4471 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004472#endif
4473};
4474
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004475static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004476{
4477
4478 int ret;
4479 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4480 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004481
4482 ret = iwl3945_rate_control_register();
4483 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004484 printk(KERN_ERR DRV_NAME
4485 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004486 return ret;
4487 }
4488
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004489 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004490 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004491 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004492 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004493 }
Zhu Yib481de92007-09-25 17:54:57 -07004494
4495 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004496
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004497error_register:
4498 iwl3945_rate_control_unregister();
4499 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004500}
4501
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004502static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004503{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004504 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004505 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004506}
4507
Reinette Chatrea0987a82008-12-02 12:14:06 -08004508MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004509
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004510module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004511MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004512module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004513MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004514module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4515MODULE_PARM_DESC(swcrypto,
4516 "using software crypto (default 1 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004517module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004518MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004519module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004520MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
4521
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004522module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004523MODULE_PARM_DESC(queues_num, "number of hw queues.");
4524
Samuel Ortizaf48d042009-01-23 13:45:19 -08004525module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4526MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4527
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004528module_exit(iwl3945_exit);
4529module_init(iwl3945_init);