blob: 5d52f2275b6dd7178bd32317be9e2af92eaae572 [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);
Tomas Winklerbed420d2009-05-15 16:13:43 -0700343 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800344 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 =
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200554 iwl3945_adjust_beacon_interval(
555 priv->vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700556 /* TODO: we need to get atim_window from upper stack
557 * for now we set to 0 */
558 priv->rxon_timing.atim_window = 0;
559 }
560
561 interval_tm_unit =
562 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
563 result = do_div(tsf, interval_tm_unit);
564 priv->rxon_timing.beacon_init_val =
565 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
566
Tomas Winklere1623442009-01-27 14:27:56 -0800567 IWL_DEBUG_ASSOC(priv,
568 "beacon interval %d beacon timer %d beacon tim %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700569 le16_to_cpu(priv->rxon_timing.beacon_interval),
570 le32_to_cpu(priv->rxon_timing.beacon_init_val),
571 le16_to_cpu(priv->rxon_timing.atim_window));
572}
573
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800574static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200575 struct ieee80211_tx_info *info,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800576 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700577 struct sk_buff *skb_frag,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800578 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700579{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800580 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Tomas Winklerbed420d2009-05-15 16:13:43 -0700581 struct iwl_hw_key *keyinfo = &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);
Reinette Chatredf833b12009-04-21 10:55:48 -0700693 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800694 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) &&
Wey-Yi Guy279b05d2009-04-20 14:37:00 -0700732 (!iwl_is_monitor_mode(priv)) && /* 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
Reinette Chatredf833b12009-04-21 10:55:48 -0700795
796 if (info->control.hw_key)
797 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
798
799 /* TODO need this for burst mode later on */
800 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
801
802 /* set is_hcca to 0; it probably will never be implemented */
803 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
804
805 /* Total # bytes to be transmitted */
806 len = (u16)skb->len;
807 tx->len = cpu_to_le16(len);
808
809
810 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
811 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
812
813 if (!ieee80211_has_morefrags(hdr->frame_control)) {
814 txq->need_update = 1;
815 if (qc)
816 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
817 } else {
818 wait_write_ptr = 1;
819 txq->need_update = 0;
820 }
821
822 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
823 le16_to_cpu(out_cmd->hdr.sequence));
824 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags));
825 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
826 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
827 ieee80211_hdrlen(fc));
828
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800829 /*
830 * Use the first empty entry in this queue's command buffer array
831 * to contain the Tx command and MAC header concatenated together
832 * (payload data will be in another buffer).
833 * Size of this varies, due to varying MAC header length.
834 * If end is not dword aligned, we'll have 2 extra bytes at the end
835 * of the MAC header (device reads on dword boundaries).
836 * We'll tell device about this padding later.
837 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800838 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800839 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700840
841 len_org = len;
842 len = (len + 3) & ~3;
843
844 if (len_org != len)
845 len_org = 1;
846 else
847 len_org = 0;
848
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800849 /* Physical address of this Tx command's header (not MAC header!),
850 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700851 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
852 len, PCI_DMA_TODEVICE);
853 /* we do not map meta data ... so we can safely access address to
854 * provide to unmap command*/
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800855 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
Reinette Chatredf833b12009-04-21 10:55:48 -0700856 pci_unmap_len_set(&out_cmd->meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700857
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800858 /* Add buffer containing Tx command and MAC(!) header to TFD's
859 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800860 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
861 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700862
Zhu Yib481de92007-09-25 17:54:57 -0700863
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800864 /* Set up TFD's 2nd entry to point directly to remainder of skb,
865 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700866 len = skb->len - hdr_len;
867 if (len) {
868 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
869 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800870 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
871 phys_addr, len,
872 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700873 }
874
Zhu Yib481de92007-09-25 17:54:57 -0700875
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800876 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800877 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800878 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700879 spin_unlock_irqrestore(&priv->lock, flags);
880
881 if (rc)
882 return rc;
883
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800884 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700885 && priv->mac80211_registered) {
886 if (wait_write_ptr) {
887 spin_lock_irqsave(&priv->lock, flags);
888 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800889 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700890 spin_unlock_irqrestore(&priv->lock, flags);
891 }
892
Johannes Berge4e72fb2009-03-23 17:28:42 +0100893 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700894 }
895
896 return 0;
897
898drop_unlock:
899 spin_unlock_irqrestore(&priv->lock, flags);
900drop:
901 return -1;
902}
903
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800904#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700905
906#include "iwl-spectrum.h"
907
908#define BEACON_TIME_MASK_LOW 0x00FFFFFF
909#define BEACON_TIME_MASK_HIGH 0xFF000000
910#define TIME_UNIT 1024
911
912/*
913 * extended beacon time format
914 * time in usec will be changed into a 32-bit value in 8:24 format
915 * the high 1 byte is the beacon counts
916 * the lower 3 bytes is the time in usec within one beacon interval
917 */
918
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800919static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700920{
921 u32 quot;
922 u32 rem;
923 u32 interval = beacon_interval * 1024;
924
925 if (!interval || !usec)
926 return 0;
927
928 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
929 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
930
931 return (quot << 24) + rem;
932}
933
934/* base is usually what we get from ucode with each received frame,
935 * the same as HW timer counter counting down
936 */
937
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800938static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700939{
940 u32 base_low = base & BEACON_TIME_MASK_LOW;
941 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
942 u32 interval = beacon_interval * TIME_UNIT;
943 u32 res = (base & BEACON_TIME_MASK_HIGH) +
944 (addon & BEACON_TIME_MASK_HIGH);
945
946 if (base_low > addon_low)
947 res += base_low - addon_low;
948 else if (base_low < addon_low) {
949 res += interval + base_low - addon_low;
950 res += (1 << 24);
951 } else
952 res += (1 << 24);
953
954 return cpu_to_le32(res);
955}
956
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800957static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700958 struct ieee80211_measurement_params *params,
959 u8 type)
960{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800961 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800962 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800963 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700964 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
965 .data = (void *)&spectrum,
966 .meta.flags = CMD_WANT_SKB,
967 };
968 u32 add_time = le64_to_cpu(params->start_time);
969 int rc;
970 int spectrum_resp_status;
971 int duration = le16_to_cpu(params->duration);
972
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800973 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700974 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800975 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700976 le64_to_cpu(params->start_time) - priv->last_tsf,
977 le16_to_cpu(priv->rxon_timing.beacon_interval));
978
979 memset(&spectrum, 0, sizeof(spectrum));
980
981 spectrum.channel_count = cpu_to_le16(1);
982 spectrum.flags =
983 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
984 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
985 cmd.len = sizeof(spectrum);
986 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
987
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800988 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700989 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800990 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700991 add_time,
992 le16_to_cpu(priv->rxon_timing.beacon_interval));
993 else
994 spectrum.start_time = 0;
995
996 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
997 spectrum.channels[0].channel = params->channel;
998 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800999 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07001000 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
1001 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
1002
Samuel Ortiz518099a2009-01-19 15:30:27 -08001003 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001004 if (rc)
1005 return rc;
1006
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001007 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001008 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001009 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07001010 rc = -EIO;
1011 }
1012
1013 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
1014 switch (spectrum_resp_status) {
1015 case 0: /* Command will be handled */
1016 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -08001017 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +08001018 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07001019 priv->measurement_status &= ~MEASUREMENT_READY;
1020 }
1021 priv->measurement_status |= MEASUREMENT_ACTIVE;
1022 rc = 0;
1023 break;
1024
1025 case 1: /* Command will not be handled */
1026 rc = -EAGAIN;
1027 break;
1028 }
1029
1030 dev_kfree_skb_any(cmd.meta.u.skb);
1031
1032 return rc;
1033}
1034#endif
1035
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001036static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001037 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001038{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001039 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
1040 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07001041 struct delayed_work *pwork;
1042
1043 palive = &pkt->u.alive_frame;
1044
Tomas Winklere1623442009-01-27 14:27:56 -08001045 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -07001046 "0x%01X 0x%01X\n",
1047 palive->is_valid, palive->ver_type,
1048 palive->ver_subtype);
1049
1050 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001051 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001052 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
1053 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001054 pwork = &priv->init_alive_start;
1055 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08001056 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001057 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001058 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001059 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001060 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001061 }
1062
1063 /* We delay the ALIVE response by 5ms to
1064 * give the HW RF Kill time to activate... */
1065 if (palive->is_valid == UCODE_VALID_OK)
1066 queue_delayed_work(priv->workqueue, pwork,
1067 msecs_to_jiffies(5));
1068 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001069 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001070}
1071
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001072static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001073 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001074{
Helmut Schaac7e035a2009-01-19 13:02:15 +01001075#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001076 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +01001077#endif
Zhu Yib481de92007-09-25 17:54:57 -07001078
Tomas Winklere1623442009-01-27 14:27:56 -08001079 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -07001080 return;
1081}
1082
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001083static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001084{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001085 struct iwl_priv *priv =
1086 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001087 struct sk_buff *beacon;
1088
1089 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001090 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001091
1092 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001093 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001094 return;
1095 }
1096
1097 mutex_lock(&priv->mutex);
1098 /* new beacon skb is allocated every time; dispose previous.*/
1099 if (priv->ibss_beacon)
1100 dev_kfree_skb(priv->ibss_beacon);
1101
1102 priv->ibss_beacon = beacon;
1103 mutex_unlock(&priv->mutex);
1104
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001105 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001106}
1107
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001108static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001109 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001110{
Samuel Ortizd08853a2009-01-23 13:45:17 -08001111#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001112 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001113 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07001114 u8 rate = beacon->beacon_notify_hdr.rate;
1115
Tomas Winklere1623442009-01-27 14:27:56 -08001116 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -07001117 "tsf %d %d rate %d\n",
1118 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
1119 beacon->beacon_notify_hdr.failure_frame,
1120 le32_to_cpu(beacon->ibss_mgr_status),
1121 le32_to_cpu(beacon->high_tsf),
1122 le32_to_cpu(beacon->low_tsf), rate);
1123#endif
1124
Johannes Berg05c914f2008-09-11 00:01:58 +02001125 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07001126 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1127 queue_work(priv->workqueue, &priv->beacon_update);
1128}
1129
Zhu Yib481de92007-09-25 17:54:57 -07001130/* Handle notification from uCode that card's power state is changing
1131 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001132static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001133 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001134{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001135 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001136 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1137 unsigned long status = priv->status;
1138
Tomas Winklere1623442009-01-27 14:27:56 -08001139 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -07001140 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1141 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1142
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001143 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001144 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1145
1146 if (flags & HW_CARD_DISABLED)
1147 set_bit(STATUS_RF_KILL_HW, &priv->status);
1148 else
1149 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1150
1151
1152 if (flags & SW_CARD_DISABLED)
1153 set_bit(STATUS_RF_KILL_SW, &priv->status);
1154 else
1155 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1156
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08001157 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001158
1159 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1160 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1161 (test_bit(STATUS_RF_KILL_SW, &status) !=
1162 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1163 queue_work(priv->workqueue, &priv->rf_kill);
1164 else
1165 wake_up_interruptible(&priv->wait_command_queue);
1166}
1167
1168/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001169 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001170 *
1171 * Setup the RX handlers for each of the reply types sent from the uCode
1172 * to the host.
1173 *
1174 * This function chains into the hardware specific files for them to setup
1175 * any hardware specific handlers as well.
1176 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001177static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001178{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001179 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
1180 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001181 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001182 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001183 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001184 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001185 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001186 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001187
Ben Cahill9fbab512007-11-29 11:09:47 +08001188 /*
1189 * The same handler is used for both the REPLY to a discrete
1190 * statistics request from the host as well as for the periodic
1191 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001192 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001193 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
1194 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07001195
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001196 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -08001197 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001198 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001199
Ben Cahill9fbab512007-11-29 11:09:47 +08001200 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001201 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001202}
1203
Zhu Yib481de92007-09-25 17:54:57 -07001204/************************** RX-FUNCTIONS ****************************/
1205/*
1206 * Rx theory of operation
1207 *
1208 * The host allocates 32 DMA target addresses and passes the host address
1209 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
1210 * 0 to 31
1211 *
1212 * Rx Queue Indexes
1213 * The host/firmware share two index registers for managing the Rx buffers.
1214 *
1215 * The READ index maps to the first position that the firmware may be writing
1216 * to -- the driver can read up to (but not including) this position and get
1217 * good data.
1218 * The READ index is managed by the firmware once the card is enabled.
1219 *
1220 * The WRITE index maps to the last position the driver has read from -- the
1221 * position preceding WRITE is the last slot the firmware can place a packet.
1222 *
1223 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1224 * WRITE = READ.
1225 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001226 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001227 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1228 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001229 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001230 * and fire the RX interrupt. The driver can then query the READ index and
1231 * process as many packets as possible, moving the WRITE index forward as it
1232 * resets the Rx queue buffers with new memory.
1233 *
1234 * The management in the driver is as follows:
1235 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1236 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001237 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001238 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001239 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1240 * 'processed' and 'read' driver indexes as well)
1241 * + A received packet is processed and handed to the kernel network stack,
1242 * detached from the iwl->rxq. The driver 'processed' index is updated.
1243 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1244 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1245 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1246 * were enough free buffers and RX_STALLED is set it is cleared.
1247 *
1248 *
1249 * Driver sequence:
1250 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001251 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001252 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001253 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001254 * queue, updates firmware pointers, and updates
1255 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001256 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001257 *
1258 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001259 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001260 * READ INDEX, detaching the SKB from the pool.
1261 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001262 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001263 * slots.
1264 * ...
1265 *
1266 */
1267
1268/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001269 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001270 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001271static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001272 dma_addr_t dma_addr)
1273{
1274 return cpu_to_le32((u32)dma_addr);
1275}
1276
1277/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001278 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001279 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001280 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001281 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001282 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001283 *
1284 * This moves the 'write' index forward to catch up with 'processed', and
1285 * also updates the memory address in the firmware to reference the new
1286 * target buffer.
1287 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001288static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001289{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001290 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001291 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001292 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001293 unsigned long flags;
1294 int write, rc;
1295
1296 spin_lock_irqsave(&rxq->lock, flags);
1297 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001298 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001299 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001300 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001301 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001302 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001303
1304 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001305 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001306 rxq->queue[rxq->write] = rxb;
1307 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1308 rxq->free_count--;
1309 }
1310 spin_unlock_irqrestore(&rxq->lock, flags);
1311 /* If the pre-allocated buffer pool is dropping low, schedule to
1312 * refill it */
1313 if (rxq->free_count <= RX_LOW_WATERMARK)
1314 queue_work(priv->workqueue, &priv->rx_replenish);
1315
1316
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001317 /* If we've added more space for the firmware to place data, tell it.
1318 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07001319 if ((write != (rxq->write & ~0x7))
1320 || (abs(rxq->write - rxq->read) > 7)) {
1321 spin_lock_irqsave(&rxq->lock, flags);
1322 rxq->need_update = 1;
1323 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001324 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001325 if (rc)
1326 return rc;
1327 }
1328
1329 return 0;
1330}
1331
1332/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001333 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001334 *
1335 * When moving to rx_free an SKB is allocated for the slot.
1336 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001337 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001338 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001339 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001340static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001341{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001342 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001343 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001344 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001345 unsigned long flags;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001346
1347 while (1) {
1348 spin_lock_irqsave(&rxq->lock, flags);
1349
1350 if (list_empty(&rxq->rx_used)) {
1351 spin_unlock_irqrestore(&rxq->lock, flags);
1352 return;
1353 }
1354
Zhu Yib481de92007-09-25 17:54:57 -07001355 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001356 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001357 list_del(element);
1358 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001359
1360 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001361 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001362 alloc_skb(priv->hw_params.rx_buf_size,
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001363 GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001364 if (!rxb->skb) {
1365 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001366 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001367 /* We don't reschedule replenish work here -- we will
1368 * call the restock method and if it still needs
1369 * more buffers it will schedule replenish */
1370 break;
1371 }
Zhu Yi12342c42007-12-20 11:27:32 +08001372
1373 /* If radiotap head is required, reserve some headroom here.
1374 * The physical head count is a variable rx_stats->phy_count.
1375 * We reserve 4 bytes here. Plus these extra bytes, the
1376 * headroom of the physical head should be enough for the
1377 * radiotap head that iwl3945 supported. See iwl3945_rt.
1378 */
1379 skb_reserve(rxb->skb, 4);
1380
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001381 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001382 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1383 rxb->skb->data,
1384 priv->hw_params.rx_buf_size,
1385 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001386
1387 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001388 list_add_tail(&rxb->list, &rxq->rx_free);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001389 priv->alloc_rxb_skb++;
Zhu Yib481de92007-09-25 17:54:57 -07001390 rxq->free_count++;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001391 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001392 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001393}
1394
Reinette Chatredf833b12009-04-21 10:55:48 -07001395void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1396{
1397 unsigned long flags;
1398 int i;
1399 spin_lock_irqsave(&rxq->lock, flags);
1400 INIT_LIST_HEAD(&rxq->rx_free);
1401 INIT_LIST_HEAD(&rxq->rx_used);
1402 /* Fill the rx_used queue with _all_ of the Rx buffers */
1403 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1404 /* In the reset function, these buffers may have been allocated
1405 * to an SKB, so we need to unmap and free potential storage */
1406 if (rxq->pool[i].skb != NULL) {
1407 pci_unmap_single(priv->pci_dev,
1408 rxq->pool[i].real_dma_addr,
1409 priv->hw_params.rx_buf_size,
1410 PCI_DMA_FROMDEVICE);
1411 priv->alloc_rxb_skb--;
1412 dev_kfree_skb(rxq->pool[i].skb);
1413 rxq->pool[i].skb = NULL;
1414 }
1415 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1416 }
1417
1418 /* Set us so that we have processed and used all buffers, but have
1419 * not restocked the Rx queue with fresh buffers */
1420 rxq->read = rxq->write = 0;
1421 rxq->free_count = 0;
1422 spin_unlock_irqrestore(&rxq->lock, flags);
1423}
Reinette Chatredf833b12009-04-21 10:55:48 -07001424
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001425void iwl3945_rx_replenish(void *data)
1426{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001427 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001428 unsigned long flags;
1429
1430 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001431
1432 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001433 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001434 spin_unlock_irqrestore(&priv->lock, flags);
1435}
1436
Reinette Chatredf833b12009-04-21 10:55:48 -07001437/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1438 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1439 * This free routine walks the list of POOL entries and if SKB is set to
1440 * non NULL it is unmapped and freed
1441 */
1442static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1443{
1444 int i;
1445 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1446 if (rxq->pool[i].skb != NULL) {
1447 pci_unmap_single(priv->pci_dev,
1448 rxq->pool[i].real_dma_addr,
1449 priv->hw_params.rx_buf_size,
1450 PCI_DMA_FROMDEVICE);
1451 dev_kfree_skb(rxq->pool[i].skb);
1452 }
1453 }
1454
1455 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1456 rxq->dma_addr);
1457 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1458 rxq->rb_stts, rxq->rb_stts_dma);
1459 rxq->bd = NULL;
1460 rxq->rb_stts = NULL;
1461}
Reinette Chatredf833b12009-04-21 10:55:48 -07001462
1463
Zhu Yib481de92007-09-25 17:54:57 -07001464/* Convert linear signal-to-noise ratio into dB */
1465static u8 ratio2dB[100] = {
1466/* 0 1 2 3 4 5 6 7 8 9 */
1467 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1468 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1469 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1470 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1471 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1472 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1473 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1474 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1475 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1476 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1477};
1478
1479/* Calculates a relative dB value from a ratio of linear
1480 * (i.e. not dB) signal levels.
1481 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001482int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001483{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001484 /* 1000:1 or higher just report as 60 dB */
1485 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001486 return 60;
1487
Adrian Bunk221c80c2008-02-02 23:19:01 +02001488 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001489 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001490 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001491 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001492
1493 /* We shouldn't see this */
1494 if (sig_ratio < 1)
1495 return 0;
1496
1497 /* Use table for ratios 1:1 - 99:1 */
1498 return (int)ratio2dB[sig_ratio];
1499}
1500
1501#define PERFECT_RSSI (-20) /* dBm */
1502#define WORST_RSSI (-95) /* dBm */
1503#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1504
1505/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1506 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1507 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001508int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001509{
1510 int sig_qual;
1511 int degradation = PERFECT_RSSI - rssi_dbm;
1512
1513 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1514 * as indicator; formula is (signal dbm - noise dbm).
1515 * SNR at or above 40 is a great signal (100%).
1516 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1517 * Weakest usable signal is usually 10 - 15 dB SNR. */
1518 if (noise_dbm) {
1519 if (rssi_dbm - noise_dbm >= 40)
1520 return 100;
1521 else if (rssi_dbm < noise_dbm)
1522 return 0;
1523 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1524
1525 /* Else use just the signal level.
1526 * This formula is a least squares fit of data points collected and
1527 * compared with a reference system that had a percentage (%) display
1528 * for signal quality. */
1529 } else
1530 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1531 (15 * RSSI_RANGE + 62 * degradation)) /
1532 (RSSI_RANGE * RSSI_RANGE);
1533
1534 if (sig_qual > 100)
1535 sig_qual = 100;
1536 else if (sig_qual < 1)
1537 sig_qual = 0;
1538
1539 return sig_qual;
1540}
1541
1542/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001543 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001544 *
1545 * Uses the priv->rx_handlers callback function array to invoke
1546 * the appropriate handlers, including command responses,
1547 * frame-received notifications, and other notifications.
1548 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001549static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001550{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001551 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001552 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001553 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001554 u32 r, i;
1555 int reclaim;
1556 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001557 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001558 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001559
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001560 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1561 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001562 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001563 i = rxq->read;
1564
Winkler, Tomas37d68312009-01-08 10:19:54 -08001565 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001566 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001567 /* Rx interrupt, but nothing sent from uCode */
1568 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001569 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001570
1571 while (i != r) {
1572 rxb = rxq->queue[i];
1573
Ben Cahill9fbab512007-11-29 11:09:47 +08001574 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001575 * then a bug has been introduced in the queue refilling
1576 * routines -- catch it here */
1577 BUG_ON(rxb == NULL);
1578
1579 rxq->queue[i] = NULL;
1580
Reinette Chatredf833b12009-04-21 10:55:48 -07001581 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1582 priv->hw_params.rx_buf_size,
1583 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001584 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001585
1586 /* Reclaim a command buffer only if this packet is a response
1587 * to a (driver-originated) command.
1588 * If the packet (e.g. Rx frame) originated from uCode,
1589 * there is no command buffer to reclaim.
1590 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1591 * but apparently a few don't get set; catch them here. */
1592 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1593 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1594 (pkt->hdr.cmd != REPLY_TX);
1595
1596 /* Based on type of command response or notification,
1597 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001598 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001599 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001600 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001601 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1602 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1603 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001604 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yib481de92007-09-25 17:54:57 -07001605 } else {
1606 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001607 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001608 "r %d i %d No handler needed for %s, 0x%02x\n",
1609 r, i, get_cmd_string(pkt->hdr.cmd),
1610 pkt->hdr.cmd);
1611 }
1612
1613 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001614 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001615 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001616 * as we reclaim the driver command queue */
1617 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001618 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001619 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001620 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001621 }
1622
1623 /* For now we just don't re-use anything. We can tweak this
1624 * later to try and re-use notification packets and SKBs that
1625 * fail to Rx correctly */
1626 if (rxb->skb != NULL) {
1627 priv->alloc_rxb_skb--;
1628 dev_kfree_skb_any(rxb->skb);
1629 rxb->skb = NULL;
1630 }
1631
Zhu Yib481de92007-09-25 17:54:57 -07001632 spin_lock_irqsave(&rxq->lock, flags);
1633 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1634 spin_unlock_irqrestore(&rxq->lock, flags);
1635 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001636 /* If there are a lot of unused frames,
1637 * restock the Rx queue so ucode won't assert. */
1638 if (fill_rx) {
1639 count++;
1640 if (count >= 8) {
1641 priv->rxq.read = i;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001642 iwl3945_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001643 count = 0;
1644 }
1645 }
Zhu Yib481de92007-09-25 17:54:57 -07001646 }
1647
1648 /* Backtrack one entry */
1649 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001650 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001651}
1652
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001653/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001654static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001655{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001656 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001657 synchronize_irq(priv->pci_dev->irq);
1658 tasklet_kill(&priv->irq_tasklet);
1659}
1660
Zhu Yib481de92007-09-25 17:54:57 -07001661static const char *desc_lookup(int i)
1662{
1663 switch (i) {
1664 case 1:
1665 return "FAIL";
1666 case 2:
1667 return "BAD_PARAM";
1668 case 3:
1669 return "BAD_CHECKSUM";
1670 case 4:
1671 return "NMI_INTERRUPT";
1672 case 5:
1673 return "SYSASSERT";
1674 case 6:
1675 return "FATAL_ERROR";
1676 }
1677
1678 return "UNKNOWN";
1679}
1680
1681#define ERROR_START_OFFSET (1 * sizeof(u32))
1682#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1683
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001684static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001685{
1686 u32 i;
1687 u32 desc, time, count, base, data1;
1688 u32 blink1, blink2, ilink1, ilink2;
1689 int rc;
1690
1691 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001693 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001694 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001695 return;
1696 }
1697
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001698 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001699 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001700 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001701 return;
1702 }
1703
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001704 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001705
1706 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001707 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1708 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1709 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001710 }
1711
Winkler, Tomas15b16872008-12-19 10:37:33 +08001712 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001713 "ilink1 nmiPC Line\n");
1714 for (i = ERROR_START_OFFSET;
1715 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1716 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001717 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001718 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001719 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001720 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001721 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001722 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001723 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001724 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001725 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001726 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001727 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001728 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001729 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001730
Winkler, Tomas15b16872008-12-19 10:37:33 +08001731 IWL_ERR(priv,
1732 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1733 desc_lookup(desc), desc, time, blink1, blink2,
1734 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001735 }
1736
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001737 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001738
1739}
1740
Ben Cahillf58177b2007-11-29 11:09:43 +08001741#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001742
1743/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001744 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001745 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001746 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07001747 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001748static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001749 u32 num_events, u32 mode)
1750{
1751 u32 i;
1752 u32 base; /* SRAM byte address of event log header */
1753 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1754 u32 ptr; /* SRAM byte address of log data */
1755 u32 ev, time, data; /* event log data */
1756
1757 if (num_events == 0)
1758 return;
1759
1760 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1761
1762 if (mode == 0)
1763 event_size = 2 * sizeof(u32);
1764 else
1765 event_size = 3 * sizeof(u32);
1766
1767 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1768
1769 /* "time" is actually "data" for mode 0 (no timestamp).
1770 * place event id # at far right for easier visual parsing. */
1771 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001772 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001773 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001774 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001775 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001776 if (mode == 0) {
1777 /* data, ev */
1778 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1779 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001780 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001781 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001782 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001783 }
1784 }
1785}
1786
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001787static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001788{
1789 int rc;
1790 u32 base; /* SRAM byte address of event log header */
1791 u32 capacity; /* event log capacity in # entries */
1792 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1793 u32 num_wraps; /* # times uCode wrapped to top of log */
1794 u32 next_entry; /* index of next entry to be written by uCode */
1795 u32 size; /* # entries that we'll print */
1796
1797 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001798 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001799 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001800 return;
1801 }
1802
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001803 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001804 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001805 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001806 return;
1807 }
1808
1809 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001810 capacity = iwl_read_targ_mem(priv, base);
1811 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1812 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1813 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001814
1815 size = num_wraps ? capacity : next_entry;
1816
1817 /* bail out if nothing in log */
1818 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001819 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001820 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001821 return;
1822 }
1823
Winkler, Tomas15b16872008-12-19 10:37:33 +08001824 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001825 size, num_wraps);
1826
1827 /* if uCode has wrapped back to top of log, start at the oldest entry,
1828 * i.e the next one that uCode would fill. */
1829 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001830 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001831 capacity - next_entry, mode);
1832
1833 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001834 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001835
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001836 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001837}
1838
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001839static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001840{
1841 u32 inta, handled = 0;
1842 u32 inta_fh;
1843 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001844#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001845 u32 inta_mask;
1846#endif
1847
1848 spin_lock_irqsave(&priv->lock, flags);
1849
1850 /* Ack/clear/reset pending uCode interrupts.
1851 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1852 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001853 inta = iwl_read32(priv, CSR_INT);
1854 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001855
1856 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1857 * Any new interrupts that happen after this, either while we're
1858 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001859 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1860 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001861
Samuel Ortizd08853a2009-01-23 13:45:17 -08001862#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001863 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001864 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001865 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001866 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001867 inta, inta_mask, inta_fh);
1868 }
1869#endif
1870
1871 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1872 * atomic, make sure that inta covers all the interrupts that
1873 * we've discovered, even if FH interrupt came in just after
1874 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001875 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001876 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001877 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001878 inta |= CSR_INT_BIT_FH_TX;
1879
1880 /* Now service all interrupt bits discovered above. */
1881 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001882 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001883
1884 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001885 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001886
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001887 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001888 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001889
1890 handled |= CSR_INT_BIT_HW_ERR;
1891
1892 spin_unlock_irqrestore(&priv->lock, flags);
1893
1894 return;
1895 }
1896
Samuel Ortizd08853a2009-01-23 13:45:17 -08001897#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001898 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001899 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001900 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001901 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001902 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001903 priv->isr_stats.sch++;
1904 }
Zhu Yib481de92007-09-25 17:54:57 -07001905
1906 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001907 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001908 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001909 priv->isr_stats.alive++;
1910 }
Zhu Yib481de92007-09-25 17:54:57 -07001911 }
1912#endif
1913 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001914 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001915
Zhu Yib481de92007-09-25 17:54:57 -07001916 /* Error detected by uCode */
1917 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001918 IWL_ERR(priv, "Microcode SW error detected. "
1919 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001920 priv->isr_stats.sw++;
1921 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001922 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001923 handled |= CSR_INT_BIT_SW_ERR;
1924 }
1925
1926 /* uCode wakes up after power-down sleep */
1927 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001928 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001929 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001930 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1931 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1932 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1933 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1934 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1935 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001936
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001937 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001938 handled |= CSR_INT_BIT_WAKEUP;
1939 }
1940
1941 /* All uCode command responses, including Tx command responses,
1942 * Rx "responses" (frame-received notification), and other
1943 * notifications from uCode come through here*/
1944 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001945 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001946 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001947 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1948 }
1949
1950 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001951 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001952 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001953
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001954 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
1955 if (!iwl_grab_nic_access(priv)) {
1956 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08001957 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001958 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001959 }
1960 handled |= CSR_INT_BIT_FH_TX;
1961 }
1962
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001963 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001964 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001965 priv->isr_stats.unhandled++;
1966 }
Zhu Yib481de92007-09-25 17:54:57 -07001967
1968 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001969 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001970 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001971 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001972 }
1973
1974 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001975 /* only Re-enable if disabled by irq */
1976 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001977 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001978
Samuel Ortizd08853a2009-01-23 13:45:17 -08001979#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001980 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001981 inta = iwl_read32(priv, CSR_INT);
1982 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1983 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001984 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001985 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1986 }
1987#endif
1988 spin_unlock_irqrestore(&priv->lock, flags);
1989}
1990
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001991static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001992 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001993 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001994 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001995{
1996 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01001997 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001998 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001999 u16 passive_dwell = 0;
2000 u16 active_dwell = 0;
2001 int added, i;
2002
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08002003 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01002004 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07002005 return 0;
2006
Johannes Berg8318d782008-01-24 19:38:38 +01002007 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07002008
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002009 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
2010 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07002011
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08002012 if (passive_dwell <= active_dwell)
2013 passive_dwell = active_dwell + 1;
2014
Johannes Berg8318d782008-01-24 19:38:38 +01002015 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02002016 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
2017 continue;
2018
Johannes Berg8318d782008-01-24 19:38:38 +01002019 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07002020
Samuel Ortize6148912009-01-23 13:45:15 -08002021 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002022 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002023 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07002024 scan_ch->channel);
2025 continue;
2026 }
2027
Zhu Yib481de92007-09-25 17:54:57 -07002028 scan_ch->active_dwell = cpu_to_le16(active_dwell);
2029 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002030 /* If passive , set up for auto-switch
2031 * and use long active_dwell time.
2032 */
2033 if (!is_active || is_channel_passive(ch_info) ||
2034 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
2035 scan_ch->type = 0; /* passive */
2036 if (IWL_UCODE_API(priv->ucode_ver) == 1)
2037 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
2038 } else {
2039 scan_ch->type = 1; /* active */
2040 }
2041
2042 /* Set direct probe bits. These may be used both for active
2043 * scan channels (probes gets sent right away),
2044 * or for passive channels (probes get se sent only after
2045 * hearing clear Rx packet).*/
2046 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
2047 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002048 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002049 } else {
2050 /* uCode v1 does not allow setting direct probe bits on
2051 * passive channel. */
2052 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002053 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002054 }
Zhu Yib481de92007-09-25 17:54:57 -07002055
Ben Cahill9fbab512007-11-29 11:09:47 +08002056 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07002057 scan_ch->tpc.dsp_atten = 110;
2058 /* scan_pwr_info->tpc.dsp_atten; */
2059
2060 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01002061 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07002062 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
2063 else {
2064 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
2065 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08002066 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08002067 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07002068 */
2069 }
2070
Tomas Winklere1623442009-01-27 14:27:56 -08002071 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07002072 scan_ch->channel,
2073 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
2074 (scan_ch->type & 1) ?
2075 active_dwell : passive_dwell);
2076
2077 scan_ch++;
2078 added++;
2079 }
2080
Tomas Winklere1623442009-01-27 14:27:56 -08002081 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07002082 return added;
2083}
2084
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002085static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002086 struct ieee80211_rate *rates)
2087{
2088 int i;
2089
2090 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01002091 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
2092 rates[i].hw_value = i; /* Rate scaling will work on indexes */
2093 rates[i].hw_value_short = i;
2094 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08002095 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07002096 /*
Johannes Berg8318d782008-01-24 19:38:38 +01002097 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07002098 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002099 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01002100 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07002101 }
Zhu Yib481de92007-09-25 17:54:57 -07002102 }
2103}
2104
Zhu Yib481de92007-09-25 17:54:57 -07002105/******************************************************************************
2106 *
2107 * uCode download functions
2108 *
2109 ******************************************************************************/
2110
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002111static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002112{
Tomas Winkler98c92212008-01-14 17:46:20 -08002113 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
2114 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
2115 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2116 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
2117 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2118 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002119}
2120
2121/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002122 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002123 * looking at all data.
2124 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002125static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002126{
2127 u32 val;
2128 u32 save_len = len;
2129 int rc = 0;
2130 u32 errcnt;
2131
Tomas Winklere1623442009-01-27 14:27:56 -08002132 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002133
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002134 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002135 if (rc)
2136 return rc;
2137
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002138 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002139 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07002140
2141 errcnt = 0;
2142 for (; len > 0; len -= sizeof(u32), image++) {
2143 /* read data comes through single port, auto-incr addr */
2144 /* NOTE: Use the debugless read so we don't flood kernel log
2145 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002146 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002147 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002148 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002149 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2150 save_len - len, val, le32_to_cpu(*image));
2151 rc = -EIO;
2152 errcnt++;
2153 if (errcnt >= 20)
2154 break;
2155 }
2156 }
2157
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002158 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002159
2160 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002161 IWL_DEBUG_INFO(priv,
2162 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002163
2164 return rc;
2165}
2166
2167
2168/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002169 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002170 * using sample data 100 bytes apart. If these sample points are good,
2171 * it's a pretty good bet that everything between them is good, too.
2172 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002173static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002174{
2175 u32 val;
2176 int rc = 0;
2177 u32 errcnt = 0;
2178 u32 i;
2179
Tomas Winklere1623442009-01-27 14:27:56 -08002180 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002181
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002182 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002183 if (rc)
2184 return rc;
2185
2186 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2187 /* read data comes through single port, auto-incr addr */
2188 /* NOTE: Use the debugless read so we don't flood kernel log
2189 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002190 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002191 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002192 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002193 if (val != le32_to_cpu(*image)) {
2194#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002195 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002196 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2197 i, val, *image);
2198#endif
2199 rc = -EIO;
2200 errcnt++;
2201 if (errcnt >= 3)
2202 break;
2203 }
2204 }
2205
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002206 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002207
2208 return rc;
2209}
2210
2211
2212/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002213 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002214 * and verify its contents
2215 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002216static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002217{
2218 __le32 *image;
2219 u32 len;
2220 int rc = 0;
2221
2222 /* Try bootstrap */
2223 image = (__le32 *)priv->ucode_boot.v_addr;
2224 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002225 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002226 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002227 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002228 return 0;
2229 }
2230
2231 /* Try initialize */
2232 image = (__le32 *)priv->ucode_init.v_addr;
2233 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002234 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002235 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002236 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002237 return 0;
2238 }
2239
2240 /* Try runtime/protocol */
2241 image = (__le32 *)priv->ucode_code.v_addr;
2242 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002243 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002244 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002245 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002246 return 0;
2247 }
2248
Winkler, Tomas15b16872008-12-19 10:37:33 +08002249 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002250
Ben Cahill9fbab512007-11-29 11:09:47 +08002251 /* Since nothing seems to match, show first several data entries in
2252 * instruction SRAM, so maybe visual inspection will give a clue.
2253 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002254 image = (__le32 *)priv->ucode_boot.v_addr;
2255 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002256 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002257
2258 return rc;
2259}
2260
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002261static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002262{
2263 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002264 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002265}
2266
2267/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002268 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002269 *
2270 * Copy into buffers for card to fetch via bus-mastering
2271 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002272static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002273{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08002274 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002275 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002276 const struct firmware *ucode_raw;
2277 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002278 const char *name_pre = priv->cfg->fw_name_pre;
2279 const unsigned int api_max = priv->cfg->ucode_api_max;
2280 const unsigned int api_min = priv->cfg->ucode_api_min;
2281 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002282 u8 *src;
2283 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002284 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002285
2286 /* Ask kernel firmware_class module to get the boot firmware off disk.
2287 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002288 for (index = api_max; index >= api_min; index--) {
2289 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2290 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2291 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002292 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002293 buf, ret);
2294 if (ret == -ENOENT)
2295 continue;
2296 else
2297 goto error;
2298 } else {
2299 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002300 IWL_ERR(priv, "Loaded firmware %s, "
2301 "which is deprecated. "
2302 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002303 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002304 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2305 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002306 buf, ucode_raw->size);
2307 break;
2308 }
Zhu Yib481de92007-09-25 17:54:57 -07002309 }
2310
Reinette Chatrea0987a82008-12-02 12:14:06 -08002311 if (ret < 0)
2312 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002313
2314 /* Make sure that we got at least our header! */
2315 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002316 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002317 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002318 goto err_release;
2319 }
2320
2321 /* Data from ucode file: header followed by uCode images */
2322 ucode = (void *)ucode_raw->data;
2323
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002324 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002325 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002326 inst_size = le32_to_cpu(ucode->inst_size);
2327 data_size = le32_to_cpu(ucode->data_size);
2328 init_size = le32_to_cpu(ucode->init_size);
2329 init_data_size = le32_to_cpu(ucode->init_data_size);
2330 boot_size = le32_to_cpu(ucode->boot_size);
2331
Reinette Chatrea0987a82008-12-02 12:14:06 -08002332 /* api_ver should match the api version forming part of the
2333 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002334 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002335
2336 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002337 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002338 "Driver supports v%u, firmware is v%u.\n",
2339 api_max, api_ver);
2340 priv->ucode_ver = 0;
2341 ret = -EINVAL;
2342 goto err_release;
2343 }
2344 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002345 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002346 "got %u. New firmware can be obtained "
2347 "from http://www.intellinuxwireless.org.\n",
2348 api_max, api_ver);
2349
Tomas Winkler978785a2008-12-19 10:37:31 +08002350 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2351 IWL_UCODE_MAJOR(priv->ucode_ver),
2352 IWL_UCODE_MINOR(priv->ucode_ver),
2353 IWL_UCODE_API(priv->ucode_ver),
2354 IWL_UCODE_SERIAL(priv->ucode_ver));
2355
Tomas Winklere1623442009-01-27 14:27:56 -08002356 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002357 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002358 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2359 inst_size);
2360 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2361 data_size);
2362 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2363 init_size);
2364 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2365 init_data_size);
2366 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2367 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002368
Reinette Chatrea0987a82008-12-02 12:14:06 -08002369
Zhu Yib481de92007-09-25 17:54:57 -07002370 /* Verify size of file vs. image size info in file's header */
2371 if (ucode_raw->size < sizeof(*ucode) +
2372 inst_size + data_size + init_size +
2373 init_data_size + boot_size) {
2374
Tomas Winklere1623442009-01-27 14:27:56 -08002375 IWL_DEBUG_INFO(priv, "uCode file size %zd too small\n",
2376 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002377 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002378 goto err_release;
2379 }
2380
2381 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002382 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002383 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002384 inst_size);
2385 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002386 goto err_release;
2387 }
2388
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002389 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002390 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002391 data_size);
2392 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002393 goto err_release;
2394 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002395 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002396 IWL_DEBUG_INFO(priv,
2397 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002398 init_size);
2399 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002400 goto err_release;
2401 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002402 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002403 IWL_DEBUG_INFO(priv,
2404 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002405 init_data_size);
2406 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002407 goto err_release;
2408 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002409 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002410 IWL_DEBUG_INFO(priv,
2411 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002412 boot_size);
2413 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002414 goto err_release;
2415 }
2416
2417 /* Allocate ucode buffers for card's bus-master loading ... */
2418
2419 /* Runtime instructions and 2 copies of data:
2420 * 1) unmodified from disk
2421 * 2) backup cache for save/restore during power-downs */
2422 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002423 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002424
2425 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002426 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002427
2428 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002429 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002430
2431 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002432 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002433 goto err_pci_alloc;
2434
Tomas Winkler90e759d2007-11-29 11:09:41 +08002435 /* Initialization instructions and data */
2436 if (init_size && init_data_size) {
2437 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002438 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002439
2440 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002441 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002442
2443 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2444 goto err_pci_alloc;
2445 }
2446
2447 /* Bootstrap (instructions only, no data) */
2448 if (boot_size) {
2449 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002450 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002451
2452 if (!priv->ucode_boot.v_addr)
2453 goto err_pci_alloc;
2454 }
2455
Zhu Yib481de92007-09-25 17:54:57 -07002456 /* Copy images into buffers for card's bus-master reads ... */
2457
2458 /* Runtime instructions (first block of data in file) */
2459 src = &ucode->data[0];
2460 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002461 IWL_DEBUG_INFO(priv,
2462 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002463 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08002464 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002465 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2466
2467 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002468 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07002469 src = &ucode->data[inst_size];
2470 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002471 IWL_DEBUG_INFO(priv,
2472 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002473 memcpy(priv->ucode_data.v_addr, src, len);
2474 memcpy(priv->ucode_data_backup.v_addr, src, len);
2475
2476 /* Initialization instructions (3rd block) */
2477 if (init_size) {
2478 src = &ucode->data[inst_size + data_size];
2479 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002480 IWL_DEBUG_INFO(priv,
2481 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002482 memcpy(priv->ucode_init.v_addr, src, len);
2483 }
2484
2485 /* Initialization data (4th block) */
2486 if (init_data_size) {
2487 src = &ucode->data[inst_size + data_size + init_size];
2488 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002489 IWL_DEBUG_INFO(priv,
2490 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002491 memcpy(priv->ucode_init_data.v_addr, src, len);
2492 }
2493
2494 /* Bootstrap instructions (5th block) */
2495 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
2496 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002497 IWL_DEBUG_INFO(priv,
2498 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002499 memcpy(priv->ucode_boot.v_addr, src, len);
2500
2501 /* We have our copies now, allow OS release its copies */
2502 release_firmware(ucode_raw);
2503 return 0;
2504
2505 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002506 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002507 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002508 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002509
2510 err_release:
2511 release_firmware(ucode_raw);
2512
2513 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002514 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002515}
2516
2517
2518/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002519 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002520 *
2521 * Tell initialization uCode where to find runtime uCode.
2522 *
2523 * BSM registers initially contain pointers to initialization uCode.
2524 * We need to replace them to load runtime uCode inst and data,
2525 * and to save runtime data when powering down.
2526 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002527static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002528{
2529 dma_addr_t pinst;
2530 dma_addr_t pdata;
2531 int rc = 0;
2532 unsigned long flags;
2533
2534 /* bits 31:0 for 3945 */
2535 pinst = priv->ucode_code.p_addr;
2536 pdata = priv->ucode_data_backup.p_addr;
2537
2538 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002539 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002540 if (rc) {
2541 spin_unlock_irqrestore(&priv->lock, flags);
2542 return rc;
2543 }
2544
2545 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002546 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2547 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2548 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002549 priv->ucode_data.len);
2550
Tomas Winklera96a27f2008-10-23 23:48:56 -07002551 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002552 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002553 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002554 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2555
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002556 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002557
2558 spin_unlock_irqrestore(&priv->lock, flags);
2559
Tomas Winklere1623442009-01-27 14:27:56 -08002560 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002561
2562 return rc;
2563}
2564
2565/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002566 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002567 *
2568 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2569 *
Zhu Yib481de92007-09-25 17:54:57 -07002570 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002571 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002572static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002573{
2574 /* Check alive response for "valid" sign from uCode */
2575 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2576 /* We had an error bringing up the hardware, so take it
2577 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002578 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002579 goto restart;
2580 }
2581
2582 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2583 * This is a paranoid check, because we would not have gotten the
2584 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002585 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002586 /* Runtime instruction load was bad;
2587 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002588 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002589 goto restart;
2590 }
2591
2592 /* Send pointers to protocol/runtime uCode image ... init code will
2593 * load and launch runtime uCode, which will send us another "Alive"
2594 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002595 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002596 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002597 /* Runtime instruction load won't happen;
2598 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002599 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002600 goto restart;
2601 }
2602 return;
2603
2604 restart:
2605 queue_work(priv->workqueue, &priv->restart);
2606}
2607
Zhu Yib481de92007-09-25 17:54:57 -07002608/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002609 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002610 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002611 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002612 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002613static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002614{
2615 int rc = 0;
2616 int thermal_spin = 0;
2617 u32 rfkill;
2618
Tomas Winklere1623442009-01-27 14:27:56 -08002619 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002620
2621 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2622 /* We had an error bringing up the hardware, so take it
2623 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002624 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002625 goto restart;
2626 }
2627
2628 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2629 * This is a paranoid check, because we would not have gotten the
2630 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002631 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002632 /* Runtime instruction load was bad;
2633 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002634 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002635 goto restart;
2636 }
2637
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002638 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002639
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002640 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002641 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002642 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002643 return;
2644 }
2645
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002646 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002647 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002648 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002649
2650 if (rfkill & 0x1) {
2651 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002652 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002653 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002654 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002655 thermal_spin++;
2656 udelay(10);
2657 }
2658
2659 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002660 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002661 thermal_spin * 10);
2662 } else
2663 set_bit(STATUS_RF_KILL_HW, &priv->status);
2664
Ben Cahill9fbab512007-11-29 11:09:47 +08002665 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002666 set_bit(STATUS_ALIVE, &priv->status);
2667
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002668 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002669 return;
2670
Johannes Berg36d68252008-05-15 12:55:26 +02002671 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002672
2673 priv->active_rate = priv->rates_mask;
2674 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2675
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002676 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002677
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002678 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002679 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002680 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002681
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002682 memcpy(&priv->staging_rxon, &priv->active_rxon,
2683 sizeof(priv->staging_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07002684 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2685 } else {
2686 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002687 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002688 }
2689
Ben Cahill9fbab512007-11-29 11:09:47 +08002690 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002691 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002692
2693 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002694 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002695
Zhu Yib481de92007-09-25 17:54:57 -07002696 iwl3945_reg_txpower_periodic(priv);
2697
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002698 iwl3945_led_register(priv);
2699
Tomas Winklere1623442009-01-27 14:27:56 -08002700 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002701 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002702 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002703
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002704 /* reassociate for ADHOC mode */
2705 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2706 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2707 priv->vif);
2708 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002709 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002710 }
2711
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002712 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002713 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002714
Zhu Yib481de92007-09-25 17:54:57 -07002715 return;
2716
2717 restart:
2718 queue_work(priv->workqueue, &priv->restart);
2719}
2720
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002721static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002722
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002723static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002724{
2725 unsigned long flags;
2726 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2727 struct ieee80211_conf *conf = NULL;
2728
Tomas Winklere1623442009-01-27 14:27:56 -08002729 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002730
2731 conf = ieee80211_get_hw_conf(priv->hw);
2732
2733 if (!exit_pending)
2734 set_bit(STATUS_EXIT_PENDING, &priv->status);
2735
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002736 iwl3945_led_unregister(priv);
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002737 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002738
2739 /* Unblock any waiting calls */
2740 wake_up_interruptible_all(&priv->wait_command_queue);
2741
Zhu Yib481de92007-09-25 17:54:57 -07002742 /* Wipe out the EXIT_PENDING status bit if we are not actually
2743 * exiting the module */
2744 if (!exit_pending)
2745 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2746
2747 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002748 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002749
2750 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002751 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002752 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002753 spin_unlock_irqrestore(&priv->lock, flags);
2754 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002755
2756 if (priv->mac80211_registered)
2757 ieee80211_stop_queues(priv->hw);
2758
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002759 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002760 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002761 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002762 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2763 STATUS_RF_KILL_HW |
2764 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2765 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002766 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2767 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002768 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2769 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002770 goto exit;
2771 }
2772
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002773 /* ...otherwise clear out all the status bits but the RF Kill
2774 * bits and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002775 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2776 STATUS_RF_KILL_HW |
2777 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2778 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002779 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2780 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002781 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002782 STATUS_FW_ERROR |
2783 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2784 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002785
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002786 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002787 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002788 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002789 spin_unlock_irqrestore(&priv->lock, flags);
2790
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002791 iwl3945_hw_txq_ctx_stop(priv);
2792 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002793
2794 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002795 if (!iwl_grab_nic_access(priv)) {
2796 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002797 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002798 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002799 }
2800 spin_unlock_irqrestore(&priv->lock, flags);
2801
2802 udelay(5);
2803
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002804 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002805 priv->cfg->ops->lib->apm_ops.stop(priv);
2806 else
2807 priv->cfg->ops->lib->apm_ops.reset(priv);
2808
Zhu Yib481de92007-09-25 17:54:57 -07002809 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002810 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002811
2812 if (priv->ibss_beacon)
2813 dev_kfree_skb(priv->ibss_beacon);
2814 priv->ibss_beacon = NULL;
2815
2816 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002817 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002818}
2819
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002820static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002821{
2822 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002823 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002824 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002825
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002826 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002827}
2828
2829#define MAX_HW_RESTARTS 5
2830
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002831static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002832{
2833 int rc, i;
2834
2835 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002836 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002837 return -EIO;
2838 }
2839
2840 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002841 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07002842 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002843 return -ENODEV;
2844 }
2845
Reinette Chatree903fbd2008-01-30 22:05:15 -08002846 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002847 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002848 return -EIO;
2849 }
2850
Zhu Yie655b9f2008-01-24 02:19:38 -08002851 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002852 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002853 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2854 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2855 else {
2856 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002857 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2858 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002859 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002860
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002861 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002862
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002863 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002864 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002865 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002866 return rc;
2867 }
2868
2869 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002870 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2871 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002872 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2873
2874 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002875 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002876 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002877
2878 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002879 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2880 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002881
2882 /* Copy original ucode data image from disk into backup cache.
2883 * This will be used to initialize the on-board processor's
2884 * data SRAM for a clean start when the runtime program first loads. */
2885 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002886 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002887
Zhu Yie655b9f2008-01-24 02:19:38 -08002888 /* We return success when we resume from suspend and rf_kill is on. */
2889 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2890 return 0;
2891
Zhu Yib481de92007-09-25 17:54:57 -07002892 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2893
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002894 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002895
2896 /* load bootstrap state machine,
2897 * load bootstrap program into processor's memory,
2898 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002899 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002900
2901 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002902 IWL_ERR(priv,
2903 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002904 continue;
2905 }
2906
2907 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002908 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002909
Tomas Winklere1623442009-01-27 14:27:56 -08002910 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002911
2912 return 0;
2913 }
2914
2915 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002916 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002917 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002918
2919 /* tried to restart and config the device for as long as our
2920 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002921 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002922 return -EIO;
2923}
2924
2925
2926/*****************************************************************************
2927 *
2928 * Workqueue callbacks
2929 *
2930 *****************************************************************************/
2931
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002932static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002933{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002934 struct iwl_priv *priv =
2935 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002936
2937 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2938 return;
2939
2940 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002941 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002942 mutex_unlock(&priv->mutex);
2943}
2944
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002945static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002946{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002947 struct iwl_priv *priv =
2948 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002949
2950 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2951 return;
2952
2953 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002954 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002955 mutex_unlock(&priv->mutex);
2956}
2957
Helmut Schaa26635162009-01-15 09:38:44 +01002958static void iwl3945_rfkill_poll(struct work_struct *data)
2959{
2960 struct iwl_priv *priv =
2961 container_of(data, struct iwl_priv, rfkill_poll.work);
2962 unsigned long status = priv->status;
2963
2964 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2965 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2966 else
2967 set_bit(STATUS_RF_KILL_HW, &priv->status);
2968
2969 if (test_bit(STATUS_RF_KILL_HW, &status) != test_bit(STATUS_RF_KILL_HW, &priv->status))
2970 queue_work(priv->workqueue, &priv->rf_kill);
2971
2972 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2973 round_jiffies_relative(2 * HZ));
2974
2975}
2976
Zhu Yib481de92007-09-25 17:54:57 -07002977#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002978static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002979{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002980 struct iwl_priv *priv =
2981 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002982 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002983 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002984 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07002985 .meta.flags = CMD_SIZE_HUGE,
2986 };
2987 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002988 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002989 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002990 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002991 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002992 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002993
2994 conf = ieee80211_get_hw_conf(priv->hw);
2995
2996 mutex_lock(&priv->mutex);
2997
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002998 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002999 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003000 goto done;
3001 }
3002
Tomas Winklera96a27f2008-10-23 23:48:56 -07003003 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07003004 * was given the chance to run... */
3005 if (!test_bit(STATUS_SCANNING, &priv->status))
3006 goto done;
3007
3008 /* This should never be called or scheduled if there is currently
3009 * a scan active in the hardware. */
3010 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003011 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
3012 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003013 rc = -EIO;
3014 goto done;
3015 }
3016
3017 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003018 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07003019 goto done;
3020 }
3021
3022 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003023 IWL_DEBUG_HC(priv,
3024 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003025 goto done;
3026 }
3027
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003028 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003029 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07003030 goto done;
3031 }
3032
3033 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003034 IWL_DEBUG_HC(priv,
3035 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003036 goto done;
3037 }
3038
3039 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08003040 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07003041 goto done;
3042 }
3043
Winkler, Tomas805cee52009-01-19 15:30:28 -08003044 if (!priv->scan) {
3045 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07003046 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08003047 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07003048 rc = -ENOMEM;
3049 goto done;
3050 }
3051 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08003052 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003053 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003054
3055 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
3056 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
3057
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003058 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003059 u16 interval = 0;
3060 u32 extra;
3061 u32 suspend_time = 100;
3062 u32 scan_suspend_time = 100;
3063 unsigned long flags;
3064
Tomas Winklere1623442009-01-27 14:27:56 -08003065 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07003066
3067 spin_lock_irqsave(&priv->lock, flags);
3068 interval = priv->beacon_int;
3069 spin_unlock_irqrestore(&priv->lock, flags);
3070
3071 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003072 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07003073 if (!interval)
3074 interval = suspend_time;
3075 /*
3076 * suspend time format:
3077 * 0-19: beacon interval in usec (time before exec.)
3078 * 20-23: 0
3079 * 24-31: number of beacons (suspend between channels)
3080 */
3081
3082 extra = (suspend_time / interval) << 24;
3083 scan_suspend_time = 0xFF0FFFFF &
3084 (extra | ((suspend_time % interval) * 1024));
3085
3086 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08003087 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003088 scan_suspend_time, interval);
3089 }
3090
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003091 if (priv->scan_request->n_ssids) {
3092 int i, p = 0;
3093 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
3094 for (i = 0; i < priv->scan_request->n_ssids; i++) {
3095 /* always does wildcard anyway */
3096 if (!priv->scan_request->ssids[i].ssid_len)
3097 continue;
3098 scan->direct_scan[p].id = WLAN_EID_SSID;
3099 scan->direct_scan[p].len =
3100 priv->scan_request->ssids[i].ssid_len;
3101 memcpy(scan->direct_scan[p].ssid,
3102 priv->scan_request->ssids[i].ssid,
3103 priv->scan_request->ssids[i].ssid_len);
3104 n_probes++;
3105 p++;
3106 }
3107 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003108 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003109 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003110
3111 /* We don't build a direct scan probe request; the uCode will do
3112 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07003113 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08003114 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07003115 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3116
3117 /* flags + rate selection */
3118
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003119 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003120 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
3121 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
3122 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003123 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003124 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003125 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07003126 /*
3127 * If active scaning is requested but a certain channel
3128 * is marked passive, we can do active scanning if we
3129 * detect transmissions.
3130 */
3131 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003132 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003133 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003134 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07003135 goto done;
3136 }
3137
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003138 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003139 iwl_fill_probe_req(priv,
3140 (struct ieee80211_mgmt *)scan->data,
3141 priv->scan_request->ie,
3142 priv->scan_request->ie_len,
3143 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003144
Zhu Yib481de92007-09-25 17:54:57 -07003145 /* select Rx antennas */
3146 scan->flags |= iwl3945_get_antenna_flags(priv);
3147
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07003148 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003149 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
3150
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003151 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003152 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003153 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07003154
Reinette Chatre14b54332008-11-04 12:21:35 -08003155 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003156 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08003157 goto done;
3158 }
3159
Zhu Yib481de92007-09-25 17:54:57 -07003160 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003161 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003162 cmd.data = scan;
3163 scan->len = cpu_to_le16(cmd.len);
3164
3165 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003166 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003167 if (rc)
3168 goto done;
3169
3170 queue_delayed_work(priv->workqueue, &priv->scan_check,
3171 IWL_SCAN_CHECK_WATCHDOG);
3172
3173 mutex_unlock(&priv->mutex);
3174 return;
3175
3176 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003177 /* can not perform scan make sure we clear scanning
3178 * bits from status so next scan request can be performed.
3179 * if we dont clear scanning status bit here all next scan
3180 * will fail
3181 */
3182 clear_bit(STATUS_SCAN_HW, &priv->status);
3183 clear_bit(STATUS_SCANNING, &priv->status);
3184
Ian Schram01ebd062007-10-25 17:15:22 +08003185 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003186 queue_work(priv->workqueue, &priv->scan_completed);
3187 mutex_unlock(&priv->mutex);
3188}
3189
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003190static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003191{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003192 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07003193
3194 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3195 return;
3196
3197 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003198 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003199 mutex_unlock(&priv->mutex);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003200 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003201}
3202
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003203static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003204{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003205 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003206
3207 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3208 return;
3209
Johannes Berg19cc1082009-05-08 13:44:36 -07003210 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3211 mutex_lock(&priv->mutex);
3212 priv->vif = NULL;
3213 priv->is_open = 0;
3214 mutex_unlock(&priv->mutex);
3215 iwl3945_down(priv);
3216 ieee80211_restart_hw(priv->hw);
3217 } else {
3218 iwl3945_down(priv);
3219 queue_work(priv->workqueue, &priv->up);
3220 }
Zhu Yib481de92007-09-25 17:54:57 -07003221}
3222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003223static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003224{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003225 struct iwl_priv *priv =
3226 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003227
3228 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3229 return;
3230
3231 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003232 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003233 mutex_unlock(&priv->mutex);
3234}
3235
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003236#define IWL_DELAY_NEXT_SCAN (HZ*2)
3237
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003238void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003239{
Zhu Yib481de92007-09-25 17:54:57 -07003240 int rc = 0;
3241 struct ieee80211_conf *conf = NULL;
3242
Johannes Berg05c914f2008-09-11 00:01:58 +02003243 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003244 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003245 return;
3246 }
3247
3248
Tomas Winklere1623442009-01-27 14:27:56 -08003249 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003250 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003251
3252 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3253 return;
3254
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003255 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003256 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003257
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003258 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003259
Zhu Yib481de92007-09-25 17:54:57 -07003260 conf = ieee80211_get_hw_conf(priv->hw);
3261
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003262 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003263 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003264
Tomas Winkler28afaf92008-12-19 10:37:06 +08003265 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003266 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003267 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003268 sizeof(priv->rxon_timing), &priv->rxon_timing);
3269 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003270 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003271 "Attempting to continue.\n");
3272
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003273 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003274
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003275 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003276
Tomas Winklere1623442009-01-27 14:27:56 -08003277 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003278 priv->assoc_id, priv->beacon_int);
3279
3280 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003281 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003282 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003283 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003284
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003285 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003286 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003287 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003288 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003289 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003290
Johannes Berg05c914f2008-09-11 00:01:58 +02003291 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003292 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003293
3294 }
3295
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003296 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003297
3298 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003299 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003300 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003301 break;
3302
Johannes Berg05c914f2008-09-11 00:01:58 +02003303 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003304
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003305 priv->assoc_id = 1;
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07003306 priv->cfg->ops->smgmt->add_station(priv, priv->bssid, 0, 0, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003307 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003308 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003309 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3310 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003311 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3312 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003313
3314 break;
3315
3316 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003317 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003318 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003319 break;
3320 }
3321
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003322 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003323
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003324 /* we have just associated, don't start scan too early */
3325 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003326}
3327
Zhu Yib481de92007-09-25 17:54:57 -07003328/*****************************************************************************
3329 *
3330 * mac80211 entry point functions
3331 *
3332 *****************************************************************************/
3333
Zhu Yi5a669262008-01-14 17:46:18 -08003334#define UCODE_READY_TIMEOUT (2 * HZ)
3335
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003336static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003337{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003338 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003339 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003340
Tomas Winklere1623442009-01-27 14:27:56 -08003341 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003342
3343 /* we should be verifying the device is ready to be opened */
3344 mutex_lock(&priv->mutex);
3345
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003346 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
Zhu Yi5a669262008-01-14 17:46:18 -08003347 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3348 * ucode filename and max sizes are card-specific. */
3349
3350 if (!priv->ucode_code.len) {
3351 ret = iwl3945_read_ucode(priv);
3352 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003353 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003354 mutex_unlock(&priv->mutex);
3355 goto out_release_irq;
3356 }
3357 }
3358
Zhu Yie655b9f2008-01-24 02:19:38 -08003359 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003360
Zhu Yib481de92007-09-25 17:54:57 -07003361 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003362
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003363 iwl_rfkill_set_hw_state(priv);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02003364
Zhu Yie655b9f2008-01-24 02:19:38 -08003365 if (ret)
3366 goto out_release_irq;
3367
Tomas Winklere1623442009-01-27 14:27:56 -08003368 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003369
Zhu Yi5a669262008-01-14 17:46:18 -08003370 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3371 * mac80211 will not be run successfully. */
3372 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3373 test_bit(STATUS_READY, &priv->status),
3374 UCODE_READY_TIMEOUT);
3375 if (!ret) {
3376 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003377 IWL_ERR(priv,
3378 "Wait for START_ALIVE timeout after %dms.\n",
3379 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003380 ret = -ETIMEDOUT;
3381 goto out_release_irq;
3382 }
3383 }
3384
Helmut Schaa26635162009-01-15 09:38:44 +01003385 /* ucode is running and will send rfkill notifications,
3386 * no need to poll the killswitch state anymore */
3387 cancel_delayed_work(&priv->rfkill_poll);
3388
Zhu Yie655b9f2008-01-24 02:19:38 -08003389 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003390 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003391 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003392
3393out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003394 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003395 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003396 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003397}
3398
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003399static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003400{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003401 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003402
Tomas Winklere1623442009-01-27 14:27:56 -08003403 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003404
Zhu Yie655b9f2008-01-24 02:19:38 -08003405 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003406 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003407 return;
3408 }
3409
Zhu Yib481de92007-09-25 17:54:57 -07003410 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003411
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003412 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003413 /* stop mac, cancel any scan request and clear
3414 * RXON_FILTER_ASSOC_MSK BIT
3415 */
Zhu Yi5a669262008-01-14 17:46:18 -08003416 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003417 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003418 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003419 }
3420
Zhu Yi5a669262008-01-14 17:46:18 -08003421 iwl3945_down(priv);
3422
3423 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003424
3425 /* start polling the killswitch state again */
3426 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3427 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003428
Tomas Winklere1623442009-01-27 14:27:56 -08003429 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003430}
3431
Johannes Berge039fa42008-05-15 12:55:29 +02003432static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003433{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003434 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003435
Tomas Winklere1623442009-01-27 14:27:56 -08003436 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003437
Tomas Winklere1623442009-01-27 14:27:56 -08003438 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003439 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003440
Johannes Berge039fa42008-05-15 12:55:29 +02003441 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003442 dev_kfree_skb_any(skb);
3443
Tomas Winklere1623442009-01-27 14:27:56 -08003444 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003445 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003446}
3447
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003448void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003449{
3450 int rc = 0;
3451
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003452 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003453 return;
3454
3455 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003456 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003457
3458 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003459 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003460 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003461
3462 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003463 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003464 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003465 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3466 sizeof(priv->rxon_timing),
3467 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003468 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003469 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003470 "Attempting to continue.\n");
3471
3472 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003473 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003474 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003475 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003476 RXON_FLG_SHORT_PREAMBLE_MSK;
3477 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003478 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003479 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3480
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003481 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003482 if (priv->assoc_capability &
3483 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003484 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003485 RXON_FLG_SHORT_SLOT_MSK;
3486 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003487 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003488 ~RXON_FLG_SHORT_SLOT_MSK;
3489
Johannes Berg05c914f2008-09-11 00:01:58 +02003490 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003491 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003492 ~RXON_FLG_SHORT_SLOT_MSK;
3493 }
3494 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003495 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003496 iwlcore_commit_rxon(priv);
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07003497 priv->cfg->ops->smgmt->add_station(priv, iwl_bcast_addr, 0, 0, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003498 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003499 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003500
3501 /* FIXME - we need to add code here to detect a totally new
3502 * configuration, reset the AP, unassoc, rxon timing, assoc,
3503 * clear sta table, add BCAST sta... */
3504}
3505
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003506static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003507 struct ieee80211_vif *vif,
3508 struct ieee80211_sta *sta,
3509 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003510{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003511 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003512 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003513 int ret = 0;
3514 u8 sta_id = IWL_INVALID_STATION;
3515 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003516
Tomas Winklere1623442009-01-27 14:27:56 -08003517 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003518
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003519 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003520 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003521 return -EOPNOTSUPP;
3522 }
3523
Winkler, Tomas42986792009-01-19 15:30:22 -08003524 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003525 static_key = !iwl_is_associated(priv);
3526
3527 if (!static_key) {
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07003528 sta_id = priv->cfg->ops->smgmt->find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003529 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003530 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003531 addr);
3532 return -EINVAL;
3533 }
Zhu Yib481de92007-09-25 17:54:57 -07003534 }
3535
3536 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003537 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003538 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003539
Zhu Yib481de92007-09-25 17:54:57 -07003540 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003541 case SET_KEY:
3542 if (static_key)
3543 ret = iwl3945_set_static_key(priv, key);
3544 else
3545 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3546 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003547 break;
3548 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003549 if (static_key)
3550 ret = iwl3945_remove_static_key(priv);
3551 else
3552 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3553 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003554 break;
3555 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003556 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003557 }
3558
Tomas Winklere1623442009-01-27 14:27:56 -08003559 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003560
Winkler, Tomas42986792009-01-19 15:30:22 -08003561 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003562}
3563
Zhu Yib481de92007-09-25 17:54:57 -07003564/*****************************************************************************
3565 *
3566 * sysfs attributes
3567 *
3568 *****************************************************************************/
3569
Samuel Ortizd08853a2009-01-23 13:45:17 -08003570#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003571
3572/*
3573 * The following adds a new attribute to the sysfs representation
3574 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3575 * used for controlling the debug level.
3576 *
3577 * See the level definitions in iwl for details.
3578 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003579static ssize_t show_debug_level(struct device *d,
3580 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003581{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003582 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003583
3584 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003585}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003586static ssize_t store_debug_level(struct device *d,
3587 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003588 const char *buf, size_t count)
3589{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003590 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003591 unsigned long val;
3592 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003593
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003594 ret = strict_strtoul(buf, 0, &val);
3595 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003596 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003597 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003598 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003599
3600 return strnlen(buf, count);
3601}
3602
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003603static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3604 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003605
Samuel Ortizd08853a2009-01-23 13:45:17 -08003606#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003607
Zhu Yib481de92007-09-25 17:54:57 -07003608static ssize_t show_temperature(struct device *d,
3609 struct device_attribute *attr, char *buf)
3610{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003611 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003612
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003613 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003614 return -EAGAIN;
3615
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003616 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003617}
3618
3619static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3620
Zhu Yib481de92007-09-25 17:54:57 -07003621static ssize_t show_tx_power(struct device *d,
3622 struct device_attribute *attr, char *buf)
3623{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003624 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003625 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003626}
3627
3628static ssize_t store_tx_power(struct device *d,
3629 struct device_attribute *attr,
3630 const char *buf, size_t count)
3631{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003632 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003633 char *p = (char *)buf;
3634 u32 val;
3635
3636 val = simple_strtoul(p, &p, 10);
3637 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003638 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003639 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003640 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003641
3642 return count;
3643}
3644
3645static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3646
3647static ssize_t show_flags(struct device *d,
3648 struct device_attribute *attr, char *buf)
3649{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003650 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003651
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003652 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003653}
3654
3655static ssize_t store_flags(struct device *d,
3656 struct device_attribute *attr,
3657 const char *buf, size_t count)
3658{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003659 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003660 u32 flags = simple_strtoul(buf, NULL, 0);
3661
3662 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003663 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003664 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003665 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003666 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003667 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003668 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003669 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003670 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003671 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003672 }
3673 }
3674 mutex_unlock(&priv->mutex);
3675
3676 return count;
3677}
3678
3679static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3680
3681static ssize_t show_filter_flags(struct device *d,
3682 struct device_attribute *attr, char *buf)
3683{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003684 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003685
3686 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003687 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003688}
3689
3690static ssize_t store_filter_flags(struct device *d,
3691 struct device_attribute *attr,
3692 const char *buf, size_t count)
3693{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003694 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003695 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3696
3697 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003698 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003699 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003700 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003701 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003702 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003703 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003704 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003705 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003706 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003707 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003708 }
3709 }
3710 mutex_unlock(&priv->mutex);
3711
3712 return count;
3713}
3714
3715static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3716 store_filter_flags);
3717
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003718#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003719
3720static ssize_t show_measurement(struct device *d,
3721 struct device_attribute *attr, char *buf)
3722{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003723 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003724 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003725 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003726 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003727 unsigned long flags;
3728
3729 spin_lock_irqsave(&priv->lock, flags);
3730 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3731 spin_unlock_irqrestore(&priv->lock, flags);
3732 return 0;
3733 }
3734 memcpy(&measure_report, &priv->measure_report, size);
3735 priv->measurement_status = 0;
3736 spin_unlock_irqrestore(&priv->lock, flags);
3737
3738 while (size && (PAGE_SIZE - len)) {
3739 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3740 PAGE_SIZE - len, 1);
3741 len = strlen(buf);
3742 if (PAGE_SIZE - len)
3743 buf[len++] = '\n';
3744
3745 ofs += 16;
3746 size -= min(size, 16U);
3747 }
3748
3749 return len;
3750}
3751
3752static ssize_t store_measurement(struct device *d,
3753 struct device_attribute *attr,
3754 const char *buf, size_t count)
3755{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003756 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003757 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003758 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003759 .start_time = cpu_to_le64(priv->last_tsf),
3760 .duration = cpu_to_le16(1),
3761 };
3762 u8 type = IWL_MEASURE_BASIC;
3763 u8 buffer[32];
3764 u8 channel;
3765
3766 if (count) {
3767 char *p = buffer;
3768 strncpy(buffer, buf, min(sizeof(buffer), count));
3769 channel = simple_strtoul(p, NULL, 0);
3770 if (channel)
3771 params.channel = channel;
3772
3773 p = buffer;
3774 while (*p && *p != ' ')
3775 p++;
3776 if (*p)
3777 type = simple_strtoul(p + 1, NULL, 0);
3778 }
3779
Tomas Winklere1623442009-01-27 14:27:56 -08003780 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003781 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003782 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003783
3784 return count;
3785}
3786
3787static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3788 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003789#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003790
Zhu Yib481de92007-09-25 17:54:57 -07003791static ssize_t store_retry_rate(struct device *d,
3792 struct device_attribute *attr,
3793 const char *buf, size_t count)
3794{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003795 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003796
3797 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3798 if (priv->retry_rate <= 0)
3799 priv->retry_rate = 1;
3800
3801 return count;
3802}
3803
3804static ssize_t show_retry_rate(struct device *d,
3805 struct device_attribute *attr, char *buf)
3806{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003807 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003808 return sprintf(buf, "%d", priv->retry_rate);
3809}
3810
3811static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3812 store_retry_rate);
3813
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003814
Zhu Yib481de92007-09-25 17:54:57 -07003815static ssize_t store_power_level(struct device *d,
3816 struct device_attribute *attr,
3817 const char *buf, size_t count)
3818{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003819 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003820 int ret;
3821 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003822
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003823
Zhu Yib481de92007-09-25 17:54:57 -07003824 mutex_lock(&priv->mutex);
3825
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003826 ret = strict_strtoul(buf, 10, &mode);
3827 if (ret)
3828 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003829
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003830 ret = iwl_power_set_user_mode(priv, mode);
3831 if (ret) {
3832 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
3833 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003834 }
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003835 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003836
3837 out:
3838 mutex_unlock(&priv->mutex);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003839 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003840}
3841
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003842static ssize_t show_power_level(struct device *d,
3843 struct device_attribute *attr, char *buf)
3844{
3845 struct iwl_priv *priv = dev_get_drvdata(d);
3846 int mode = priv->power_data.user_power_setting;
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003847 int level = priv->power_data.power_mode;
3848 char *p = buf;
3849
Johannes Berg7af2c462009-05-08 13:44:38 -07003850 p += sprintf(p, "INDEX:%d\t", level);
3851 p += sprintf(p, "USER:%d\n", mode);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003852 return p - buf + 1;
3853}
3854
3855static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR,
3856 show_power_level, store_power_level);
3857
Zhu Yib481de92007-09-25 17:54:57 -07003858#define MAX_WX_STRING 80
3859
3860/* Values are in microsecond */
3861static const s32 timeout_duration[] = {
3862 350000,
3863 250000,
3864 75000,
3865 37000,
3866 25000,
3867};
3868static const s32 period_duration[] = {
3869 400000,
3870 700000,
3871 1000000,
3872 1000000,
3873 1000000
3874};
3875
Zhu Yib481de92007-09-25 17:54:57 -07003876static ssize_t show_channels(struct device *d,
3877 struct device_attribute *attr, char *buf)
3878{
Johannes Berg8318d782008-01-24 19:38:38 +01003879 /* all this shit doesn't belong into sysfs anyway */
3880 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003881}
3882
3883static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3884
3885static ssize_t show_statistics(struct device *d,
3886 struct device_attribute *attr, char *buf)
3887{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003888 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003889 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003890 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003891 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003892 int rc = 0;
3893
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003894 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003895 return -EAGAIN;
3896
3897 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003898 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003899 mutex_unlock(&priv->mutex);
3900
3901 if (rc) {
3902 len = sprintf(buf,
3903 "Error sending statistics request: 0x%08X\n", rc);
3904 return len;
3905 }
3906
3907 while (size && (PAGE_SIZE - len)) {
3908 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3909 PAGE_SIZE - len, 1);
3910 len = strlen(buf);
3911 if (PAGE_SIZE - len)
3912 buf[len++] = '\n';
3913
3914 ofs += 16;
3915 size -= min(size, 16U);
3916 }
3917
3918 return len;
3919}
3920
3921static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3922
3923static ssize_t show_antenna(struct device *d,
3924 struct device_attribute *attr, char *buf)
3925{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003926 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003927
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003928 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003929 return -EAGAIN;
3930
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003931 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003932}
3933
3934static ssize_t store_antenna(struct device *d,
3935 struct device_attribute *attr,
3936 const char *buf, size_t count)
3937{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003938 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003939 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003940
3941 if (count == 0)
3942 return 0;
3943
3944 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003945 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003946 return count;
3947 }
3948
3949 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003950 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003951 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003952 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003953 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003954
3955
3956 return count;
3957}
3958
3959static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3960
3961static ssize_t show_status(struct device *d,
3962 struct device_attribute *attr, char *buf)
3963{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003964 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003965 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003966 return -EAGAIN;
3967 return sprintf(buf, "0x%08x\n", (int)priv->status);
3968}
3969
3970static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3971
3972static ssize_t dump_error_log(struct device *d,
3973 struct device_attribute *attr,
3974 const char *buf, size_t count)
3975{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003976 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003977 char *p = (char *)buf;
3978
3979 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003980 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003981
3982 return strnlen(buf, count);
3983}
3984
3985static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3986
3987static ssize_t dump_event_log(struct device *d,
3988 struct device_attribute *attr,
3989 const char *buf, size_t count)
3990{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003991 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003992 char *p = (char *)buf;
3993
3994 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003995 iwl3945_dump_nic_event_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003996
3997 return strnlen(buf, count);
3998}
3999
4000static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
4001
4002/*****************************************************************************
4003 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07004004 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07004005 *
4006 *****************************************************************************/
4007
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004008static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004009{
Reinette Chatred21050c2009-02-13 11:51:18 -08004010 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07004011
4012 init_waitqueue_head(&priv->wait_command_queue);
4013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004014 INIT_WORK(&priv->up, iwl3945_bg_up);
4015 INIT_WORK(&priv->restart, iwl3945_bg_restart);
4016 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004017 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004018 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004019 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
4020 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01004021 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08004022 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
4023 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
4024 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
4025 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07004026
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004027 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004028
4029 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004030 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004031}
4032
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004033static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004034{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004035 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004036
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09004037 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004038 cancel_delayed_work(&priv->scan_check);
4039 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004040 cancel_work_sync(&priv->beacon_update);
4041}
4042
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004043static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07004044 &dev_attr_antenna.attr,
4045 &dev_attr_channels.attr,
4046 &dev_attr_dump_errors.attr,
4047 &dev_attr_dump_events.attr,
4048 &dev_attr_flags.attr,
4049 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004050#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004051 &dev_attr_measurement.attr,
4052#endif
4053 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004054 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004055 &dev_attr_statistics.attr,
4056 &dev_attr_status.attr,
4057 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004058 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08004059#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004060 &dev_attr_debug_level.attr,
4061#endif
Zhu Yib481de92007-09-25 17:54:57 -07004062 NULL
4063};
4064
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004065static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07004066 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004067 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07004068};
4069
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004070static struct ieee80211_ops iwl3945_hw_ops = {
4071 .tx = iwl3945_mac_tx,
4072 .start = iwl3945_mac_start,
4073 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07004074 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07004075 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07004076 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004077 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004078 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07004079 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07004080 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07004081 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07004082 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08004083 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07004084};
4085
Winkler, Tomase52119c2008-12-22 11:31:19 +08004086static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004087{
4088 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08004089 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004090
4091 priv->retry_rate = 1;
4092 priv->ibss_beacon = NULL;
4093
4094 spin_lock_init(&priv->lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004095 spin_lock_init(&priv->sta_lock);
4096 spin_lock_init(&priv->hcmd_lock);
4097
4098 INIT_LIST_HEAD(&priv->free_frames);
4099
4100 mutex_init(&priv->mutex);
4101
4102 /* Clear the driver's (not device's) station table */
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07004103 priv->cfg->ops->smgmt->clear_station_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004104
4105 priv->data_retry_limit = -1;
4106 priv->ieee_channels = NULL;
4107 priv->ieee_rates = NULL;
4108 priv->band = IEEE80211_BAND_2GHZ;
4109
4110 priv->iw_mode = NL80211_IFTYPE_STATION;
4111
4112 iwl_reset_qos(priv);
4113
4114 priv->qos_data.qos_active = 0;
4115 priv->qos_data.qos_cap.val = 0;
4116
4117 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004118 /* If power management is turned on, default to CAM mode */
4119 priv->power_mode = IWL_POWER_MODE_CAM;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08004120 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004121
Samuel Ortize6148912009-01-23 13:45:15 -08004122 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
4123 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
4124 eeprom->version);
4125 ret = -EINVAL;
4126 goto err;
4127 }
4128 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004129 if (ret) {
4130 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4131 goto err;
4132 }
4133
Samuel Ortize6148912009-01-23 13:45:15 -08004134 /* Set up txpower settings in driver for all channels */
4135 if (iwl3945_txpower_set_from_eeprom(priv)) {
4136 ret = -EIO;
4137 goto err_free_channel_map;
4138 }
4139
Samuel Ortiz534166d2009-01-23 13:45:16 -08004140 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004141 if (ret) {
4142 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4143 goto err_free_channel_map;
4144 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08004145 iwl3945_init_hw_rates(priv, priv->ieee_rates);
4146
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004147 return 0;
4148
4149err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08004150 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004151err:
4152 return ret;
4153}
4154
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004155static int iwl3945_setup_mac(struct iwl_priv *priv)
4156{
4157 int ret;
4158 struct ieee80211_hw *hw = priv->hw;
4159
4160 hw->rate_control_algorithm = "iwl-3945-rs";
4161 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
4162
4163 /* Tell mac80211 our characteristics */
4164 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07004165 IEEE80211_HW_NOISE_DBM |
4166 IEEE80211_HW_SPECTRUM_MGMT;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004167
4168 hw->wiphy->interface_modes =
4169 BIT(NL80211_IFTYPE_STATION) |
4170 BIT(NL80211_IFTYPE_ADHOC);
4171
4172 hw->wiphy->custom_regulatory = true;
4173
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07004174 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
4175 /* we create the 802.11 header and a zero-length SSID element */
4176 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02004177
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004178 /* Default value; 4 EDCA QOS priorities */
4179 hw->queues = 4;
4180
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004181 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4182 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4183 &priv->bands[IEEE80211_BAND_2GHZ];
4184
4185 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4186 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4187 &priv->bands[IEEE80211_BAND_5GHZ];
4188
4189 ret = ieee80211_register_hw(priv->hw);
4190 if (ret) {
4191 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
4192 return ret;
4193 }
4194 priv->mac80211_registered = 1;
4195
4196 return 0;
4197}
4198
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004199static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004200{
4201 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004202 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004203 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08004204 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08004205 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004206 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004207
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004208 /***********************
4209 * 1. Allocating HW data
4210 * ********************/
4211
Zhu Yib481de92007-09-25 17:54:57 -07004212 /* mac80211 allocates memory for this device instance, including
4213 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004214 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07004215 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004216 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07004217 err = -ENOMEM;
4218 goto out;
4219 }
Zhu Yib481de92007-09-25 17:54:57 -07004220 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004221 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004222
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004223 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
4224 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004225 IWL_ERR(priv,
4226 "invalid queues_num, should be between %d and %d\n",
4227 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08004228 err = -EINVAL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004229 goto out_ieee80211_free_hw;
Samuel Ortiza3139c52008-12-19 10:37:09 +08004230 }
4231
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004232 /*
4233 * Disabling hardware scan means that mac80211 will perform scans
4234 * "the hard way", rather than using device's scan.
4235 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004236 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08004237 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004238 iwl3945_hw_ops.hw_scan = NULL;
4239 }
4240
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004241
Tomas Winklere1623442009-01-27 14:27:56 -08004242 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004243 priv->cfg = cfg;
4244 priv->pci_dev = pdev;
4245
Samuel Ortizd08853a2009-01-23 13:45:17 -08004246#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004247 priv->debug_level = iwl3945_mod_params.debug;
4248 atomic_set(&priv->restrict_refcnt, 0);
4249#endif
Zhu Yib481de92007-09-25 17:54:57 -07004250
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004251 /***************************
4252 * 2. Initializing PCI bus
4253 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07004254 if (pci_enable_device(pdev)) {
4255 err = -ENODEV;
4256 goto out_ieee80211_free_hw;
4257 }
4258
4259 pci_set_master(pdev);
4260
Yang Hongyang284901a2009-04-06 19:01:15 -07004261 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004262 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07004263 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004264 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004265 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004266 goto out_pci_disable_device;
4267 }
4268
4269 pci_set_drvdata(pdev, priv);
4270 err = pci_request_regions(pdev, DRV_NAME);
4271 if (err)
4272 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004273
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004274 /***********************
4275 * 3. Read REV Register
4276 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07004277 priv->hw_base = pci_iomap(pdev, 0, 0);
4278 if (!priv->hw_base) {
4279 err = -ENODEV;
4280 goto out_pci_release_regions;
4281 }
4282
Tomas Winklere1623442009-01-27 14:27:56 -08004283 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07004284 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004285 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07004286
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004287 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4288 * PCI Tx retries from interfering with C3 CPU state */
4289 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07004290
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004291 /* amp init */
4292 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004293 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07004294 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004295 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004296 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004297
4298 /***********************
4299 * 4. Read EEPROM
4300 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004301
Zhu Yi5a669262008-01-14 17:46:18 -08004302 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004303 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004304 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004305 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004306 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004307 }
4308 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004309 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4310 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004311 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08004312 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4313
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004314 /***********************
4315 * 5. Setup HW Constants
4316 * ********************/
4317 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004318 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004319 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004320 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004321 }
4322
4323 /***********************
4324 * 6. Setup priv
4325 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004326
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004327 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004328 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004329 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004330 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004331 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004332
Tomas Winkler978785a2008-12-19 10:37:31 +08004333 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4334 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004335
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004336 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004337 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004338 * ********************/
4339
4340 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004341 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004342 spin_unlock_irqrestore(&priv->lock, flags);
4343
Helmut Schaa26635162009-01-15 09:38:44 +01004344 pci_enable_msi(priv->pci_dev);
4345
Abhijeet Kolekarf17d08a2009-02-18 15:54:31 -08004346 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
Helmut Schaa26635162009-01-15 09:38:44 +01004347 DRV_NAME, priv);
4348 if (err) {
4349 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4350 goto out_disable_msi;
4351 }
4352
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004353 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4354 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004355 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004356 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004357 }
4358
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004359 iwl_set_rxon_channel(priv,
4360 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004361 iwl3945_setup_deferred_work(priv);
4362 iwl3945_setup_rx_handlers(priv);
4363
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004364 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004365 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004366 * *******************************/
4367
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004368 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004369
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004370 err = iwl3945_setup_mac(priv);
4371 if (err)
4372 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004373
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004374 err = iwl_dbgfs_register(priv, DRV_NAME);
4375 if (err)
4376 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4377
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004378 err = iwl_rfkill_init(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004379 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004380 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004381 "Ignoring error: %d\n", err);
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004382 else
4383 iwl_rfkill_set_hw_state(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004384
Helmut Schaa26635162009-01-15 09:38:44 +01004385 /* Start monitoring the killswitch */
4386 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4387 2 * HZ);
4388
Zhu Yib481de92007-09-25 17:54:57 -07004389 return 0;
4390
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004391 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004392 destroy_workqueue(priv->workqueue);
4393 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004394 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4395 out_release_irq:
4396 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004397 out_disable_msi:
4398 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004399 iwlcore_free_geos(priv);
4400 iwl_free_channel_map(priv);
4401 out_unset_hw_params:
4402 iwl3945_unset_hw_params(priv);
4403 out_eeprom_free:
4404 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004405 out_iounmap:
4406 pci_iounmap(pdev, priv->hw_base);
4407 out_pci_release_regions:
4408 pci_release_regions(pdev);
4409 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004410 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004411 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004412 out_ieee80211_free_hw:
4413 ieee80211_free_hw(priv->hw);
4414 out:
4415 return err;
4416}
4417
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004418static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004419{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004420 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004421 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004422
4423 if (!priv)
4424 return;
4425
Tomas Winklere1623442009-01-27 14:27:56 -08004426 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004427
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004428 iwl_dbgfs_unregister(priv);
4429
Zhu Yib481de92007-09-25 17:54:57 -07004430 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004431
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004432 if (priv->mac80211_registered) {
4433 ieee80211_unregister_hw(priv->hw);
4434 priv->mac80211_registered = 0;
4435 } else {
4436 iwl3945_down(priv);
4437 }
Zhu Yib481de92007-09-25 17:54:57 -07004438
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004439 /* make sure we flush any pending irq or
4440 * tasklet for the driver
4441 */
4442 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004443 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004444 spin_unlock_irqrestore(&priv->lock, flags);
4445
4446 iwl_synchronize_irq(priv);
4447
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004448 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004449
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004450 iwl_rfkill_unregister(priv);
Reinette Chatre71d449b2009-04-20 14:37:01 -07004451 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004452
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004453 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004454
4455 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004456 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004457 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004458
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004459 iwl3945_unset_hw_params(priv);
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07004460 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004461
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004462 /*netif_stop_queue(dev); */
4463 flush_workqueue(priv->workqueue);
4464
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004465 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004466 * priv->workqueue... so we can't take down the workqueue
4467 * until now... */
4468 destroy_workqueue(priv->workqueue);
4469 priv->workqueue = NULL;
4470
Helmut Schaa26635162009-01-15 09:38:44 +01004471 free_irq(pdev->irq, priv);
4472 pci_disable_msi(pdev);
4473
Zhu Yib481de92007-09-25 17:54:57 -07004474 pci_iounmap(pdev, priv->hw_base);
4475 pci_release_regions(pdev);
4476 pci_disable_device(pdev);
4477 pci_set_drvdata(pdev, NULL);
4478
Samuel Ortize6148912009-01-23 13:45:15 -08004479 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004480 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004481 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004482 if (priv->ibss_beacon)
4483 dev_kfree_skb(priv->ibss_beacon);
4484
4485 ieee80211_free_hw(priv->hw);
4486}
4487
Zhu Yib481de92007-09-25 17:54:57 -07004488
4489/*****************************************************************************
4490 *
4491 * driver and module entry point
4492 *
4493 *****************************************************************************/
4494
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004495static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004496 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004497 .id_table = iwl3945_hw_card_ids,
4498 .probe = iwl3945_pci_probe,
4499 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004500#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004501 .suspend = iwl_pci_suspend,
4502 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004503#endif
4504};
4505
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004506static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004507{
4508
4509 int ret;
4510 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4511 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004512
4513 ret = iwl3945_rate_control_register();
4514 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004515 printk(KERN_ERR DRV_NAME
4516 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004517 return ret;
4518 }
4519
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004520 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004521 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004522 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004523 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004524 }
Zhu Yib481de92007-09-25 17:54:57 -07004525
4526 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004527
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004528error_register:
4529 iwl3945_rate_control_unregister();
4530 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004531}
4532
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004533static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004534{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004535 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004536 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004537}
4538
Reinette Chatrea0987a82008-12-02 12:14:06 -08004539MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004540
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004541module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004542MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004543module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4544MODULE_PARM_DESC(swcrypto,
4545 "using software crypto (default 1 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004546module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004547MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004548module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004549MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
4550
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004551module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004552MODULE_PARM_DESC(queues_num, "number of hw queues.");
4553
Samuel Ortizaf48d042009-01-23 13:45:19 -08004554module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4555MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4556
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004557module_exit(iwl3945_exit);
4558module_init(iwl3945_init);