blob: 271e5d1f8425e50b291cf9ca87f9e162b770d00e [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080054#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-3945.h"
56#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080058#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070059
Zhu Yib481de92007-09-25 17:54:57 -070060/*
61 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070062 */
63
64#define DRV_DESCRIPTION \
65"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
66
Samuel Ortizd08853a2009-01-23 13:45:17 -080067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070068#define VD "d"
69#else
70#define VD
71#endif
72
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080073#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070074#define VS "s"
75#else
76#define VS
77#endif
78
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080079#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatre01f81622009-01-08 10:20:02 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080082#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
89
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080090 /* module parameters */
91struct iwl_mod_params iwl3945_mod_params = {
92 .num_of_queues = IWL39_MAX_NUM_QUEUES,
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080093 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080094 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080095 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080099 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700100 * the functionality provided here
101 */
102
103/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800104#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800105/**
106 * iwl3945_remove_station - Remove driver's knowledge of station.
107 *
108 * NOTE: This does not remove station from device's station table.
109 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800110static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700111{
112 int index = IWL_INVALID_STATION;
113 int i;
114 unsigned long flags;
115
116 spin_lock_irqsave(&priv->sta_lock, flags);
117
118 if (is_ap)
119 index = IWL_AP_ID;
120 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800121 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700122 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800123 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800124 if (priv->stations_39[i].used &&
125 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700126 addr)) {
127 index = i;
128 break;
129 }
130
131 if (unlikely(index == IWL_INVALID_STATION))
132 goto out;
133
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800134 if (priv->stations_39[index].used) {
135 priv->stations_39[index].used = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700136 priv->num_stations--;
137 }
138
139 BUG_ON(priv->num_stations < 0);
140
141out:
142 spin_unlock_irqrestore(&priv->sta_lock, flags);
143 return 0;
144}
Zhu Yi556f8db2007-09-27 11:27:33 +0800145#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800146
147/**
148 * iwl3945_clear_stations_table - Clear the driver's station table
149 *
150 * NOTE: This does not clear or otherwise alter the device's station table.
151 */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -0700152void iwl3945_clear_stations_table(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700153{
154 unsigned long flags;
155
156 spin_lock_irqsave(&priv->sta_lock, flags);
157
158 priv->num_stations = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800159 memset(priv->stations_39, 0, sizeof(priv->stations_39));
Zhu Yib481de92007-09-25 17:54:57 -0700160
161 spin_unlock_irqrestore(&priv->sta_lock, flags);
162}
163
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800164/**
165 * iwl3945_add_station - Add station to station tables in driver and device
166 */
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -0700167u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags, struct ieee80211_sta_ht_cap *ht_info)
Zhu Yib481de92007-09-25 17:54:57 -0700168{
169 int i;
170 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800171 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700172 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800173 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700174
175 spin_lock_irqsave(&priv->sta_lock, flags_spin);
176 if (is_ap)
177 index = IWL_AP_ID;
178 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800179 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700180 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800181 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800182 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700183 addr)) {
184 index = i;
185 break;
186 }
187
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800188 if (!priv->stations_39[i].used &&
Zhu Yib481de92007-09-25 17:54:57 -0700189 index == IWL_INVALID_STATION)
190 index = i;
191 }
192
Ian Schram01ebd062007-10-25 17:15:22 +0800193 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700194 since they have different meaning */
195 if (unlikely(index == IWL_INVALID_STATION)) {
196 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
197 return index;
198 }
199
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800200 if (priv->stations_39[index].used &&
201 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
Zhu Yib481de92007-09-25 17:54:57 -0700202 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
203 return index;
204 }
205
Tomas Winklere1623442009-01-27 14:27:56 -0800206 IWL_DEBUG_ASSOC(priv, "Add STA ID %d: %pM\n", index, addr);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800207 station = &priv->stations_39[index];
Zhu Yib481de92007-09-25 17:54:57 -0700208 station->used = 1;
209 priv->num_stations++;
210
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800211 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800212 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700213 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
214 station->sta.mode = 0;
215 station->sta.sta.sta_id = index;
216 station->sta.station_flags = 0;
217
Johannes Berg8318d782008-01-24 19:38:38 +0100218 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800219 rate = IWL_RATE_6M_PLCP;
220 else
221 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800222
223 /* Turn on both antennas for the station... */
224 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800225 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800226
Zhu Yib481de92007-09-25 17:54:57 -0700227 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800228
229 /* Add station to device's station table */
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800230 iwl_send_add_sta(priv,
231 (struct iwl_addsta_cmd *)&station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700232 return index;
233
234}
235
Zhu Yib481de92007-09-25 17:54:57 -0700236/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -0800237 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
238 * @priv: eeprom and antenna fields are used to determine antenna flags
239 *
240 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
241 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
242 *
243 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
244 * IWL_ANTENNA_MAIN - Force MAIN antenna
245 * IWL_ANTENNA_AUX - Force AUX antenna
246 */
247__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
248{
249 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
250
251 switch (iwl3945_mod_params.antenna) {
252 case IWL_ANTENNA_DIVERSITY:
253 return 0;
254
255 case IWL_ANTENNA_MAIN:
256 if (eeprom->antenna_switch_type)
257 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
258 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
259
260 case IWL_ANTENNA_AUX:
261 if (eeprom->antenna_switch_type)
262 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
263 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
264 }
265
266 /* bad antenna selector value */
267 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
268 iwl3945_mod_params.antenna);
269
270 return 0; /* "diversity" is default if error */
271}
272
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800273static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700274 struct ieee80211_key_conf *keyconf,
275 u8 sta_id)
276{
277 unsigned long flags;
278 __le16 key_flags = 0;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800279 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700280
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800281 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
282 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
283
284 if (sta_id == priv->hw_params.bcast_sta_id)
285 key_flags |= STA_KEY_MULTICAST_MSK;
286
287 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
288 keyconf->hw_key_idx = keyconf->keyidx;
289 key_flags &= ~STA_KEY_FLG_INVALID;
290
Zhu Yib481de92007-09-25 17:54:57 -0700291 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800292 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
293 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
294 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700295 keyconf->keylen);
296
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800297 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700298 keyconf->keylen);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800299
Abhijeet Kolekar43da9192009-03-17 21:51:53 -0700300 if ((priv->stations_39[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800301 == STA_KEY_FLG_NO_ENC)
Abhijeet Kolekar43da9192009-03-17 21:51:53 -0700302 priv->stations_39[sta_id].sta.key.key_offset =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800303 iwl_get_free_ucode_key_index(priv);
304 /* else, we are overriding an existing key => no need to allocated room
305 * in uCode. */
306
Abhijeet Kolekar43da9192009-03-17 21:51:53 -0700307 WARN(priv->stations_39[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800308 "no space for a new key");
309
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800310 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
311 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
312 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700313
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800314 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
315
316 ret = iwl_send_add_sta(priv,
317 (struct iwl_addsta_cmd *)&priv->stations_39[sta_id].sta, CMD_ASYNC);
318
Zhu Yib481de92007-09-25 17:54:57 -0700319 spin_unlock_irqrestore(&priv->sta_lock, flags);
320
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800321 return ret;
322}
323
324static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
325 struct ieee80211_key_conf *keyconf,
326 u8 sta_id)
327{
328 return -EOPNOTSUPP;
329}
330
331static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
332 struct ieee80211_key_conf *keyconf,
333 u8 sta_id)
334{
335 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -0700336}
337
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800338static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700339{
340 unsigned long flags;
341
342 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800343 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
344 memset(&priv->stations_39[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800345 sizeof(struct iwl4965_keyinfo));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800346 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
347 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
348 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700349 spin_unlock_irqrestore(&priv->sta_lock, flags);
350
Tomas Winklere1623442009-01-27 14:27:56 -0800351 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800352 iwl_send_add_sta(priv,
353 (struct iwl_addsta_cmd *)&priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700354 return 0;
355}
356
Abhijeet Kolekarfa11d522009-03-11 11:17:54 -0700357static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800358 struct ieee80211_key_conf *keyconf, u8 sta_id)
359{
360 int ret = 0;
361
362 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
363
364 switch (keyconf->alg) {
365 case ALG_CCMP:
366 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
367 break;
368 case ALG_TKIP:
369 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
370 break;
371 case ALG_WEP:
372 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
373 break;
374 default:
Abhijeet Kolekar1e680232009-03-17 21:51:50 -0700375 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800376 ret = -EINVAL;
377 }
378
379 IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
380 keyconf->alg, keyconf->keylen, keyconf->keyidx,
381 sta_id, ret);
382
383 return ret;
384}
385
386static int iwl3945_remove_static_key(struct iwl_priv *priv)
387{
388 int ret = -EOPNOTSUPP;
389
390 return ret;
391}
392
393static int iwl3945_set_static_key(struct iwl_priv *priv,
394 struct ieee80211_key_conf *key)
395{
396 if (key->alg == ALG_WEP)
397 return -EOPNOTSUPP;
398
399 IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
400 return -EINVAL;
401}
402
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800403static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700404{
405 struct list_head *element;
406
Tomas Winklere1623442009-01-27 14:27:56 -0800407 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700408 priv->frames_count);
409
410 while (!list_empty(&priv->free_frames)) {
411 element = priv->free_frames.next;
412 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800413 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700414 priv->frames_count--;
415 }
416
417 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800418 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700419 priv->frames_count);
420 priv->frames_count = 0;
421 }
422}
423
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800424static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700425{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800426 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700427 struct list_head *element;
428 if (list_empty(&priv->free_frames)) {
429 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
430 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800431 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700432 return NULL;
433 }
434
435 priv->frames_count++;
436 return frame;
437 }
438
439 element = priv->free_frames.next;
440 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800441 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700442}
443
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800444static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700445{
446 memset(frame, 0, sizeof(*frame));
447 list_add(&frame->list, &priv->free_frames);
448}
449
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800450unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700451 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200452 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700453{
454
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800455 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200456 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
457 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700458 return 0;
459
460 if (priv->ibss_beacon->len > left)
461 return 0;
462
463 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
464
465 return priv->ibss_beacon->len;
466}
467
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800468static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700469{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800470 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700471 unsigned int frame_size;
472 int rc;
473 u8 rate;
474
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800475 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700476
477 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800478 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700479 "command.\n");
480 return -ENOMEM;
481 }
482
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800483 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800485 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700486
Samuel Ortiz518099a2009-01-19 15:30:27 -0800487 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700488 &frame->u.cmd[0]);
489
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800490 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700491
492 return rc;
493}
494
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800495static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700496{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800497 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700498 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800499 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800500 priv->shared_virt,
501 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700502}
503
Zhu Yib481de92007-09-25 17:54:57 -0700504#define MAX_UCODE_BEACON_INTERVAL 1024
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800505#define INTEL_CONN_LISTEN_INTERVAL cpu_to_le16(0xA)
Zhu Yib481de92007-09-25 17:54:57 -0700506
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800507static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700508{
509 u16 new_val = 0;
510 u16 beacon_factor = 0;
511
512 beacon_factor =
513 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
514 / MAX_UCODE_BEACON_INTERVAL;
515 new_val = beacon_val / beacon_factor;
516
517 return cpu_to_le16(new_val);
518}
519
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800520static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700521{
522 u64 interval_tm_unit;
523 u64 tsf, result;
524 unsigned long flags;
525 struct ieee80211_conf *conf = NULL;
526 u16 beacon_int = 0;
527
528 conf = ieee80211_get_hw_conf(priv->hw);
529
530 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler28afaf92008-12-19 10:37:06 +0800531 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -0700532 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
533
Tomas Winkler28afaf92008-12-19 10:37:06 +0800534 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -0700535
536 beacon_int = priv->beacon_int;
537 spin_unlock_irqrestore(&priv->lock, flags);
538
Johannes Berg05c914f2008-09-11 00:01:58 +0200539 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -0700540 if (beacon_int == 0) {
541 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
542 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
543 } else {
544 priv->rxon_timing.beacon_interval =
545 cpu_to_le16(beacon_int);
546 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800547 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -0700548 le16_to_cpu(priv->rxon_timing.beacon_interval));
549 }
550
551 priv->rxon_timing.atim_window = 0;
552 } else {
553 priv->rxon_timing.beacon_interval =
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;
Ivo van Doorn1c014422008-04-17 19:41:02 +0200581 struct iwl3945_hw_key *keyinfo =
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800582 &priv->stations_39[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700583
584 switch (keyinfo->alg) {
585 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800586 tx->sec_ctl = TX_CMD_SEC_CCM;
587 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800588 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700589 break;
590
591 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -0700592 break;
593
594 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800595 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200596 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700597
598 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800599 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700600
Winkler, Tomase52119c2008-12-22 11:31:19 +0800601 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700602
Tomas Winklere1623442009-01-27 14:27:56 -0800603 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200604 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700605 break;
606
Zhu Yib481de92007-09-25 17:54:57 -0700607 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800608 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700609 break;
610 }
611}
612
613/*
614 * handle build REPLY_TX command notification.
615 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800616static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800617 struct iwl_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200618 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800619 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700620{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800621 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
622 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700623 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200624 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -0700625
Winkler, Tomase52119c2008-12-22 11:31:19 +0800626 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200627 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700628 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700629 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700630 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700631 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700632 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
633 tx_flags |= TX_CMD_FLG_TSF_MSK;
634 } else {
635 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
636 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
637 }
638
Winkler, Tomase52119c2008-12-22 11:31:19 +0800639 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700640 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700641 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
642
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700643 if (ieee80211_is_data_qos(fc)) {
644 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800645 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700646 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800647 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700648 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800649 }
Zhu Yib481de92007-09-25 17:54:57 -0700650
Johannes Berge6a98542008-10-21 12:40:02 +0200651 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -0700652 tx_flags |= TX_CMD_FLG_RTS_MSK;
653 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +0200654 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -0700655 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
656 tx_flags |= TX_CMD_FLG_CTS_MSK;
657 }
658
659 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
660 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
661
662 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700663 if (ieee80211_is_mgmt(fc)) {
664 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +0800665 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700666 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800667 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700668 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +0800669 tx->timeout.pm_frame_timeout = 0;
Abhijeet Kolekar5c8df2d2009-03-11 11:17:55 -0700670#ifdef CONFIG_IWLWIFI_LEDS
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700671 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
672#endif
673 }
Zhu Yib481de92007-09-25 17:54:57 -0700674
Winkler, Tomase52119c2008-12-22 11:31:19 +0800675 tx->driver_txop = 0;
676 tx->tx_flags = tx_flags;
677 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700678}
679
Zhu Yib481de92007-09-25 17:54:57 -0700680/*
681 * start REPLY_TX command process
682 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800683static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700684{
685 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200686 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800687 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800688 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800689 struct iwl_queue *q = NULL;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800690 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700691 dma_addr_t phys_addr;
692 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800693 int txq_id = skb_get_queue_mapping(skb);
Reinette Chatredf833b12009-04-21 10:55:48 -0700694 u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
Tomas Winkler54dbb522008-05-15 13:54:06 +0800695 u8 id;
696 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700697 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800698 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700699 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700700 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700701 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800702 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700703 unsigned long flags;
704 int rc;
705
706 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800707 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800708 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700709 goto drop_unlock;
710 }
711
Johannes Berge039fa42008-05-15 12:55:29 +0200712 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800713 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700714 goto drop_unlock;
715 }
716
717 unicast = !is_multicast_ether_addr(hdr->addr1);
718 id = 0;
719
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700720 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700721
Samuel Ortizd08853a2009-01-23 13:45:17 -0800722#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700723 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800724 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700725 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800726 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700727 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800728 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700729#endif
730
Mohamed Abbas7878a5a2007-11-29 11:10:13 +0800731 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800732 if (ieee80211_is_data(fc) &&
Wey-Yi Guy279b05d2009-04-20 14:37:00 -0700733 (!iwl_is_monitor_mode(priv)) && /* packet injection */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800734 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200735 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800736 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700737 goto drop_unlock;
738 }
739
740 spin_unlock_irqrestore(&priv->lock, flags);
741
Harvey Harrison7294ec92008-07-15 18:43:59 -0700742 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800743
744 /* Find (or create) index into station table for destination station */
Abhijeet Kolekarf5d30262009-04-08 11:26:43 -0700745 sta_id = iwl_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -0700746 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -0800747 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700748 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700749 goto drop;
750 }
751
Tomas Winklere1623442009-01-27 14:27:56 -0800752 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -0700753
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700754 if (ieee80211_is_data_qos(fc)) {
755 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700756 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800757 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -0700758 IEEE80211_SCTL_SEQ;
759 hdr->seq_ctrl = cpu_to_le16(seq_number) |
760 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800761 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -0700762 seq_number += 0x10;
763 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800764
765 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800766 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -0700767 q = &txq->q;
768
769 spin_lock_irqsave(&priv->lock, flags);
770
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800771 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700772
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800773 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800774 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800775 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800776
777 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800778 out_cmd = txq->cmd[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +0800779 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -0700780 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +0800781 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800782
783 /*
784 * Set up the Tx-command (not MAC!) header.
785 * Store the chosen Tx queue and TFD index within the sequence field;
786 * after Tx, uCode's Tx response will return this value so driver can
787 * locate the frame within the tx queue and do post-tx processing.
788 */
Zhu Yib481de92007-09-25 17:54:57 -0700789 out_cmd->hdr.cmd = REPLY_TX;
790 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800791 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800792
793 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +0800794 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -0700795
Reinette Chatredf833b12009-04-21 10:55:48 -0700796
797 if (info->control.hw_key)
798 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
799
800 /* TODO need this for burst mode later on */
801 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
802
803 /* set is_hcca to 0; it probably will never be implemented */
804 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
805
806 /* Total # bytes to be transmitted */
807 len = (u16)skb->len;
808 tx->len = cpu_to_le16(len);
809
810
811 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
812 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
813
814 if (!ieee80211_has_morefrags(hdr->frame_control)) {
815 txq->need_update = 1;
816 if (qc)
817 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
818 } else {
819 wait_write_ptr = 1;
820 txq->need_update = 0;
821 }
822
823 IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
824 le16_to_cpu(out_cmd->hdr.sequence));
825 IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags));
826 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
827 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
828 ieee80211_hdrlen(fc));
829
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800830 /*
831 * Use the first empty entry in this queue's command buffer array
832 * to contain the Tx command and MAC header concatenated together
833 * (payload data will be in another buffer).
834 * Size of this varies, due to varying MAC header length.
835 * If end is not dword aligned, we'll have 2 extra bytes at the end
836 * of the MAC header (device reads on dword boundaries).
837 * We'll tell device about this padding later.
838 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800839 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +0800840 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -0700841
842 len_org = len;
843 len = (len + 3) & ~3;
844
845 if (len_org != len)
846 len_org = 1;
847 else
848 len_org = 0;
849
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800850 /* Physical address of this Tx command's header (not MAC header!),
851 * within command buffer array. */
Reinette Chatredf833b12009-04-21 10:55:48 -0700852 txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
853 len, PCI_DMA_TODEVICE);
854 /* we do not map meta data ... so we can safely access address to
855 * provide to unmap command*/
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800856 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
Reinette Chatredf833b12009-04-21 10:55:48 -0700857 pci_unmap_len_set(&out_cmd->meta, len, len);
Zhu Yib481de92007-09-25 17:54:57 -0700858
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800859 /* Add buffer containing Tx command and MAC(!) header to TFD's
860 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800861 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
862 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700863
Zhu Yib481de92007-09-25 17:54:57 -0700864
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800865 /* Set up TFD's 2nd entry to point directly to remainder of skb,
866 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -0700867 len = skb->len - hdr_len;
868 if (len) {
869 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
870 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800871 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
872 phys_addr, len,
873 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -0700874 }
875
Zhu Yib481de92007-09-25 17:54:57 -0700876
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800877 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800878 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800879 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700880 spin_unlock_irqrestore(&priv->lock, flags);
881
882 if (rc)
883 return rc;
884
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800885 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -0700886 && priv->mac80211_registered) {
887 if (wait_write_ptr) {
888 spin_lock_irqsave(&priv->lock, flags);
889 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -0800890 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700891 spin_unlock_irqrestore(&priv->lock, flags);
892 }
893
Johannes Berge4e72fb2009-03-23 17:28:42 +0100894 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -0700895 }
896
897 return 0;
898
899drop_unlock:
900 spin_unlock_irqrestore(&priv->lock, flags);
901drop:
902 return -1;
903}
904
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800905#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700906
907#include "iwl-spectrum.h"
908
909#define BEACON_TIME_MASK_LOW 0x00FFFFFF
910#define BEACON_TIME_MASK_HIGH 0xFF000000
911#define TIME_UNIT 1024
912
913/*
914 * extended beacon time format
915 * time in usec will be changed into a 32-bit value in 8:24 format
916 * the high 1 byte is the beacon counts
917 * the lower 3 bytes is the time in usec within one beacon interval
918 */
919
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800920static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700921{
922 u32 quot;
923 u32 rem;
924 u32 interval = beacon_interval * 1024;
925
926 if (!interval || !usec)
927 return 0;
928
929 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
930 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
931
932 return (quot << 24) + rem;
933}
934
935/* base is usually what we get from ucode with each received frame,
936 * the same as HW timer counter counting down
937 */
938
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800939static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700940{
941 u32 base_low = base & BEACON_TIME_MASK_LOW;
942 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
943 u32 interval = beacon_interval * TIME_UNIT;
944 u32 res = (base & BEACON_TIME_MASK_HIGH) +
945 (addon & BEACON_TIME_MASK_HIGH);
946
947 if (base_low > addon_low)
948 res += base_low - addon_low;
949 else if (base_low < addon_low) {
950 res += interval + base_low - addon_low;
951 res += (1 << 24);
952 } else
953 res += (1 << 24);
954
955 return cpu_to_le32(res);
956}
957
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800958static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700959 struct ieee80211_measurement_params *params,
960 u8 type)
961{
Tomas Winkler600c0e12008-12-19 10:37:04 +0800962 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800963 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800964 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700965 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
966 .data = (void *)&spectrum,
967 .meta.flags = CMD_WANT_SKB,
968 };
969 u32 add_time = le64_to_cpu(params->start_time);
970 int rc;
971 int spectrum_resp_status;
972 int duration = le16_to_cpu(params->duration);
973
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800974 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700975 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800976 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700977 le64_to_cpu(params->start_time) - priv->last_tsf,
978 le16_to_cpu(priv->rxon_timing.beacon_interval));
979
980 memset(&spectrum, 0, sizeof(spectrum));
981
982 spectrum.channel_count = cpu_to_le16(1);
983 spectrum.flags =
984 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
985 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
986 cmd.len = sizeof(spectrum);
987 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
988
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800989 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700990 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800991 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700992 add_time,
993 le16_to_cpu(priv->rxon_timing.beacon_interval));
994 else
995 spectrum.start_time = 0;
996
997 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
998 spectrum.channels[0].channel = params->channel;
999 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001000 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07001001 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
1002 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
1003
Samuel Ortiz518099a2009-01-19 15:30:27 -08001004 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001005 if (rc)
1006 return rc;
1007
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001008 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001009 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001010 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07001011 rc = -EIO;
1012 }
1013
1014 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
1015 switch (spectrum_resp_status) {
1016 case 0: /* Command will be handled */
1017 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -08001018 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +08001019 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07001020 priv->measurement_status &= ~MEASUREMENT_READY;
1021 }
1022 priv->measurement_status |= MEASUREMENT_ACTIVE;
1023 rc = 0;
1024 break;
1025
1026 case 1: /* Command will not be handled */
1027 rc = -EAGAIN;
1028 break;
1029 }
1030
1031 dev_kfree_skb_any(cmd.meta.u.skb);
1032
1033 return rc;
1034}
1035#endif
1036
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001037static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001038 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001039{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001040 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
1041 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07001042 struct delayed_work *pwork;
1043
1044 palive = &pkt->u.alive_frame;
1045
Tomas Winklere1623442009-01-27 14:27:56 -08001046 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -07001047 "0x%01X 0x%01X\n",
1048 palive->is_valid, palive->ver_type,
1049 palive->ver_subtype);
1050
1051 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001052 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001053 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
1054 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001055 pwork = &priv->init_alive_start;
1056 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08001057 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001058 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001059 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001060 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001061 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001062 }
1063
1064 /* We delay the ALIVE response by 5ms to
1065 * give the HW RF Kill time to activate... */
1066 if (palive->is_valid == UCODE_VALID_OK)
1067 queue_delayed_work(priv->workqueue, pwork,
1068 msecs_to_jiffies(5));
1069 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001070 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001071}
1072
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001073static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001074 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001075{
Helmut Schaac7e035a2009-01-19 13:02:15 +01001076#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001077 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +01001078#endif
Zhu Yib481de92007-09-25 17:54:57 -07001079
Tomas Winklere1623442009-01-27 14:27:56 -08001080 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -07001081 return;
1082}
1083
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001084static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001085{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001086 struct iwl_priv *priv =
1087 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001088 struct sk_buff *beacon;
1089
1090 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001091 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001092
1093 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001094 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001095 return;
1096 }
1097
1098 mutex_lock(&priv->mutex);
1099 /* new beacon skb is allocated every time; dispose previous.*/
1100 if (priv->ibss_beacon)
1101 dev_kfree_skb(priv->ibss_beacon);
1102
1103 priv->ibss_beacon = beacon;
1104 mutex_unlock(&priv->mutex);
1105
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001106 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001107}
1108
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001109static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001110 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001111{
Samuel Ortizd08853a2009-01-23 13:45:17 -08001112#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001113 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001114 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07001115 u8 rate = beacon->beacon_notify_hdr.rate;
1116
Tomas Winklere1623442009-01-27 14:27:56 -08001117 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -07001118 "tsf %d %d rate %d\n",
1119 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
1120 beacon->beacon_notify_hdr.failure_frame,
1121 le32_to_cpu(beacon->ibss_mgr_status),
1122 le32_to_cpu(beacon->high_tsf),
1123 le32_to_cpu(beacon->low_tsf), rate);
1124#endif
1125
Johannes Berg05c914f2008-09-11 00:01:58 +02001126 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07001127 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1128 queue_work(priv->workqueue, &priv->beacon_update);
1129}
1130
Zhu Yib481de92007-09-25 17:54:57 -07001131/* Handle notification from uCode that card's power state is changing
1132 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001133static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001134 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001135{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001136 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001137 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1138 unsigned long status = priv->status;
1139
Tomas Winklere1623442009-01-27 14:27:56 -08001140 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -07001141 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1142 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1143
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001144 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001145 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1146
1147 if (flags & HW_CARD_DISABLED)
1148 set_bit(STATUS_RF_KILL_HW, &priv->status);
1149 else
1150 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1151
1152
1153 if (flags & SW_CARD_DISABLED)
1154 set_bit(STATUS_RF_KILL_SW, &priv->status);
1155 else
1156 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1157
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08001158 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001159
1160 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1161 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1162 (test_bit(STATUS_RF_KILL_SW, &status) !=
1163 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1164 queue_work(priv->workqueue, &priv->rf_kill);
1165 else
1166 wake_up_interruptible(&priv->wait_command_queue);
1167}
1168
1169/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001170 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001171 *
1172 * Setup the RX handlers for each of the reply types sent from the uCode
1173 * to the host.
1174 *
1175 * This function chains into the hardware specific files for them to setup
1176 * any hardware specific handlers as well.
1177 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001178static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001179{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001180 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
1181 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001182 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001183 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001184 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001185 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001186 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001187 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001188
Ben Cahill9fbab512007-11-29 11:09:47 +08001189 /*
1190 * The same handler is used for both the REPLY to a discrete
1191 * statistics request from the host as well as for the periodic
1192 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001193 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001194 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
1195 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07001196
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001197 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -08001198 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001199 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001200
Ben Cahill9fbab512007-11-29 11:09:47 +08001201 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001202 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001203}
1204
Zhu Yib481de92007-09-25 17:54:57 -07001205/************************** RX-FUNCTIONS ****************************/
1206/*
1207 * Rx theory of operation
1208 *
1209 * The host allocates 32 DMA target addresses and passes the host address
1210 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
1211 * 0 to 31
1212 *
1213 * Rx Queue Indexes
1214 * The host/firmware share two index registers for managing the Rx buffers.
1215 *
1216 * The READ index maps to the first position that the firmware may be writing
1217 * to -- the driver can read up to (but not including) this position and get
1218 * good data.
1219 * The READ index is managed by the firmware once the card is enabled.
1220 *
1221 * The WRITE index maps to the last position the driver has read from -- the
1222 * position preceding WRITE is the last slot the firmware can place a packet.
1223 *
1224 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1225 * WRITE = READ.
1226 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001227 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001228 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1229 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001230 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001231 * and fire the RX interrupt. The driver can then query the READ index and
1232 * process as many packets as possible, moving the WRITE index forward as it
1233 * resets the Rx queue buffers with new memory.
1234 *
1235 * The management in the driver is as follows:
1236 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1237 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001238 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001239 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001240 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1241 * 'processed' and 'read' driver indexes as well)
1242 * + A received packet is processed and handed to the kernel network stack,
1243 * detached from the iwl->rxq. The driver 'processed' index is updated.
1244 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1245 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1246 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1247 * were enough free buffers and RX_STALLED is set it is cleared.
1248 *
1249 *
1250 * Driver sequence:
1251 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001252 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001253 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001254 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001255 * queue, updates firmware pointers, and updates
1256 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001257 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001258 *
1259 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001260 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001261 * READ INDEX, detaching the SKB from the pool.
1262 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001263 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001264 * slots.
1265 * ...
1266 *
1267 */
1268
1269/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001270 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001271 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001272static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001273 dma_addr_t dma_addr)
1274{
1275 return cpu_to_le32((u32)dma_addr);
1276}
1277
1278/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001279 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001280 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001281 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001282 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001283 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001284 *
1285 * This moves the 'write' index forward to catch up with 'processed', and
1286 * also updates the memory address in the firmware to reference the new
1287 * target buffer.
1288 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001289static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001290{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001291 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001292 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001293 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001294 unsigned long flags;
1295 int write, rc;
1296
1297 spin_lock_irqsave(&rxq->lock, flags);
1298 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001299 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001300 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001301 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001302 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001303 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001304
1305 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001306 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001307 rxq->queue[rxq->write] = rxb;
1308 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1309 rxq->free_count--;
1310 }
1311 spin_unlock_irqrestore(&rxq->lock, flags);
1312 /* If the pre-allocated buffer pool is dropping low, schedule to
1313 * refill it */
1314 if (rxq->free_count <= RX_LOW_WATERMARK)
1315 queue_work(priv->workqueue, &priv->rx_replenish);
1316
1317
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001318 /* If we've added more space for the firmware to place data, tell it.
1319 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07001320 if ((write != (rxq->write & ~0x7))
1321 || (abs(rxq->write - rxq->read) > 7)) {
1322 spin_lock_irqsave(&rxq->lock, flags);
1323 rxq->need_update = 1;
1324 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001325 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001326 if (rc)
1327 return rc;
1328 }
1329
1330 return 0;
1331}
1332
1333/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001334 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001335 *
1336 * When moving to rx_free an SKB is allocated for the slot.
1337 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001338 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001339 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001340 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001341static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001342{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001343 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001344 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001345 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001346 unsigned long flags;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001347
1348 while (1) {
1349 spin_lock_irqsave(&rxq->lock, flags);
1350
1351 if (list_empty(&rxq->rx_used)) {
1352 spin_unlock_irqrestore(&rxq->lock, flags);
1353 return;
1354 }
1355
Zhu Yib481de92007-09-25 17:54:57 -07001356 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001357 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001358 list_del(element);
1359 spin_unlock_irqrestore(&rxq->lock, flags);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001360
1361 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001362 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001363 alloc_skb(priv->hw_params.rx_buf_size,
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001364 GFP_KERNEL);
Zhu Yib481de92007-09-25 17:54:57 -07001365 if (!rxb->skb) {
1366 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001367 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001368 /* We don't reschedule replenish work here -- we will
1369 * call the restock method and if it still needs
1370 * more buffers it will schedule replenish */
1371 break;
1372 }
Zhu Yi12342c42007-12-20 11:27:32 +08001373
1374 /* If radiotap head is required, reserve some headroom here.
1375 * The physical head count is a variable rx_stats->phy_count.
1376 * We reserve 4 bytes here. Plus these extra bytes, the
1377 * headroom of the physical head should be enough for the
1378 * radiotap head that iwl3945 supported. See iwl3945_rt.
1379 */
1380 skb_reserve(rxb->skb, 4);
1381
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001382 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001383 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1384 rxb->skb->data,
1385 priv->hw_params.rx_buf_size,
1386 PCI_DMA_FROMDEVICE);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001387
1388 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001389 list_add_tail(&rxb->list, &rxq->rx_free);
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001390 priv->alloc_rxb_skb++;
Zhu Yib481de92007-09-25 17:54:57 -07001391 rxq->free_count++;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001392 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07001393 }
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001394}
1395
Reinette Chatredf833b12009-04-21 10:55:48 -07001396void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1397{
1398 unsigned long flags;
1399 int i;
1400 spin_lock_irqsave(&rxq->lock, flags);
1401 INIT_LIST_HEAD(&rxq->rx_free);
1402 INIT_LIST_HEAD(&rxq->rx_used);
1403 /* Fill the rx_used queue with _all_ of the Rx buffers */
1404 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1405 /* In the reset function, these buffers may have been allocated
1406 * to an SKB, so we need to unmap and free potential storage */
1407 if (rxq->pool[i].skb != NULL) {
1408 pci_unmap_single(priv->pci_dev,
1409 rxq->pool[i].real_dma_addr,
1410 priv->hw_params.rx_buf_size,
1411 PCI_DMA_FROMDEVICE);
1412 priv->alloc_rxb_skb--;
1413 dev_kfree_skb(rxq->pool[i].skb);
1414 rxq->pool[i].skb = NULL;
1415 }
1416 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1417 }
1418
1419 /* Set us so that we have processed and used all buffers, but have
1420 * not restocked the Rx queue with fresh buffers */
1421 rxq->read = rxq->write = 0;
1422 rxq->free_count = 0;
1423 spin_unlock_irqrestore(&rxq->lock, flags);
1424}
Reinette Chatredf833b12009-04-21 10:55:48 -07001425
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001426void iwl3945_rx_replenish(void *data)
1427{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001428 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001429 unsigned long flags;
1430
1431 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001432
1433 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001434 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001435 spin_unlock_irqrestore(&priv->lock, flags);
1436}
1437
Reinette Chatredf833b12009-04-21 10:55:48 -07001438/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1439 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1440 * This free routine walks the list of POOL entries and if SKB is set to
1441 * non NULL it is unmapped and freed
1442 */
1443static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1444{
1445 int i;
1446 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1447 if (rxq->pool[i].skb != NULL) {
1448 pci_unmap_single(priv->pci_dev,
1449 rxq->pool[i].real_dma_addr,
1450 priv->hw_params.rx_buf_size,
1451 PCI_DMA_FROMDEVICE);
1452 dev_kfree_skb(rxq->pool[i].skb);
1453 }
1454 }
1455
1456 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1457 rxq->dma_addr);
1458 pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status),
1459 rxq->rb_stts, rxq->rb_stts_dma);
1460 rxq->bd = NULL;
1461 rxq->rb_stts = NULL;
1462}
Reinette Chatredf833b12009-04-21 10:55:48 -07001463
1464
Zhu Yib481de92007-09-25 17:54:57 -07001465/* Convert linear signal-to-noise ratio into dB */
1466static u8 ratio2dB[100] = {
1467/* 0 1 2 3 4 5 6 7 8 9 */
1468 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1469 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1470 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1471 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1472 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1473 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1474 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1475 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1476 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1477 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1478};
1479
1480/* Calculates a relative dB value from a ratio of linear
1481 * (i.e. not dB) signal levels.
1482 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001483int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001484{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001485 /* 1000:1 or higher just report as 60 dB */
1486 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001487 return 60;
1488
Adrian Bunk221c80c2008-02-02 23:19:01 +02001489 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001490 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001491 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001492 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001493
1494 /* We shouldn't see this */
1495 if (sig_ratio < 1)
1496 return 0;
1497
1498 /* Use table for ratios 1:1 - 99:1 */
1499 return (int)ratio2dB[sig_ratio];
1500}
1501
1502#define PERFECT_RSSI (-20) /* dBm */
1503#define WORST_RSSI (-95) /* dBm */
1504#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1505
1506/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1507 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1508 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001509int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001510{
1511 int sig_qual;
1512 int degradation = PERFECT_RSSI - rssi_dbm;
1513
1514 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1515 * as indicator; formula is (signal dbm - noise dbm).
1516 * SNR at or above 40 is a great signal (100%).
1517 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1518 * Weakest usable signal is usually 10 - 15 dB SNR. */
1519 if (noise_dbm) {
1520 if (rssi_dbm - noise_dbm >= 40)
1521 return 100;
1522 else if (rssi_dbm < noise_dbm)
1523 return 0;
1524 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1525
1526 /* Else use just the signal level.
1527 * This formula is a least squares fit of data points collected and
1528 * compared with a reference system that had a percentage (%) display
1529 * for signal quality. */
1530 } else
1531 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1532 (15 * RSSI_RANGE + 62 * degradation)) /
1533 (RSSI_RANGE * RSSI_RANGE);
1534
1535 if (sig_qual > 100)
1536 sig_qual = 100;
1537 else if (sig_qual < 1)
1538 sig_qual = 0;
1539
1540 return sig_qual;
1541}
1542
1543/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001544 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001545 *
1546 * Uses the priv->rx_handlers callback function array to invoke
1547 * the appropriate handlers, including command responses,
1548 * frame-received notifications, and other notifications.
1549 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001550static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001551{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001552 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001553 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001554 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001555 u32 r, i;
1556 int reclaim;
1557 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001558 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001559 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001560
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001561 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1562 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001563 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001564 i = rxq->read;
1565
Winkler, Tomas37d68312009-01-08 10:19:54 -08001566 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001567 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001568 /* Rx interrupt, but nothing sent from uCode */
1569 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001570 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001571
1572 while (i != r) {
1573 rxb = rxq->queue[i];
1574
Ben Cahill9fbab512007-11-29 11:09:47 +08001575 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001576 * then a bug has been introduced in the queue refilling
1577 * routines -- catch it here */
1578 BUG_ON(rxb == NULL);
1579
1580 rxq->queue[i] = NULL;
1581
Reinette Chatredf833b12009-04-21 10:55:48 -07001582 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1583 priv->hw_params.rx_buf_size,
1584 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001585 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001586
1587 /* Reclaim a command buffer only if this packet is a response
1588 * to a (driver-originated) command.
1589 * If the packet (e.g. Rx frame) originated from uCode,
1590 * there is no command buffer to reclaim.
1591 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1592 * but apparently a few don't get set; catch them here. */
1593 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1594 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1595 (pkt->hdr.cmd != REPLY_TX);
1596
1597 /* Based on type of command response or notification,
1598 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001599 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001600 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001601 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001602 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1603 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1604 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001605 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yib481de92007-09-25 17:54:57 -07001606 } else {
1607 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001608 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001609 "r %d i %d No handler needed for %s, 0x%02x\n",
1610 r, i, get_cmd_string(pkt->hdr.cmd),
1611 pkt->hdr.cmd);
1612 }
1613
1614 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001615 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001616 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001617 * as we reclaim the driver command queue */
1618 if (rxb && rxb->skb)
Abhijeet Kolekar732587a2009-03-11 11:17:57 -07001619 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001620 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001621 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001622 }
1623
1624 /* For now we just don't re-use anything. We can tweak this
1625 * later to try and re-use notification packets and SKBs that
1626 * fail to Rx correctly */
1627 if (rxb->skb != NULL) {
1628 priv->alloc_rxb_skb--;
1629 dev_kfree_skb_any(rxb->skb);
1630 rxb->skb = NULL;
1631 }
1632
Zhu Yib481de92007-09-25 17:54:57 -07001633 spin_lock_irqsave(&rxq->lock, flags);
1634 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1635 spin_unlock_irqrestore(&rxq->lock, flags);
1636 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001637 /* If there are a lot of unused frames,
1638 * restock the Rx queue so ucode won't assert. */
1639 if (fill_rx) {
1640 count++;
1641 if (count >= 8) {
1642 priv->rxq.read = i;
Abhijeet Kolekar72240492009-04-30 13:56:26 -07001643 iwl3945_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001644 count = 0;
1645 }
1646 }
Zhu Yib481de92007-09-25 17:54:57 -07001647 }
1648
1649 /* Backtrack one entry */
1650 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001651 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001652}
1653
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001654/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001655static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001656{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001657 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001658 synchronize_irq(priv->pci_dev->irq);
1659 tasklet_kill(&priv->irq_tasklet);
1660}
1661
Zhu Yib481de92007-09-25 17:54:57 -07001662static const char *desc_lookup(int i)
1663{
1664 switch (i) {
1665 case 1:
1666 return "FAIL";
1667 case 2:
1668 return "BAD_PARAM";
1669 case 3:
1670 return "BAD_CHECKSUM";
1671 case 4:
1672 return "NMI_INTERRUPT";
1673 case 5:
1674 return "SYSASSERT";
1675 case 6:
1676 return "FATAL_ERROR";
1677 }
1678
1679 return "UNKNOWN";
1680}
1681
1682#define ERROR_START_OFFSET (1 * sizeof(u32))
1683#define ERROR_ELEM_SIZE (7 * sizeof(u32))
1684
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001685static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001686{
1687 u32 i;
1688 u32 desc, time, count, base, data1;
1689 u32 blink1, blink2, ilink1, ilink2;
1690 int rc;
1691
1692 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1693
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001694 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001695 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001696 return;
1697 }
1698
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001699 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001700 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001701 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001702 return;
1703 }
1704
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001705 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07001706
1707 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001708 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1709 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1710 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07001711 }
1712
Winkler, Tomas15b16872008-12-19 10:37:33 +08001713 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07001714 "ilink1 nmiPC Line\n");
1715 for (i = ERROR_START_OFFSET;
1716 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1717 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001718 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07001719 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001720 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001721 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001722 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001723 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001724 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001725 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001726 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001727 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001728 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001729 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001730 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07001731
Winkler, Tomas15b16872008-12-19 10:37:33 +08001732 IWL_ERR(priv,
1733 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1734 desc_lookup(desc), desc, time, blink1, blink2,
1735 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07001736 }
1737
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001738 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001739
1740}
1741
Ben Cahillf58177b2007-11-29 11:09:43 +08001742#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07001743
1744/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001745 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07001746 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001747 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07001748 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001749static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07001750 u32 num_events, u32 mode)
1751{
1752 u32 i;
1753 u32 base; /* SRAM byte address of event log header */
1754 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1755 u32 ptr; /* SRAM byte address of log data */
1756 u32 ev, time, data; /* event log data */
1757
1758 if (num_events == 0)
1759 return;
1760
1761 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1762
1763 if (mode == 0)
1764 event_size = 2 * sizeof(u32);
1765 else
1766 event_size = 3 * sizeof(u32);
1767
1768 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1769
1770 /* "time" is actually "data" for mode 0 (no timestamp).
1771 * place event id # at far right for easier visual parsing. */
1772 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001773 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001774 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001775 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001776 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001777 if (mode == 0) {
1778 /* data, ev */
1779 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1780 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001781 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07001782 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001783 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07001784 }
1785 }
1786}
1787
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001788static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001789{
1790 int rc;
1791 u32 base; /* SRAM byte address of event log header */
1792 u32 capacity; /* event log capacity in # entries */
1793 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1794 u32 num_wraps; /* # times uCode wrapped to top of log */
1795 u32 next_entry; /* index of next entry to be written by uCode */
1796 u32 size; /* # entries that we'll print */
1797
1798 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001799 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001800 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07001801 return;
1802 }
1803
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001804 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001805 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001806 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001807 return;
1808 }
1809
1810 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001811 capacity = iwl_read_targ_mem(priv, base);
1812 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1813 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1814 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07001815
1816 size = num_wraps ? capacity : next_entry;
1817
1818 /* bail out if nothing in log */
1819 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001820 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001821 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001822 return;
1823 }
1824
Winkler, Tomas15b16872008-12-19 10:37:33 +08001825 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001826 size, num_wraps);
1827
1828 /* if uCode has wrapped back to top of log, start at the oldest entry,
1829 * i.e the next one that uCode would fill. */
1830 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001831 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07001832 capacity - next_entry, mode);
1833
1834 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001835 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07001836
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001837 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001838}
1839
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001840static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001841{
1842 u32 inta, handled = 0;
1843 u32 inta_fh;
1844 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08001845#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001846 u32 inta_mask;
1847#endif
1848
1849 spin_lock_irqsave(&priv->lock, flags);
1850
1851 /* Ack/clear/reset pending uCode interrupts.
1852 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1853 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001854 inta = iwl_read32(priv, CSR_INT);
1855 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001856
1857 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1858 * Any new interrupts that happen after this, either while we're
1859 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001860 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1861 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001862
Samuel Ortizd08853a2009-01-23 13:45:17 -08001863#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001864 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001865 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001866 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001867 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001868 inta, inta_mask, inta_fh);
1869 }
1870#endif
1871
1872 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1873 * atomic, make sure that inta covers all the interrupts that
1874 * we've discovered, even if FH interrupt came in just after
1875 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001876 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001877 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001878 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001879 inta |= CSR_INT_BIT_FH_TX;
1880
1881 /* Now service all interrupt bits discovered above. */
1882 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001883 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001884
1885 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001886 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001887
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001888 priv->isr_stats.hw++;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001889 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001890
1891 handled |= CSR_INT_BIT_HW_ERR;
1892
1893 spin_unlock_irqrestore(&priv->lock, flags);
1894
1895 return;
1896 }
1897
Samuel Ortizd08853a2009-01-23 13:45:17 -08001898#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001899 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001900 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001901 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001902 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001903 "the frame/frames.\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001904 priv->isr_stats.sch++;
1905 }
Zhu Yib481de92007-09-25 17:54:57 -07001906
1907 /* Alive notification via Rx interrupt will do the real work */
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001908 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001909 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001910 priv->isr_stats.alive++;
1911 }
Zhu Yib481de92007-09-25 17:54:57 -07001912 }
1913#endif
1914 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001915 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001916
Zhu Yib481de92007-09-25 17:54:57 -07001917 /* Error detected by uCode */
1918 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001919 IWL_ERR(priv, "Microcode SW error detected. "
1920 "Restarting 0x%X.\n", inta);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001921 priv->isr_stats.sw++;
1922 priv->isr_stats.sw_err = inta;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001923 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001924 handled |= CSR_INT_BIT_SW_ERR;
1925 }
1926
1927 /* uCode wakes up after power-down sleep */
1928 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001929 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001930 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001931 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1932 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1933 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1934 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1935 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1936 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001937
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001938 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001939 handled |= CSR_INT_BIT_WAKEUP;
1940 }
1941
1942 /* All uCode command responses, including Tx command responses,
1943 * Rx "responses" (frame-received notification), and other
1944 * notifications from uCode come through here*/
1945 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001946 iwl3945_rx_handle(priv);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001947 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001948 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1949 }
1950
1951 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001952 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001953 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001954
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001955 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
1956 if (!iwl_grab_nic_access(priv)) {
1957 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08001958 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001959 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001960 }
1961 handled |= CSR_INT_BIT_FH_TX;
1962 }
1963
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001964 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001965 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Abhijeet Kolekar86ddbf62009-04-20 14:36:59 -07001966 priv->isr_stats.unhandled++;
1967 }
Zhu Yib481de92007-09-25 17:54:57 -07001968
1969 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001970 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001971 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001972 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001973 }
1974
1975 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001976 /* only Re-enable if disabled by irq */
1977 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08001978 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001979
Samuel Ortizd08853a2009-01-23 13:45:17 -08001980#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08001981 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001982 inta = iwl_read32(priv, CSR_INT);
1983 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1984 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001985 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001986 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1987 }
1988#endif
1989 spin_unlock_irqrestore(&priv->lock, flags);
1990}
1991
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001992static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001993 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08001994 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001995 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07001996{
1997 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01001998 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001999 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002000 u16 passive_dwell = 0;
2001 u16 active_dwell = 0;
2002 int added, i;
2003
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08002004 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01002005 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07002006 return 0;
2007
Johannes Berg8318d782008-01-24 19:38:38 +01002008 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07002009
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002010 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
2011 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07002012
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08002013 if (passive_dwell <= active_dwell)
2014 passive_dwell = active_dwell + 1;
2015
Johannes Berg8318d782008-01-24 19:38:38 +01002016 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02002017 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
2018 continue;
2019
Johannes Berg8318d782008-01-24 19:38:38 +01002020 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07002021
Samuel Ortize6148912009-01-23 13:45:15 -08002022 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002023 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002024 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07002025 scan_ch->channel);
2026 continue;
2027 }
2028
Zhu Yib481de92007-09-25 17:54:57 -07002029 scan_ch->active_dwell = cpu_to_le16(active_dwell);
2030 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002031 /* If passive , set up for auto-switch
2032 * and use long active_dwell time.
2033 */
2034 if (!is_active || is_channel_passive(ch_info) ||
2035 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
2036 scan_ch->type = 0; /* passive */
2037 if (IWL_UCODE_API(priv->ucode_ver) == 1)
2038 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
2039 } else {
2040 scan_ch->type = 1; /* active */
2041 }
2042
2043 /* Set direct probe bits. These may be used both for active
2044 * scan channels (probes gets sent right away),
2045 * or for passive channels (probes get se sent only after
2046 * hearing clear Rx packet).*/
2047 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
2048 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002049 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002050 } else {
2051 /* uCode v1 does not allow setting direct probe bits on
2052 * passive channel. */
2053 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002054 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002055 }
Zhu Yib481de92007-09-25 17:54:57 -07002056
Ben Cahill9fbab512007-11-29 11:09:47 +08002057 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07002058 scan_ch->tpc.dsp_atten = 110;
2059 /* scan_pwr_info->tpc.dsp_atten; */
2060
2061 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01002062 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07002063 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
2064 else {
2065 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
2066 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08002067 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08002068 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07002069 */
2070 }
2071
Tomas Winklere1623442009-01-27 14:27:56 -08002072 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07002073 scan_ch->channel,
2074 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
2075 (scan_ch->type & 1) ?
2076 active_dwell : passive_dwell);
2077
2078 scan_ch++;
2079 added++;
2080 }
2081
Tomas Winklere1623442009-01-27 14:27:56 -08002082 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07002083 return added;
2084}
2085
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002086static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002087 struct ieee80211_rate *rates)
2088{
2089 int i;
2090
2091 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01002092 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
2093 rates[i].hw_value = i; /* Rate scaling will work on indexes */
2094 rates[i].hw_value_short = i;
2095 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08002096 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07002097 /*
Johannes Berg8318d782008-01-24 19:38:38 +01002098 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07002099 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002100 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01002101 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07002102 }
Zhu Yib481de92007-09-25 17:54:57 -07002103 }
2104}
2105
Zhu Yib481de92007-09-25 17:54:57 -07002106/******************************************************************************
2107 *
2108 * uCode download functions
2109 *
2110 ******************************************************************************/
2111
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002112static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002113{
Tomas Winkler98c92212008-01-14 17:46:20 -08002114 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
2115 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
2116 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2117 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
2118 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2119 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002120}
2121
2122/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002123 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002124 * looking at all data.
2125 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002126static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002127{
2128 u32 val;
2129 u32 save_len = len;
2130 int rc = 0;
2131 u32 errcnt;
2132
Tomas Winklere1623442009-01-27 14:27:56 -08002133 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002134
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002135 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002136 if (rc)
2137 return rc;
2138
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002139 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002140 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07002141
2142 errcnt = 0;
2143 for (; len > 0; len -= sizeof(u32), image++) {
2144 /* read data comes through single port, auto-incr addr */
2145 /* NOTE: Use the debugless read so we don't flood kernel log
2146 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002147 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002148 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002149 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002150 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2151 save_len - len, val, le32_to_cpu(*image));
2152 rc = -EIO;
2153 errcnt++;
2154 if (errcnt >= 20)
2155 break;
2156 }
2157 }
2158
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002159 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002160
2161 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002162 IWL_DEBUG_INFO(priv,
2163 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002164
2165 return rc;
2166}
2167
2168
2169/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002170 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002171 * using sample data 100 bytes apart. If these sample points are good,
2172 * it's a pretty good bet that everything between them is good, too.
2173 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002174static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002175{
2176 u32 val;
2177 int rc = 0;
2178 u32 errcnt = 0;
2179 u32 i;
2180
Tomas Winklere1623442009-01-27 14:27:56 -08002181 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002182
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002183 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002184 if (rc)
2185 return rc;
2186
2187 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2188 /* read data comes through single port, auto-incr addr */
2189 /* NOTE: Use the debugless read so we don't flood kernel log
2190 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002191 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002192 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002193 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002194 if (val != le32_to_cpu(*image)) {
2195#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002196 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002197 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2198 i, val, *image);
2199#endif
2200 rc = -EIO;
2201 errcnt++;
2202 if (errcnt >= 3)
2203 break;
2204 }
2205 }
2206
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002207 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002208
2209 return rc;
2210}
2211
2212
2213/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002214 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002215 * and verify its contents
2216 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002217static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002218{
2219 __le32 *image;
2220 u32 len;
2221 int rc = 0;
2222
2223 /* Try bootstrap */
2224 image = (__le32 *)priv->ucode_boot.v_addr;
2225 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002226 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002227 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002228 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002229 return 0;
2230 }
2231
2232 /* Try initialize */
2233 image = (__le32 *)priv->ucode_init.v_addr;
2234 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002235 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002236 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002237 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002238 return 0;
2239 }
2240
2241 /* Try runtime/protocol */
2242 image = (__le32 *)priv->ucode_code.v_addr;
2243 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002244 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002245 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002246 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002247 return 0;
2248 }
2249
Winkler, Tomas15b16872008-12-19 10:37:33 +08002250 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002251
Ben Cahill9fbab512007-11-29 11:09:47 +08002252 /* Since nothing seems to match, show first several data entries in
2253 * instruction SRAM, so maybe visual inspection will give a clue.
2254 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002255 image = (__le32 *)priv->ucode_boot.v_addr;
2256 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002257 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002258
2259 return rc;
2260}
2261
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002262static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002263{
2264 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002265 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002266}
2267
2268/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002269 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002270 *
2271 * Copy into buffers for card to fetch via bus-mastering
2272 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002273static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002274{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08002275 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002276 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002277 const struct firmware *ucode_raw;
2278 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002279 const char *name_pre = priv->cfg->fw_name_pre;
2280 const unsigned int api_max = priv->cfg->ucode_api_max;
2281 const unsigned int api_min = priv->cfg->ucode_api_min;
2282 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002283 u8 *src;
2284 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002285 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002286
2287 /* Ask kernel firmware_class module to get the boot firmware off disk.
2288 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002289 for (index = api_max; index >= api_min; index--) {
2290 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2291 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2292 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002293 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002294 buf, ret);
2295 if (ret == -ENOENT)
2296 continue;
2297 else
2298 goto error;
2299 } else {
2300 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002301 IWL_ERR(priv, "Loaded firmware %s, "
2302 "which is deprecated. "
2303 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002304 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002305 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2306 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002307 buf, ucode_raw->size);
2308 break;
2309 }
Zhu Yib481de92007-09-25 17:54:57 -07002310 }
2311
Reinette Chatrea0987a82008-12-02 12:14:06 -08002312 if (ret < 0)
2313 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002314
2315 /* Make sure that we got at least our header! */
2316 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002317 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002318 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002319 goto err_release;
2320 }
2321
2322 /* Data from ucode file: header followed by uCode images */
2323 ucode = (void *)ucode_raw->data;
2324
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002325 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002326 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002327 inst_size = le32_to_cpu(ucode->inst_size);
2328 data_size = le32_to_cpu(ucode->data_size);
2329 init_size = le32_to_cpu(ucode->init_size);
2330 init_data_size = le32_to_cpu(ucode->init_data_size);
2331 boot_size = le32_to_cpu(ucode->boot_size);
2332
Reinette Chatrea0987a82008-12-02 12:14:06 -08002333 /* api_ver should match the api version forming part of the
2334 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01002335 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002336
2337 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002338 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002339 "Driver supports v%u, firmware is v%u.\n",
2340 api_max, api_ver);
2341 priv->ucode_ver = 0;
2342 ret = -EINVAL;
2343 goto err_release;
2344 }
2345 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002346 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002347 "got %u. New firmware can be obtained "
2348 "from http://www.intellinuxwireless.org.\n",
2349 api_max, api_ver);
2350
Tomas Winkler978785a2008-12-19 10:37:31 +08002351 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2352 IWL_UCODE_MAJOR(priv->ucode_ver),
2353 IWL_UCODE_MINOR(priv->ucode_ver),
2354 IWL_UCODE_API(priv->ucode_ver),
2355 IWL_UCODE_SERIAL(priv->ucode_ver));
2356
Tomas Winklere1623442009-01-27 14:27:56 -08002357 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002358 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002359 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2360 inst_size);
2361 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2362 data_size);
2363 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2364 init_size);
2365 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2366 init_data_size);
2367 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2368 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002369
Reinette Chatrea0987a82008-12-02 12:14:06 -08002370
Zhu Yib481de92007-09-25 17:54:57 -07002371 /* Verify size of file vs. image size info in file's header */
2372 if (ucode_raw->size < sizeof(*ucode) +
2373 inst_size + data_size + init_size +
2374 init_data_size + boot_size) {
2375
Tomas Winklere1623442009-01-27 14:27:56 -08002376 IWL_DEBUG_INFO(priv, "uCode file size %zd too small\n",
2377 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002378 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002379 goto err_release;
2380 }
2381
2382 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002383 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002384 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002385 inst_size);
2386 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002387 goto err_release;
2388 }
2389
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002390 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002391 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002392 data_size);
2393 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002394 goto err_release;
2395 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002396 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002397 IWL_DEBUG_INFO(priv,
2398 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002399 init_size);
2400 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002401 goto err_release;
2402 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002403 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002404 IWL_DEBUG_INFO(priv,
2405 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002406 init_data_size);
2407 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002408 goto err_release;
2409 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002410 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002411 IWL_DEBUG_INFO(priv,
2412 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002413 boot_size);
2414 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002415 goto err_release;
2416 }
2417
2418 /* Allocate ucode buffers for card's bus-master loading ... */
2419
2420 /* Runtime instructions and 2 copies of data:
2421 * 1) unmodified from disk
2422 * 2) backup cache for save/restore during power-downs */
2423 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002424 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002425
2426 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002427 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002428
2429 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002430 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002431
2432 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002433 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002434 goto err_pci_alloc;
2435
Tomas Winkler90e759d2007-11-29 11:09:41 +08002436 /* Initialization instructions and data */
2437 if (init_size && init_data_size) {
2438 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002439 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002440
2441 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002442 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002443
2444 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2445 goto err_pci_alloc;
2446 }
2447
2448 /* Bootstrap (instructions only, no data) */
2449 if (boot_size) {
2450 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002451 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002452
2453 if (!priv->ucode_boot.v_addr)
2454 goto err_pci_alloc;
2455 }
2456
Zhu Yib481de92007-09-25 17:54:57 -07002457 /* Copy images into buffers for card's bus-master reads ... */
2458
2459 /* Runtime instructions (first block of data in file) */
2460 src = &ucode->data[0];
2461 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002462 IWL_DEBUG_INFO(priv,
2463 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002464 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08002465 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002466 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2467
2468 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002469 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07002470 src = &ucode->data[inst_size];
2471 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002472 IWL_DEBUG_INFO(priv,
2473 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002474 memcpy(priv->ucode_data.v_addr, src, len);
2475 memcpy(priv->ucode_data_backup.v_addr, src, len);
2476
2477 /* Initialization instructions (3rd block) */
2478 if (init_size) {
2479 src = &ucode->data[inst_size + data_size];
2480 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002481 IWL_DEBUG_INFO(priv,
2482 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002483 memcpy(priv->ucode_init.v_addr, src, len);
2484 }
2485
2486 /* Initialization data (4th block) */
2487 if (init_data_size) {
2488 src = &ucode->data[inst_size + data_size + init_size];
2489 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002490 IWL_DEBUG_INFO(priv,
2491 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002492 memcpy(priv->ucode_init_data.v_addr, src, len);
2493 }
2494
2495 /* Bootstrap instructions (5th block) */
2496 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
2497 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002498 IWL_DEBUG_INFO(priv,
2499 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002500 memcpy(priv->ucode_boot.v_addr, src, len);
2501
2502 /* We have our copies now, allow OS release its copies */
2503 release_firmware(ucode_raw);
2504 return 0;
2505
2506 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002507 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002508 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002509 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002510
2511 err_release:
2512 release_firmware(ucode_raw);
2513
2514 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002515 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002516}
2517
2518
2519/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002520 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002521 *
2522 * Tell initialization uCode where to find runtime uCode.
2523 *
2524 * BSM registers initially contain pointers to initialization uCode.
2525 * We need to replace them to load runtime uCode inst and data,
2526 * and to save runtime data when powering down.
2527 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002528static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002529{
2530 dma_addr_t pinst;
2531 dma_addr_t pdata;
2532 int rc = 0;
2533 unsigned long flags;
2534
2535 /* bits 31:0 for 3945 */
2536 pinst = priv->ucode_code.p_addr;
2537 pdata = priv->ucode_data_backup.p_addr;
2538
2539 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002540 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002541 if (rc) {
2542 spin_unlock_irqrestore(&priv->lock, flags);
2543 return rc;
2544 }
2545
2546 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002547 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2548 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2549 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002550 priv->ucode_data.len);
2551
Tomas Winklera96a27f2008-10-23 23:48:56 -07002552 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002553 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002554 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002555 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2556
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002557 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002558
2559 spin_unlock_irqrestore(&priv->lock, flags);
2560
Tomas Winklere1623442009-01-27 14:27:56 -08002561 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002562
2563 return rc;
2564}
2565
2566/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002567 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002568 *
2569 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2570 *
Zhu Yib481de92007-09-25 17:54:57 -07002571 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002572 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002573static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002574{
2575 /* Check alive response for "valid" sign from uCode */
2576 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2577 /* We had an error bringing up the hardware, so take it
2578 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002579 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002580 goto restart;
2581 }
2582
2583 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2584 * This is a paranoid check, because we would not have gotten the
2585 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002586 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002587 /* Runtime instruction load was bad;
2588 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002589 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002590 goto restart;
2591 }
2592
2593 /* Send pointers to protocol/runtime uCode image ... init code will
2594 * load and launch runtime uCode, which will send us another "Alive"
2595 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002596 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002597 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002598 /* Runtime instruction load won't happen;
2599 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002600 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002601 goto restart;
2602 }
2603 return;
2604
2605 restart:
2606 queue_work(priv->workqueue, &priv->restart);
2607}
2608
Zhu Yib481de92007-09-25 17:54:57 -07002609/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002610 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002611 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002612 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002613 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002614static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002615{
2616 int rc = 0;
2617 int thermal_spin = 0;
2618 u32 rfkill;
2619
Tomas Winklere1623442009-01-27 14:27:56 -08002620 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002621
2622 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2623 /* We had an error bringing up the hardware, so take it
2624 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002625 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002626 goto restart;
2627 }
2628
2629 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2630 * This is a paranoid check, because we would not have gotten the
2631 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002632 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002633 /* Runtime instruction load was bad;
2634 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002635 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002636 goto restart;
2637 }
2638
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002639 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002640
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002641 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002642 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002643 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002644 return;
2645 }
2646
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002647 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002648 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002649 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002650
2651 if (rfkill & 0x1) {
2652 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002653 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002654 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002655 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002656 thermal_spin++;
2657 udelay(10);
2658 }
2659
2660 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08002661 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07002662 thermal_spin * 10);
2663 } else
2664 set_bit(STATUS_RF_KILL_HW, &priv->status);
2665
Ben Cahill9fbab512007-11-29 11:09:47 +08002666 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002667 set_bit(STATUS_ALIVE, &priv->status);
2668
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002669 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002670 return;
2671
Johannes Berg36d68252008-05-15 12:55:26 +02002672 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002673
2674 priv->active_rate = priv->rates_mask;
2675 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2676
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08002677 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07002678
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002679 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002680 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002681 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07002682
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002683 memcpy(&priv->staging_rxon, &priv->active_rxon,
2684 sizeof(priv->staging_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07002685 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2686 } else {
2687 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002688 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002689 }
2690
Ben Cahill9fbab512007-11-29 11:09:47 +08002691 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08002692 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002693
2694 /* Configure the adapter for unassociated operation */
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07002695 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002696
Zhu Yib481de92007-09-25 17:54:57 -07002697 iwl3945_reg_txpower_periodic(priv);
2698
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002699 iwl3945_led_register(priv);
2700
Tomas Winklere1623442009-01-27 14:27:56 -08002701 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002702 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002703 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002704
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002705 /* reassociate for ADHOC mode */
2706 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2707 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2708 priv->vif);
2709 if (beacon)
Abhijeet Kolekar9944b932009-04-08 11:26:36 -07002710 iwl_mac_beacon_update(priv->hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002711 }
2712
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002713 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Abhijeet Kolekar727882d2009-04-08 11:26:45 -07002714 iwl_set_mode(priv, priv->iw_mode);
Abhijeet Kolekarf45c2712009-04-08 11:26:38 -07002715
Zhu Yib481de92007-09-25 17:54:57 -07002716 return;
2717
2718 restart:
2719 queue_work(priv->workqueue, &priv->restart);
2720}
2721
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002722static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002723
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002724static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002725{
2726 unsigned long flags;
2727 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2728 struct ieee80211_conf *conf = NULL;
2729
Tomas Winklere1623442009-01-27 14:27:56 -08002730 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002731
2732 conf = ieee80211_get_hw_conf(priv->hw);
2733
2734 if (!exit_pending)
2735 set_bit(STATUS_EXIT_PENDING, &priv->status);
2736
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002737 iwl3945_led_unregister(priv);
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002738 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002739
2740 /* Unblock any waiting calls */
2741 wake_up_interruptible_all(&priv->wait_command_queue);
2742
Zhu Yib481de92007-09-25 17:54:57 -07002743 /* Wipe out the EXIT_PENDING status bit if we are not actually
2744 * exiting the module */
2745 if (!exit_pending)
2746 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2747
2748 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002749 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002750
2751 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002752 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002753 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002754 spin_unlock_irqrestore(&priv->lock, flags);
2755 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002756
2757 if (priv->mac80211_registered)
2758 ieee80211_stop_queues(priv->hw);
2759
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002760 /* If we have not previously called iwl3945_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002761 * clear all bits but the RF Kill bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002762 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002763 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2764 STATUS_RF_KILL_HW |
2765 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2766 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002767 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2768 STATUS_GEO_CONFIGURED |
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002769 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2770 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002771 goto exit;
2772 }
2773
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002774 /* ...otherwise clear out all the status bits but the RF Kill
2775 * bits and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002776 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2777 STATUS_RF_KILL_HW |
2778 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2779 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002780 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2781 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002782 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002783 STATUS_FW_ERROR |
2784 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2785 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002786
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002787 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002788 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002789 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002790 spin_unlock_irqrestore(&priv->lock, flags);
2791
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002792 iwl3945_hw_txq_ctx_stop(priv);
2793 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002794
2795 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002796 if (!iwl_grab_nic_access(priv)) {
2797 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002798 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002799 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002800 }
2801 spin_unlock_irqrestore(&priv->lock, flags);
2802
2803 udelay(5);
2804
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002805 if (exit_pending)
Abbas, Mohamede9414b62009-01-20 21:33:55 -08002806 priv->cfg->ops->lib->apm_ops.stop(priv);
2807 else
2808 priv->cfg->ops->lib->apm_ops.reset(priv);
2809
Zhu Yib481de92007-09-25 17:54:57 -07002810 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002811 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002812
2813 if (priv->ibss_beacon)
2814 dev_kfree_skb(priv->ibss_beacon);
2815 priv->ibss_beacon = NULL;
2816
2817 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002818 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002819}
2820
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002821static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002822{
2823 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002824 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002825 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002826
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002827 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002828}
2829
2830#define MAX_HW_RESTARTS 5
2831
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002832static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002833{
2834 int rc, i;
2835
2836 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002837 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002838 return -EIO;
2839 }
2840
2841 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002842 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07002843 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002844 return -ENODEV;
2845 }
2846
Reinette Chatree903fbd2008-01-30 22:05:15 -08002847 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002848 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002849 return -EIO;
2850 }
2851
Zhu Yie655b9f2008-01-24 02:19:38 -08002852 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002853 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08002854 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2855 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2856 else {
2857 set_bit(STATUS_RF_KILL_HW, &priv->status);
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002858 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2859 return -ENODEV;
Zhu Yib481de92007-09-25 17:54:57 -07002860 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002861
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002862 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002863
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002864 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002865 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002866 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07002867 return rc;
2868 }
2869
2870 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002871 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2872 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002873 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2874
2875 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002876 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002877 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002878
2879 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002880 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2881 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002882
2883 /* Copy original ucode data image from disk into backup cache.
2884 * This will be used to initialize the on-board processor's
2885 * data SRAM for a clean start when the runtime program first loads. */
2886 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08002887 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002888
Zhu Yie655b9f2008-01-24 02:19:38 -08002889 /* We return success when we resume from suspend and rf_kill is on. */
2890 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2891 return 0;
2892
Zhu Yib481de92007-09-25 17:54:57 -07002893 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2894
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07002895 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002896
2897 /* load bootstrap state machine,
2898 * load bootstrap program into processor's memory,
2899 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08002900 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002901
2902 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002903 IWL_ERR(priv,
2904 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07002905 continue;
2906 }
2907
2908 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002909 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002910
Tomas Winklere1623442009-01-27 14:27:56 -08002911 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002912
2913 return 0;
2914 }
2915
2916 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002917 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08002918 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002919
2920 /* tried to restart and config the device for as long as our
2921 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002922 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002923 return -EIO;
2924}
2925
2926
2927/*****************************************************************************
2928 *
2929 * Workqueue callbacks
2930 *
2931 *****************************************************************************/
2932
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002933static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002934{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002935 struct iwl_priv *priv =
2936 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002937
2938 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2939 return;
2940
2941 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002942 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002943 mutex_unlock(&priv->mutex);
2944}
2945
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002946static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002947{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002948 struct iwl_priv *priv =
2949 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002950
2951 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2952 return;
2953
2954 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002955 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002956 mutex_unlock(&priv->mutex);
2957}
2958
Helmut Schaa26635162009-01-15 09:38:44 +01002959static void iwl3945_rfkill_poll(struct work_struct *data)
2960{
2961 struct iwl_priv *priv =
2962 container_of(data, struct iwl_priv, rfkill_poll.work);
2963 unsigned long status = priv->status;
2964
2965 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2966 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2967 else
2968 set_bit(STATUS_RF_KILL_HW, &priv->status);
2969
2970 if (test_bit(STATUS_RF_KILL_HW, &status) != test_bit(STATUS_RF_KILL_HW, &priv->status))
2971 queue_work(priv->workqueue, &priv->rf_kill);
2972
2973 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
2974 round_jiffies_relative(2 * HZ));
2975
2976}
2977
Zhu Yib481de92007-09-25 17:54:57 -07002978#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002979static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002980{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002981 struct iwl_priv *priv =
2982 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002983 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002984 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002985 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07002986 .meta.flags = CMD_SIZE_HUGE,
2987 };
2988 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002989 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07002990 struct ieee80211_conf *conf = NULL;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002991 u8 n_probes = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002992 enum ieee80211_band band;
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07002993 bool is_active = false;
Zhu Yib481de92007-09-25 17:54:57 -07002994
2995 conf = ieee80211_get_hw_conf(priv->hw);
2996
2997 mutex_lock(&priv->mutex);
2998
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002999 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003000 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003001 goto done;
3002 }
3003
Tomas Winklera96a27f2008-10-23 23:48:56 -07003004 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07003005 * was given the chance to run... */
3006 if (!test_bit(STATUS_SCANNING, &priv->status))
3007 goto done;
3008
3009 /* This should never be called or scheduled if there is currently
3010 * a scan active in the hardware. */
3011 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003012 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
3013 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003014 rc = -EIO;
3015 goto done;
3016 }
3017
3018 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003019 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07003020 goto done;
3021 }
3022
3023 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003024 IWL_DEBUG_HC(priv,
3025 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003026 goto done;
3027 }
3028
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003029 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003030 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07003031 goto done;
3032 }
3033
3034 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003035 IWL_DEBUG_HC(priv,
3036 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003037 goto done;
3038 }
3039
3040 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08003041 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07003042 goto done;
3043 }
3044
Winkler, Tomas805cee52009-01-19 15:30:28 -08003045 if (!priv->scan) {
3046 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07003047 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08003048 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07003049 rc = -ENOMEM;
3050 goto done;
3051 }
3052 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08003053 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003054 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003055
3056 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
3057 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
3058
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003059 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003060 u16 interval = 0;
3061 u32 extra;
3062 u32 suspend_time = 100;
3063 u32 scan_suspend_time = 100;
3064 unsigned long flags;
3065
Tomas Winklere1623442009-01-27 14:27:56 -08003066 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07003067
3068 spin_lock_irqsave(&priv->lock, flags);
3069 interval = priv->beacon_int;
3070 spin_unlock_irqrestore(&priv->lock, flags);
3071
3072 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003073 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07003074 if (!interval)
3075 interval = suspend_time;
3076 /*
3077 * suspend time format:
3078 * 0-19: beacon interval in usec (time before exec.)
3079 * 20-23: 0
3080 * 24-31: number of beacons (suspend between channels)
3081 */
3082
3083 extra = (suspend_time / interval) << 24;
3084 scan_suspend_time = 0xFF0FFFFF &
3085 (extra | ((suspend_time % interval) * 1024));
3086
3087 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08003088 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003089 scan_suspend_time, interval);
3090 }
3091
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003092 if (priv->scan_request->n_ssids) {
3093 int i, p = 0;
3094 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
3095 for (i = 0; i < priv->scan_request->n_ssids; i++) {
3096 /* always does wildcard anyway */
3097 if (!priv->scan_request->ssids[i].ssid_len)
3098 continue;
3099 scan->direct_scan[p].id = WLAN_EID_SSID;
3100 scan->direct_scan[p].len =
3101 priv->scan_request->ssids[i].ssid_len;
3102 memcpy(scan->direct_scan[p].ssid,
3103 priv->scan_request->ssids[i].ssid,
3104 priv->scan_request->ssids[i].ssid_len);
3105 n_probes++;
3106 p++;
3107 }
3108 is_active = true;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003109 } else
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003110 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003111
3112 /* We don't build a direct scan probe request; the uCode will do
3113 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07003114 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08003115 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07003116 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3117
3118 /* flags + rate selection */
3119
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003120 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003121 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
3122 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
3123 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003124 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003125 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003126 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
Johannes Bergb097ad22009-04-20 14:36:57 -07003127 /*
3128 * If active scaning is requested but a certain channel
3129 * is marked passive, we can do active scanning if we
3130 * detect transmissions.
3131 */
3132 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003133 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003134 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003135 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07003136 goto done;
3137 }
3138
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003139 scan->tx_cmd.len = cpu_to_le16(
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003140 iwl_fill_probe_req(priv,
3141 (struct ieee80211_mgmt *)scan->data,
3142 priv->scan_request->ie,
3143 priv->scan_request->ie_len,
3144 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003145
Zhu Yib481de92007-09-25 17:54:57 -07003146 /* select Rx antennas */
3147 scan->flags |= iwl3945_get_antenna_flags(priv);
3148
Wey-Yi Guy279b05d2009-04-20 14:37:00 -07003149 if (iwl_is_monitor_mode(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003150 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
3151
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003152 scan->channel_count =
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07003153 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003154 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07003155
Reinette Chatre14b54332008-11-04 12:21:35 -08003156 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003157 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08003158 goto done;
3159 }
3160
Zhu Yib481de92007-09-25 17:54:57 -07003161 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003162 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003163 cmd.data = scan;
3164 scan->len = cpu_to_le16(cmd.len);
3165
3166 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003167 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003168 if (rc)
3169 goto done;
3170
3171 queue_delayed_work(priv->workqueue, &priv->scan_check,
3172 IWL_SCAN_CHECK_WATCHDOG);
3173
3174 mutex_unlock(&priv->mutex);
3175 return;
3176
3177 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003178 /* can not perform scan make sure we clear scanning
3179 * bits from status so next scan request can be performed.
3180 * if we dont clear scanning status bit here all next scan
3181 * will fail
3182 */
3183 clear_bit(STATUS_SCAN_HW, &priv->status);
3184 clear_bit(STATUS_SCANNING, &priv->status);
3185
Ian Schram01ebd062007-10-25 17:15:22 +08003186 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003187 queue_work(priv->workqueue, &priv->scan_completed);
3188 mutex_unlock(&priv->mutex);
3189}
3190
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003191static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003192{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003193 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07003194
3195 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3196 return;
3197
3198 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003199 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003200 mutex_unlock(&priv->mutex);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003201 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003202}
3203
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003204static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003205{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003206 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003207
3208 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3209 return;
3210
Johannes Berg19cc1082009-05-08 13:44:36 -07003211 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3212 mutex_lock(&priv->mutex);
3213 priv->vif = NULL;
3214 priv->is_open = 0;
3215 mutex_unlock(&priv->mutex);
3216 iwl3945_down(priv);
3217 ieee80211_restart_hw(priv->hw);
3218 } else {
3219 iwl3945_down(priv);
3220 queue_work(priv->workqueue, &priv->up);
3221 }
Zhu Yib481de92007-09-25 17:54:57 -07003222}
3223
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003224static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003225{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003226 struct iwl_priv *priv =
3227 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003228
3229 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3230 return;
3231
3232 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003233 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003234 mutex_unlock(&priv->mutex);
3235}
3236
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003237#define IWL_DELAY_NEXT_SCAN (HZ*2)
3238
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07003239void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003240{
Zhu Yib481de92007-09-25 17:54:57 -07003241 int rc = 0;
3242 struct ieee80211_conf *conf = NULL;
3243
Johannes Berg05c914f2008-09-11 00:01:58 +02003244 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003245 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003246 return;
3247 }
3248
3249
Tomas Winklere1623442009-01-27 14:27:56 -08003250 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003251 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003252
3253 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3254 return;
3255
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003256 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003257 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003258
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003259 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003260
Zhu Yib481de92007-09-25 17:54:57 -07003261 conf = ieee80211_get_hw_conf(priv->hw);
3262
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003263 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003264 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003265
Tomas Winkler28afaf92008-12-19 10:37:06 +08003266 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003267 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003268 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003269 sizeof(priv->rxon_timing), &priv->rxon_timing);
3270 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003271 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003272 "Attempting to continue.\n");
3273
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003274 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003275
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003276 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003277
Tomas Winklere1623442009-01-27 14:27:56 -08003278 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003279 priv->assoc_id, priv->beacon_int);
3280
3281 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003282 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003283 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003284 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003285
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003286 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003287 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003288 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003289 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003290 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003291
Johannes Berg05c914f2008-09-11 00:01:58 +02003292 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003293 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003294
3295 }
3296
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003297 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003298
3299 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003300 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003301 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003302 break;
3303
Johannes Berg05c914f2008-09-11 00:01:58 +02003304 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003305
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003306 priv->assoc_id = 1;
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07003307 priv->cfg->ops->smgmt->add_station(priv, priv->bssid, 0, 0, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003308 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003309 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003310 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3311 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003312 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3313 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003314
3315 break;
3316
3317 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003318 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003319 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003320 break;
3321 }
3322
Abhijeet Kolekar14d2aac2009-02-27 16:21:24 -08003323 iwl_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003324
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003325 /* we have just associated, don't start scan too early */
3326 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003327}
3328
Zhu Yib481de92007-09-25 17:54:57 -07003329/*****************************************************************************
3330 *
3331 * mac80211 entry point functions
3332 *
3333 *****************************************************************************/
3334
Zhu Yi5a669262008-01-14 17:46:18 -08003335#define UCODE_READY_TIMEOUT (2 * HZ)
3336
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003337static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003338{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003339 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003340 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003341
Tomas Winklere1623442009-01-27 14:27:56 -08003342 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003343
3344 /* we should be verifying the device is ready to be opened */
3345 mutex_lock(&priv->mutex);
3346
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003347 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
Zhu Yi5a669262008-01-14 17:46:18 -08003348 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3349 * ucode filename and max sizes are card-specific. */
3350
3351 if (!priv->ucode_code.len) {
3352 ret = iwl3945_read_ucode(priv);
3353 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003354 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08003355 mutex_unlock(&priv->mutex);
3356 goto out_release_irq;
3357 }
3358 }
3359
Zhu Yie655b9f2008-01-24 02:19:38 -08003360 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003361
Zhu Yib481de92007-09-25 17:54:57 -07003362 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003363
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003364 iwl_rfkill_set_hw_state(priv);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02003365
Zhu Yie655b9f2008-01-24 02:19:38 -08003366 if (ret)
3367 goto out_release_irq;
3368
Tomas Winklere1623442009-01-27 14:27:56 -08003369 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003370
Zhu Yi5a669262008-01-14 17:46:18 -08003371 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3372 * mac80211 will not be run successfully. */
3373 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3374 test_bit(STATUS_READY, &priv->status),
3375 UCODE_READY_TIMEOUT);
3376 if (!ret) {
3377 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003378 IWL_ERR(priv,
3379 "Wait for START_ALIVE timeout after %dms.\n",
3380 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08003381 ret = -ETIMEDOUT;
3382 goto out_release_irq;
3383 }
3384 }
3385
Helmut Schaa26635162009-01-15 09:38:44 +01003386 /* ucode is running and will send rfkill notifications,
3387 * no need to poll the killswitch state anymore */
3388 cancel_delayed_work(&priv->rfkill_poll);
3389
Zhu Yie655b9f2008-01-24 02:19:38 -08003390 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003391 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003392 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003393
3394out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003395 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003396 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08003397 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003398}
3399
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003400static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003401{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003402 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003403
Tomas Winklere1623442009-01-27 14:27:56 -08003404 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003405
Zhu Yie655b9f2008-01-24 02:19:38 -08003406 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003407 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003408 return;
3409 }
3410
Zhu Yib481de92007-09-25 17:54:57 -07003411 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003412
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003413 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003414 /* stop mac, cancel any scan request and clear
3415 * RXON_FILTER_ASSOC_MSK BIT
3416 */
Zhu Yi5a669262008-01-14 17:46:18 -08003417 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003418 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003419 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003420 }
3421
Zhu Yi5a669262008-01-14 17:46:18 -08003422 iwl3945_down(priv);
3423
3424 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003425
3426 /* start polling the killswitch state again */
3427 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3428 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003429
Tomas Winklere1623442009-01-27 14:27:56 -08003430 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003431}
3432
Johannes Berge039fa42008-05-15 12:55:29 +02003433static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003434{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003435 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003436
Tomas Winklere1623442009-01-27 14:27:56 -08003437 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003438
Tomas Winklere1623442009-01-27 14:27:56 -08003439 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003440 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003441
Johannes Berge039fa42008-05-15 12:55:29 +02003442 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003443 dev_kfree_skb_any(skb);
3444
Tomas Winklere1623442009-01-27 14:27:56 -08003445 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003446 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003447}
3448
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07003449void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003450{
3451 int rc = 0;
3452
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003453 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003454 return;
3455
3456 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003457 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003458
3459 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003460 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003461 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003462
3463 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003464 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003465 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003466 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3467 sizeof(priv->rxon_timing),
3468 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003469 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003470 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003471 "Attempting to continue.\n");
3472
3473 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003474 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003475 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003476 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003477 RXON_FLG_SHORT_PREAMBLE_MSK;
3478 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003479 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003480 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3481
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003482 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003483 if (priv->assoc_capability &
3484 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003485 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003486 RXON_FLG_SHORT_SLOT_MSK;
3487 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003488 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003489 ~RXON_FLG_SHORT_SLOT_MSK;
3490
Johannes Berg05c914f2008-09-11 00:01:58 +02003491 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003492 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003493 ~RXON_FLG_SHORT_SLOT_MSK;
3494 }
3495 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003496 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003497 iwlcore_commit_rxon(priv);
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07003498 priv->cfg->ops->smgmt->add_station(priv, iwl_bcast_addr, 0, 0, NULL);
Zhu Yi556f8db2007-09-27 11:27:33 +08003499 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003500 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003501
3502 /* FIXME - we need to add code here to detect a totally new
3503 * configuration, reset the AP, unassoc, rxon timing, assoc,
3504 * clear sta table, add BCAST sta... */
3505}
3506
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003507static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003508 struct ieee80211_vif *vif,
3509 struct ieee80211_sta *sta,
3510 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003511{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003512 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01003513 const u8 *addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003514 int ret = 0;
3515 u8 sta_id = IWL_INVALID_STATION;
3516 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07003517
Tomas Winklere1623442009-01-27 14:27:56 -08003518 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003519
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003520 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003521 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003522 return -EOPNOTSUPP;
3523 }
3524
Winkler, Tomas42986792009-01-19 15:30:22 -08003525 addr = sta ? sta->addr : iwl_bcast_addr;
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003526 static_key = !iwl_is_associated(priv);
3527
3528 if (!static_key) {
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07003529 sta_id = priv->cfg->ops->smgmt->find_station(priv, addr);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003530 if (sta_id == IWL_INVALID_STATION) {
Joe Perches12514392009-04-16 16:23:26 -07003531 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003532 addr);
3533 return -EINVAL;
3534 }
Zhu Yib481de92007-09-25 17:54:57 -07003535 }
3536
3537 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003538 iwl_scan_cancel_timeout(priv, 100);
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003539 mutex_unlock(&priv->mutex);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003540
Zhu Yib481de92007-09-25 17:54:57 -07003541 switch (cmd) {
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003542 case SET_KEY:
3543 if (static_key)
3544 ret = iwl3945_set_static_key(priv, key);
3545 else
3546 ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3547 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003548 break;
3549 case DISABLE_KEY:
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -08003550 if (static_key)
3551 ret = iwl3945_remove_static_key(priv);
3552 else
3553 ret = iwl3945_clear_sta_key_info(priv, sta_id);
3554 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003555 break;
3556 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08003557 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003558 }
3559
Tomas Winklere1623442009-01-27 14:27:56 -08003560 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003561
Winkler, Tomas42986792009-01-19 15:30:22 -08003562 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003563}
3564
Zhu Yib481de92007-09-25 17:54:57 -07003565/*****************************************************************************
3566 *
3567 * sysfs attributes
3568 *
3569 *****************************************************************************/
3570
Samuel Ortizd08853a2009-01-23 13:45:17 -08003571#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003572
3573/*
3574 * The following adds a new attribute to the sysfs representation
3575 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3576 * used for controlling the debug level.
3577 *
3578 * See the level definitions in iwl for details.
3579 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003580static ssize_t show_debug_level(struct device *d,
3581 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003582{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003583 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003584
3585 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003586}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003587static ssize_t store_debug_level(struct device *d,
3588 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003589 const char *buf, size_t count)
3590{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003591 struct iwl_priv *priv = dev_get_drvdata(d);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003592 unsigned long val;
3593 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003594
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003595 ret = strict_strtoul(buf, 0, &val);
3596 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003597 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003598 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003599 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003600
3601 return strnlen(buf, count);
3602}
3603
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003604static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3605 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003606
Samuel Ortizd08853a2009-01-23 13:45:17 -08003607#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003608
Zhu Yib481de92007-09-25 17:54:57 -07003609static ssize_t show_temperature(struct device *d,
3610 struct device_attribute *attr, char *buf)
3611{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003612 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003613
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003614 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003615 return -EAGAIN;
3616
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003617 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07003618}
3619
3620static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3621
Zhu Yib481de92007-09-25 17:54:57 -07003622static ssize_t show_tx_power(struct device *d,
3623 struct device_attribute *attr, char *buf)
3624{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003625 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08003626 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003627}
3628
3629static ssize_t store_tx_power(struct device *d,
3630 struct device_attribute *attr,
3631 const char *buf, size_t count)
3632{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003633 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003634 char *p = (char *)buf;
3635 u32 val;
3636
3637 val = simple_strtoul(p, &p, 10);
3638 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08003639 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003640 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003641 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07003642
3643 return count;
3644}
3645
3646static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3647
3648static ssize_t show_flags(struct device *d,
3649 struct device_attribute *attr, char *buf)
3650{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003651 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003652
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003653 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07003654}
3655
3656static ssize_t store_flags(struct device *d,
3657 struct device_attribute *attr,
3658 const char *buf, size_t count)
3659{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003660 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003661 u32 flags = simple_strtoul(buf, NULL, 0);
3662
3663 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003664 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003665 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003666 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003667 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003668 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003669 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07003670 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003671 priv->staging_rxon.flags = cpu_to_le32(flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003672 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003673 }
3674 }
3675 mutex_unlock(&priv->mutex);
3676
3677 return count;
3678}
3679
3680static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3681
3682static ssize_t show_filter_flags(struct device *d,
3683 struct device_attribute *attr, char *buf)
3684{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003685 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003686
3687 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003688 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003689}
3690
3691static ssize_t store_filter_flags(struct device *d,
3692 struct device_attribute *attr,
3693 const char *buf, size_t count)
3694{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003695 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003696 u32 filter_flags = simple_strtoul(buf, NULL, 0);
3697
3698 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003699 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07003700 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003701 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003702 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003703 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003704 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003705 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003706 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07003707 cpu_to_le32(filter_flags);
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07003708 iwlcore_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003709 }
3710 }
3711 mutex_unlock(&priv->mutex);
3712
3713 return count;
3714}
3715
3716static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3717 store_filter_flags);
3718
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003719#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003720
3721static ssize_t show_measurement(struct device *d,
3722 struct device_attribute *attr, char *buf)
3723{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003724 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003725 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003726 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003727 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003728 unsigned long flags;
3729
3730 spin_lock_irqsave(&priv->lock, flags);
3731 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3732 spin_unlock_irqrestore(&priv->lock, flags);
3733 return 0;
3734 }
3735 memcpy(&measure_report, &priv->measure_report, size);
3736 priv->measurement_status = 0;
3737 spin_unlock_irqrestore(&priv->lock, flags);
3738
3739 while (size && (PAGE_SIZE - len)) {
3740 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3741 PAGE_SIZE - len, 1);
3742 len = strlen(buf);
3743 if (PAGE_SIZE - len)
3744 buf[len++] = '\n';
3745
3746 ofs += 16;
3747 size -= min(size, 16U);
3748 }
3749
3750 return len;
3751}
3752
3753static ssize_t store_measurement(struct device *d,
3754 struct device_attribute *attr,
3755 const char *buf, size_t count)
3756{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003757 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003758 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003759 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07003760 .start_time = cpu_to_le64(priv->last_tsf),
3761 .duration = cpu_to_le16(1),
3762 };
3763 u8 type = IWL_MEASURE_BASIC;
3764 u8 buffer[32];
3765 u8 channel;
3766
3767 if (count) {
3768 char *p = buffer;
3769 strncpy(buffer, buf, min(sizeof(buffer), count));
3770 channel = simple_strtoul(p, NULL, 0);
3771 if (channel)
3772 params.channel = channel;
3773
3774 p = buffer;
3775 while (*p && *p != ' ')
3776 p++;
3777 if (*p)
3778 type = simple_strtoul(p + 1, NULL, 0);
3779 }
3780
Tomas Winklere1623442009-01-27 14:27:56 -08003781 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07003782 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003783 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003784
3785 return count;
3786}
3787
3788static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3789 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003790#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003791
Zhu Yib481de92007-09-25 17:54:57 -07003792static ssize_t store_retry_rate(struct device *d,
3793 struct device_attribute *attr,
3794 const char *buf, size_t count)
3795{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003796 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003797
3798 priv->retry_rate = simple_strtoul(buf, NULL, 0);
3799 if (priv->retry_rate <= 0)
3800 priv->retry_rate = 1;
3801
3802 return count;
3803}
3804
3805static ssize_t show_retry_rate(struct device *d,
3806 struct device_attribute *attr, char *buf)
3807{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003808 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003809 return sprintf(buf, "%d", priv->retry_rate);
3810}
3811
3812static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3813 store_retry_rate);
3814
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003815
Zhu Yib481de92007-09-25 17:54:57 -07003816static ssize_t store_power_level(struct device *d,
3817 struct device_attribute *attr,
3818 const char *buf, size_t count)
3819{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003820 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003821 int ret;
3822 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003823
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003824
Zhu Yib481de92007-09-25 17:54:57 -07003825 mutex_lock(&priv->mutex);
3826
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003827 ret = strict_strtoul(buf, 10, &mode);
3828 if (ret)
3829 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003830
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003831 ret = iwl_power_set_user_mode(priv, mode);
3832 if (ret) {
3833 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
3834 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003835 }
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003836 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003837
3838 out:
3839 mutex_unlock(&priv->mutex);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003840 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003841}
3842
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003843static ssize_t show_power_level(struct device *d,
3844 struct device_attribute *attr, char *buf)
3845{
3846 struct iwl_priv *priv = dev_get_drvdata(d);
3847 int mode = priv->power_data.user_power_setting;
3848 int system = priv->power_data.system_power_setting;
3849 int level = priv->power_data.power_mode;
3850 char *p = buf;
3851
3852 switch (system) {
3853 case IWL_POWER_SYS_AUTO:
3854 p += sprintf(p, "SYSTEM:auto");
3855 break;
3856 case IWL_POWER_SYS_AC:
3857 p += sprintf(p, "SYSTEM:ac");
3858 break;
3859 case IWL_POWER_SYS_BATTERY:
3860 p += sprintf(p, "SYSTEM:battery");
3861 break;
3862 }
3863
3864 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3865 "fixed" : "auto");
3866 p += sprintf(p, "\tINDEX:%d", level);
3867 p += sprintf(p, "\n");
3868 return p - buf + 1;
3869}
3870
3871static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR,
3872 show_power_level, store_power_level);
3873
Zhu Yib481de92007-09-25 17:54:57 -07003874#define MAX_WX_STRING 80
3875
3876/* Values are in microsecond */
3877static const s32 timeout_duration[] = {
3878 350000,
3879 250000,
3880 75000,
3881 37000,
3882 25000,
3883};
3884static const s32 period_duration[] = {
3885 400000,
3886 700000,
3887 1000000,
3888 1000000,
3889 1000000
3890};
3891
Zhu Yib481de92007-09-25 17:54:57 -07003892static ssize_t show_channels(struct device *d,
3893 struct device_attribute *attr, char *buf)
3894{
Johannes Berg8318d782008-01-24 19:38:38 +01003895 /* all this shit doesn't belong into sysfs anyway */
3896 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003897}
3898
3899static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3900
3901static ssize_t show_statistics(struct device *d,
3902 struct device_attribute *attr, char *buf)
3903{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003904 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003905 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003906 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003907 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07003908 int rc = 0;
3909
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003910 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003911 return -EAGAIN;
3912
3913 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003914 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003915 mutex_unlock(&priv->mutex);
3916
3917 if (rc) {
3918 len = sprintf(buf,
3919 "Error sending statistics request: 0x%08X\n", rc);
3920 return len;
3921 }
3922
3923 while (size && (PAGE_SIZE - len)) {
3924 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3925 PAGE_SIZE - len, 1);
3926 len = strlen(buf);
3927 if (PAGE_SIZE - len)
3928 buf[len++] = '\n';
3929
3930 ofs += 16;
3931 size -= min(size, 16U);
3932 }
3933
3934 return len;
3935}
3936
3937static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3938
3939static ssize_t show_antenna(struct device *d,
3940 struct device_attribute *attr, char *buf)
3941{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003942 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003943
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003944 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003945 return -EAGAIN;
3946
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003947 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07003948}
3949
3950static ssize_t store_antenna(struct device *d,
3951 struct device_attribute *attr,
3952 const char *buf, size_t count)
3953{
Winkler, Tomas7530f852009-01-27 14:27:53 -08003954 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003955 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07003956
3957 if (count == 0)
3958 return 0;
3959
3960 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08003961 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003962 return count;
3963 }
3964
3965 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003966 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08003967 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07003968 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003969 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07003970
3971
3972 return count;
3973}
3974
3975static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3976
3977static ssize_t show_status(struct device *d,
3978 struct device_attribute *attr, char *buf)
3979{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003980 struct iwl_priv *priv = dev_get_drvdata(d);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003981 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003982 return -EAGAIN;
3983 return sprintf(buf, "0x%08x\n", (int)priv->status);
3984}
3985
3986static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3987
3988static ssize_t dump_error_log(struct device *d,
3989 struct device_attribute *attr,
3990 const char *buf, size_t count)
3991{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003992 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003993 char *p = (char *)buf;
3994
3995 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003996 iwl3945_dump_nic_error_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003997
3998 return strnlen(buf, count);
3999}
4000
4001static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
4002
4003static ssize_t dump_event_log(struct device *d,
4004 struct device_attribute *attr,
4005 const char *buf, size_t count)
4006{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07004007 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004008 char *p = (char *)buf;
4009
4010 if (p[0] == '1')
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07004011 iwl3945_dump_nic_event_log(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004012
4013 return strnlen(buf, count);
4014}
4015
4016static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
4017
4018/*****************************************************************************
4019 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07004020 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07004021 *
4022 *****************************************************************************/
4023
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004024static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004025{
Reinette Chatred21050c2009-02-13 11:51:18 -08004026 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07004027
4028 init_waitqueue_head(&priv->wait_command_queue);
4029
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004030 INIT_WORK(&priv->up, iwl3945_bg_up);
4031 INIT_WORK(&priv->restart, iwl3945_bg_restart);
4032 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004033 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004034 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004035 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
4036 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01004037 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08004038 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
4039 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
4040 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
4041 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07004042
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004043 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004044
4045 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004046 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004047}
4048
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004049static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004050{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004051 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004052
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09004053 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004054 cancel_delayed_work(&priv->scan_check);
4055 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004056 cancel_work_sync(&priv->beacon_update);
4057}
4058
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004059static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07004060 &dev_attr_antenna.attr,
4061 &dev_attr_channels.attr,
4062 &dev_attr_dump_errors.attr,
4063 &dev_attr_dump_events.attr,
4064 &dev_attr_flags.attr,
4065 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004066#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004067 &dev_attr_measurement.attr,
4068#endif
4069 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004070 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004071 &dev_attr_statistics.attr,
4072 &dev_attr_status.attr,
4073 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004074 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08004075#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004076 &dev_attr_debug_level.attr,
4077#endif
Zhu Yib481de92007-09-25 17:54:57 -07004078 NULL
4079};
4080
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004081static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07004082 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004083 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07004084};
4085
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004086static struct ieee80211_ops iwl3945_hw_ops = {
4087 .tx = iwl3945_mac_tx,
4088 .start = iwl3945_mac_start,
4089 .stop = iwl3945_mac_stop,
Abhijeet Kolekarcbb6ab92009-04-08 11:26:46 -07004090 .add_interface = iwl_mac_add_interface,
Abhijeet Kolekard8052312009-04-08 11:26:47 -07004091 .remove_interface = iwl_mac_remove_interface,
Abhijeet Kolekar48083682009-04-08 11:26:48 -07004092 .config = iwl_mac_config,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004093 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004094 .set_key = iwl3945_mac_set_key,
Abhijeet Kolekaraa89f312009-04-08 11:26:51 -07004095 .get_tx_stats = iwl_mac_get_tx_stats,
Abhijeet Kolekar488829f2009-03-26 10:14:10 -07004096 .conf_tx = iwl_mac_conf_tx,
Abhijeet Kolekarbd564262009-04-08 11:26:52 -07004097 .reset_tsf = iwl_mac_reset_tsf,
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07004098 .bss_info_changed = iwl_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08004099 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07004100};
4101
Winkler, Tomase52119c2008-12-22 11:31:19 +08004102static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004103{
4104 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08004105 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004106
4107 priv->retry_rate = 1;
4108 priv->ibss_beacon = NULL;
4109
4110 spin_lock_init(&priv->lock);
Winkler, Tomas3dae0c42009-01-19 15:30:30 -08004111 spin_lock_init(&priv->power_data.lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004112 spin_lock_init(&priv->sta_lock);
4113 spin_lock_init(&priv->hcmd_lock);
4114
4115 INIT_LIST_HEAD(&priv->free_frames);
4116
4117 mutex_init(&priv->mutex);
4118
4119 /* Clear the driver's (not device's) station table */
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07004120 priv->cfg->ops->smgmt->clear_station_table(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004121
4122 priv->data_retry_limit = -1;
4123 priv->ieee_channels = NULL;
4124 priv->ieee_rates = NULL;
4125 priv->band = IEEE80211_BAND_2GHZ;
4126
4127 priv->iw_mode = NL80211_IFTYPE_STATION;
4128
4129 iwl_reset_qos(priv);
4130
4131 priv->qos_data.qos_active = 0;
4132 priv->qos_data.qos_cap.val = 0;
4133
4134 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004135 /* If power management is turned on, default to CAM mode */
4136 priv->power_mode = IWL_POWER_MODE_CAM;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08004137 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004138
Samuel Ortize6148912009-01-23 13:45:15 -08004139 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
4140 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
4141 eeprom->version);
4142 ret = -EINVAL;
4143 goto err;
4144 }
4145 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004146 if (ret) {
4147 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4148 goto err;
4149 }
4150
Samuel Ortize6148912009-01-23 13:45:15 -08004151 /* Set up txpower settings in driver for all channels */
4152 if (iwl3945_txpower_set_from_eeprom(priv)) {
4153 ret = -EIO;
4154 goto err_free_channel_map;
4155 }
4156
Samuel Ortiz534166d2009-01-23 13:45:16 -08004157 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004158 if (ret) {
4159 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4160 goto err_free_channel_map;
4161 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08004162 iwl3945_init_hw_rates(priv, priv->ieee_rates);
4163
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004164 return 0;
4165
4166err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08004167 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004168err:
4169 return ret;
4170}
4171
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004172static int iwl3945_setup_mac(struct iwl_priv *priv)
4173{
4174 int ret;
4175 struct ieee80211_hw *hw = priv->hw;
4176
4177 hw->rate_control_algorithm = "iwl-3945-rs";
4178 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
4179
4180 /* Tell mac80211 our characteristics */
4181 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Mohamed Abbasb1c60192009-03-17 21:51:47 -07004182 IEEE80211_HW_NOISE_DBM |
4183 IEEE80211_HW_SPECTRUM_MGMT;
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004184
4185 hw->wiphy->interface_modes =
4186 BIT(NL80211_IFTYPE_STATION) |
4187 BIT(NL80211_IFTYPE_ADHOC);
4188
4189 hw->wiphy->custom_regulatory = true;
4190
Johannes Berg1ecf9fc2009-04-20 14:36:56 -07004191 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
4192 /* we create the 802.11 header and a zero-length SSID element */
4193 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
Johannes Bergd60cc912009-04-09 09:56:02 +02004194
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004195 /* Default value; 4 EDCA QOS priorities */
4196 hw->queues = 4;
4197
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004198 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4199 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4200 &priv->bands[IEEE80211_BAND_2GHZ];
4201
4202 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4203 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4204 &priv->bands[IEEE80211_BAND_5GHZ];
4205
4206 ret = ieee80211_register_hw(priv->hw);
4207 if (ret) {
4208 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
4209 return ret;
4210 }
4211 priv->mac80211_registered = 1;
4212
4213 return 0;
4214}
4215
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004216static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004217{
4218 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004219 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004220 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08004221 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08004222 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004223 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004224
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004225 /***********************
4226 * 1. Allocating HW data
4227 * ********************/
4228
Zhu Yib481de92007-09-25 17:54:57 -07004229 /* mac80211 allocates memory for this device instance, including
4230 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004231 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07004232 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004233 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07004234 err = -ENOMEM;
4235 goto out;
4236 }
Zhu Yib481de92007-09-25 17:54:57 -07004237 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004238 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004239
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004240 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
4241 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004242 IWL_ERR(priv,
4243 "invalid queues_num, should be between %d and %d\n",
4244 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08004245 err = -EINVAL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004246 goto out_ieee80211_free_hw;
Samuel Ortiza3139c52008-12-19 10:37:09 +08004247 }
4248
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004249 /*
4250 * Disabling hardware scan means that mac80211 will perform scans
4251 * "the hard way", rather than using device's scan.
4252 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004253 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08004254 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004255 iwl3945_hw_ops.hw_scan = NULL;
4256 }
4257
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004258
Tomas Winklere1623442009-01-27 14:27:56 -08004259 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004260 priv->cfg = cfg;
4261 priv->pci_dev = pdev;
4262
Samuel Ortizd08853a2009-01-23 13:45:17 -08004263#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004264 priv->debug_level = iwl3945_mod_params.debug;
4265 atomic_set(&priv->restrict_refcnt, 0);
4266#endif
Zhu Yib481de92007-09-25 17:54:57 -07004267
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004268 /***************************
4269 * 2. Initializing PCI bus
4270 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07004271 if (pci_enable_device(pdev)) {
4272 err = -ENODEV;
4273 goto out_ieee80211_free_hw;
4274 }
4275
4276 pci_set_master(pdev);
4277
Yang Hongyang284901a2009-04-06 19:01:15 -07004278 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004279 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -07004280 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Zhu Yib481de92007-09-25 17:54:57 -07004281 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004282 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004283 goto out_pci_disable_device;
4284 }
4285
4286 pci_set_drvdata(pdev, priv);
4287 err = pci_request_regions(pdev, DRV_NAME);
4288 if (err)
4289 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004290
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004291 /***********************
4292 * 3. Read REV Register
4293 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07004294 priv->hw_base = pci_iomap(pdev, 0, 0);
4295 if (!priv->hw_base) {
4296 err = -ENODEV;
4297 goto out_pci_release_regions;
4298 }
4299
Tomas Winklere1623442009-01-27 14:27:56 -08004300 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07004301 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004302 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07004303
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004304 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4305 * PCI Tx retries from interfering with C3 CPU state */
4306 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07004307
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004308 /* amp init */
4309 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004310 if (err < 0) {
David S. Millerd5df2a12009-03-10 05:04:16 -07004311 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004312 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004313 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004314
4315 /***********************
4316 * 4. Read EEPROM
4317 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004318
Zhu Yi5a669262008-01-14 17:46:18 -08004319 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08004320 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004321 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004322 IWL_ERR(priv, "Unable to init EEPROM\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004323 goto out_iounmap;
Zhu Yi5a669262008-01-14 17:46:18 -08004324 }
4325 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08004326 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4327 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004328 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08004329 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4330
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004331 /***********************
4332 * 5. Setup HW Constants
4333 * ********************/
4334 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004335 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004336 IWL_ERR(priv, "failed to set hw settings\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004337 goto out_eeprom_free;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004338 }
4339
4340 /***********************
4341 * 6. Setup priv
4342 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004343
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004344 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004345 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004346 IWL_ERR(priv, "initializing driver failed\n");
Reinette Chatrec8f16132009-02-27 16:21:22 -08004347 goto out_unset_hw_params;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004348 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004349
Tomas Winkler978785a2008-12-19 10:37:31 +08004350 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4351 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004352
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004353 /***********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004354 * 7. Setup Services
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004355 * ********************/
4356
4357 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004358 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004359 spin_unlock_irqrestore(&priv->lock, flags);
4360
Helmut Schaa26635162009-01-15 09:38:44 +01004361 pci_enable_msi(priv->pci_dev);
4362
Abhijeet Kolekarf17d08a2009-02-18 15:54:31 -08004363 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
Helmut Schaa26635162009-01-15 09:38:44 +01004364 DRV_NAME, priv);
4365 if (err) {
4366 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4367 goto out_disable_msi;
4368 }
4369
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004370 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4371 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004372 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004373 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004374 }
4375
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004376 iwl_set_rxon_channel(priv,
4377 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004378 iwl3945_setup_deferred_work(priv);
4379 iwl3945_setup_rx_handlers(priv);
4380
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004381 /*********************************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004382 * 8. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004383 * *******************************/
4384
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004385 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004386
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004387 err = iwl3945_setup_mac(priv);
4388 if (err)
4389 goto out_remove_sysfs;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004390
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004391 err = iwl_dbgfs_register(priv, DRV_NAME);
4392 if (err)
4393 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4394
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004395 err = iwl_rfkill_init(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004396 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004397 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004398 "Ignoring error: %d\n", err);
Abhijeet Kolekar2a4ddaa2009-02-27 16:21:23 -08004399 else
4400 iwl_rfkill_set_hw_state(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08004401
Helmut Schaa26635162009-01-15 09:38:44 +01004402 /* Start monitoring the killswitch */
4403 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4404 2 * HZ);
4405
Zhu Yib481de92007-09-25 17:54:57 -07004406 return 0;
4407
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08004408 out_remove_sysfs:
Zhu Yib481de92007-09-25 17:54:57 -07004409 destroy_workqueue(priv->workqueue);
4410 priv->workqueue = NULL;
Reinette Chatrec8f16132009-02-27 16:21:22 -08004411 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4412 out_release_irq:
4413 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa26635162009-01-15 09:38:44 +01004414 out_disable_msi:
4415 pci_disable_msi(priv->pci_dev);
Reinette Chatrec8f16132009-02-27 16:21:22 -08004416 iwlcore_free_geos(priv);
4417 iwl_free_channel_map(priv);
4418 out_unset_hw_params:
4419 iwl3945_unset_hw_params(priv);
4420 out_eeprom_free:
4421 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004422 out_iounmap:
4423 pci_iounmap(pdev, priv->hw_base);
4424 out_pci_release_regions:
4425 pci_release_regions(pdev);
4426 out_pci_disable_device:
Zhu Yib481de92007-09-25 17:54:57 -07004427 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004428 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004429 out_ieee80211_free_hw:
4430 ieee80211_free_hw(priv->hw);
4431 out:
4432 return err;
4433}
4434
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004435static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004436{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004437 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004438 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004439
4440 if (!priv)
4441 return;
4442
Tomas Winklere1623442009-01-27 14:27:56 -08004443 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004444
Abhijeet Kolekara75fbe82009-04-20 14:36:58 -07004445 iwl_dbgfs_unregister(priv);
4446
Zhu Yib481de92007-09-25 17:54:57 -07004447 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08004448
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08004449 if (priv->mac80211_registered) {
4450 ieee80211_unregister_hw(priv->hw);
4451 priv->mac80211_registered = 0;
4452 } else {
4453 iwl3945_down(priv);
4454 }
Zhu Yib481de92007-09-25 17:54:57 -07004455
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004456 /* make sure we flush any pending irq or
4457 * tasklet for the driver
4458 */
4459 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08004460 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004461 spin_unlock_irqrestore(&priv->lock, flags);
4462
4463 iwl_synchronize_irq(priv);
4464
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004465 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07004466
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004467 iwl_rfkill_unregister(priv);
Reinette Chatre71d449b2009-04-20 14:37:01 -07004468 cancel_delayed_work_sync(&priv->rfkill_poll);
Helmut Schaa26635162009-01-15 09:38:44 +01004469
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004470 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004471
4472 if (priv->rxq.bd)
Reinette Chatredf833b12009-04-21 10:55:48 -07004473 iwl3945_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004474 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004475
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08004476 iwl3945_unset_hw_params(priv);
Abhijeet Kolekar40ace5b2009-04-08 11:26:40 -07004477 priv->cfg->ops->smgmt->clear_station_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004478
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004479 /*netif_stop_queue(dev); */
4480 flush_workqueue(priv->workqueue);
4481
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004482 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004483 * priv->workqueue... so we can't take down the workqueue
4484 * until now... */
4485 destroy_workqueue(priv->workqueue);
4486 priv->workqueue = NULL;
4487
Helmut Schaa26635162009-01-15 09:38:44 +01004488 free_irq(pdev->irq, priv);
4489 pci_disable_msi(pdev);
4490
Zhu Yib481de92007-09-25 17:54:57 -07004491 pci_iounmap(pdev, priv->hw_base);
4492 pci_release_regions(pdev);
4493 pci_disable_device(pdev);
4494 pci_set_drvdata(pdev, NULL);
4495
Samuel Ortize6148912009-01-23 13:45:15 -08004496 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08004497 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08004498 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07004499 if (priv->ibss_beacon)
4500 dev_kfree_skb(priv->ibss_beacon);
4501
4502 ieee80211_free_hw(priv->hw);
4503}
4504
Zhu Yib481de92007-09-25 17:54:57 -07004505
4506/*****************************************************************************
4507 *
4508 * driver and module entry point
4509 *
4510 *****************************************************************************/
4511
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004512static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004513 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004514 .id_table = iwl3945_hw_card_ids,
4515 .probe = iwl3945_pci_probe,
4516 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004517#ifdef CONFIG_PM
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07004518 .suspend = iwl_pci_suspend,
4519 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004520#endif
4521};
4522
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004523static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004524{
4525
4526 int ret;
4527 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4528 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004529
4530 ret = iwl3945_rate_control_register();
4531 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004532 printk(KERN_ERR DRV_NAME
4533 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004534 return ret;
4535 }
4536
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004537 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004538 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004539 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004540 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004541 }
Zhu Yib481de92007-09-25 17:54:57 -07004542
4543 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004544
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004545error_register:
4546 iwl3945_rate_control_unregister();
4547 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004548}
4549
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004550static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004551{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004552 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004553 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004554}
4555
Reinette Chatrea0987a82008-12-02 12:14:06 -08004556MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08004557
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004558module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004559MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08004560module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
4561MODULE_PARM_DESC(swcrypto,
4562 "using software crypto (default 1 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004563module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004564MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004565module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004566MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
4567
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004568module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07004569MODULE_PARM_DESC(queues_num, "number of hw queues.");
4570
Samuel Ortizaf48d042009-01-23 13:45:19 -08004571module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
4572MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4573
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004574module_exit(iwl3945_exit);
4575module_init(iwl3945_init);