iwl3945: Add restart_fw module parameter
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl3945-base.c
CommitLineData
b481de9c
ZY
1/******************************************************************************
2 *
01f8162a 3 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
b481de9c
ZY
4 *
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:
759ef89f 25 * Intel Linux Wireless <ilw@linux.intel.com>
b481de9c
ZY
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
b481de9c
ZY
30#include <linux/kernel.h>
31#include <linux/module.h>
b481de9c
ZY
32#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>
b481de9c
ZY
40#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
7e272fcf 44#include <net/lib80211.h>
b481de9c
ZY
45#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
a3139c59
SO
49#define DRV_NAME "iwl3945"
50
dbb6654c
WT
51#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
600c0e11 53#include "iwl-commands.h"
b481de9c
ZY
54#include "iwl-3945.h"
55#include "iwl-helpers.h"
5747d47f 56#include "iwl-core.h"
d20b3c65 57#include "iwl-dev.h"
b481de9c 58
b481de9c
ZY
59/*
60 * module name, copyright, version, etc.
b481de9c
ZY
61 */
62
63#define DRV_DESCRIPTION \
64"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
65
d08853a3 66#ifdef CONFIG_IWLWIFI_DEBUG
b481de9c
ZY
67#define VD "d"
68#else
69#define VD
70#endif
71
c8b0e6e1 72#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
73#define VS "s"
74#else
75#define VS
76#endif
77
eaa686c3 78#define IWL39_VERSION "1.2.26k" VD VS
01f8162a 79#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
a7b75207 80#define DRV_AUTHOR "<ilw@linux.intel.com>"
eaa686c3 81#define DRV_VERSION IWL39_VERSION
b481de9c 82
b481de9c
ZY
83
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
a7b75207 86MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
b481de9c
ZY
87MODULE_LICENSE("GPL");
88
df878d8f
KA
89 /* module parameters */
90struct iwl_mod_params iwl3945_mod_params = {
91 .num_of_queues = IWL39_MAX_NUM_QUEUES,
9c74d9fb 92 .sw_crypto = 1,
af48d048 93 .restart_fw = 1,
df878d8f
KA
94 /* the rest are 0 by default */
95};
96
b481de9c 97/*************** STATION TABLE MANAGEMENT ****
9fbab516 98 * mac80211 should be examined to determine if sta_info is duplicating
b481de9c
ZY
99 * the functionality provided here
100 */
101
102/**************************************************************/
01ebd063 103#if 0 /* temporary disable till we add real remove station */
6440adb5
CB
104/**
105 * iwl3945_remove_station - Remove driver's knowledge of station.
106 *
107 * NOTE: This does not remove station from device's station table.
108 */
4a8a4322 109static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
b481de9c
ZY
110{
111 int index = IWL_INVALID_STATION;
112 int i;
113 unsigned long flags;
114
115 spin_lock_irqsave(&priv->sta_lock, flags);
116
117 if (is_ap)
118 index = IWL_AP_ID;
119 else if (is_broadcast_ether_addr(addr))
3832ec9d 120 index = priv->hw_params.bcast_sta_id;
b481de9c 121 else
3832ec9d 122 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
f2c7e521
AK
123 if (priv->stations_39[i].used &&
124 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
b481de9c
ZY
125 addr)) {
126 index = i;
127 break;
128 }
129
130 if (unlikely(index == IWL_INVALID_STATION))
131 goto out;
132
f2c7e521
AK
133 if (priv->stations_39[index].used) {
134 priv->stations_39[index].used = 0;
b481de9c
ZY
135 priv->num_stations--;
136 }
137
138 BUG_ON(priv->num_stations < 0);
139
140out:
141 spin_unlock_irqrestore(&priv->sta_lock, flags);
142 return 0;
143}
556f8db7 144#endif
6440adb5
CB
145
146/**
147 * iwl3945_clear_stations_table - Clear the driver's station table
148 *
149 * NOTE: This does not clear or otherwise alter the device's station table.
150 */
4a8a4322 151static void iwl3945_clear_stations_table(struct iwl_priv *priv)
b481de9c
ZY
152{
153 unsigned long flags;
154
155 spin_lock_irqsave(&priv->sta_lock, flags);
156
157 priv->num_stations = 0;
f2c7e521 158 memset(priv->stations_39, 0, sizeof(priv->stations_39));
b481de9c
ZY
159
160 spin_unlock_irqrestore(&priv->sta_lock, flags);
161}
162
6440adb5
CB
163/**
164 * iwl3945_add_station - Add station to station tables in driver and device
165 */
4a8a4322 166u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
b481de9c
ZY
167{
168 int i;
169 int index = IWL_INVALID_STATION;
bb8c093b 170 struct iwl3945_station_entry *station;
b481de9c 171 unsigned long flags_spin;
c14c521e 172 u8 rate;
b481de9c
ZY
173
174 spin_lock_irqsave(&priv->sta_lock, flags_spin);
175 if (is_ap)
176 index = IWL_AP_ID;
177 else if (is_broadcast_ether_addr(addr))
3832ec9d 178 index = priv->hw_params.bcast_sta_id;
b481de9c 179 else
3832ec9d 180 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
f2c7e521 181 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
b481de9c
ZY
182 addr)) {
183 index = i;
184 break;
185 }
186
f2c7e521 187 if (!priv->stations_39[i].used &&
b481de9c
ZY
188 index == IWL_INVALID_STATION)
189 index = i;
190 }
191
01ebd063 192 /* These two conditions has the same outcome but keep them separate
b481de9c
ZY
193 since they have different meaning */
194 if (unlikely(index == IWL_INVALID_STATION)) {
195 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
196 return index;
197 }
198
f2c7e521
AK
199 if (priv->stations_39[index].used &&
200 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
b481de9c
ZY
201 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
202 return index;
203 }
204
e174961c 205 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
f2c7e521 206 station = &priv->stations_39[index];
b481de9c
ZY
207 station->used = 1;
208 priv->num_stations++;
209
6440adb5 210 /* Set up the REPLY_ADD_STA command to send to device */
bb8c093b 211 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
b481de9c
ZY
212 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
213 station->sta.mode = 0;
214 station->sta.sta.sta_id = index;
215 station->sta.station_flags = 0;
216
8318d78a 217 if (priv->band == IEEE80211_BAND_5GHZ)
69946333
TW
218 rate = IWL_RATE_6M_PLCP;
219 else
220 rate = IWL_RATE_1M_PLCP;
c14c521e
ZY
221
222 /* Turn on both antennas for the station... */
223 station->sta.rate_n_flags =
bb8c093b 224 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
c14c521e 225
b481de9c 226 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
6440adb5
CB
227
228 /* Add station to device's station table */
bb8c093b 229 iwl3945_send_add_station(priv, &station->sta, flags);
b481de9c
ZY
230 return index;
231
232}
233
518099a8 234int iwl3945_send_statistics_request(struct iwl_priv *priv)
b481de9c 235{
518099a8 236 u32 val = 0;
b481de9c 237
c2d79b48 238 struct iwl_host_cmd cmd = {
518099a8 239 .id = REPLY_STATISTICS_CMD,
b481de9c
ZY
240 .len = sizeof(val),
241 .data = &val,
242 };
243
518099a8 244 return iwl_send_cmd_sync(priv, &cmd);
b481de9c
ZY
245}
246
b481de9c 247/**
bb8c093b 248 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
8318d78a
JB
249 * @band: 2.4 or 5 GHz band
250 * @channel: Any channel valid for the requested band
b481de9c 251
8318d78a 252 * In addition to setting the staging RXON, priv->band is also set.
b481de9c
ZY
253 *
254 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
8318d78a 255 * in the staging RXON flag structure based on the band
b481de9c 256 */
4a8a4322 257static int iwl3945_set_rxon_channel(struct iwl_priv *priv,
8318d78a
JB
258 enum ieee80211_band band,
259 u16 channel)
b481de9c 260{
e6148917 261 if (!iwl_get_channel_info(priv, band, channel)) {
b481de9c 262 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
8318d78a 263 channel, band);
b481de9c
ZY
264 return -EINVAL;
265 }
266
f2c7e521 267 if ((le16_to_cpu(priv->staging39_rxon.channel) == channel) &&
8318d78a 268 (priv->band == band))
b481de9c
ZY
269 return 0;
270
f2c7e521 271 priv->staging39_rxon.channel = cpu_to_le16(channel);
8318d78a 272 if (band == IEEE80211_BAND_5GHZ)
f2c7e521 273 priv->staging39_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
b481de9c 274 else
f2c7e521 275 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
b481de9c 276
8318d78a 277 priv->band = band;
b481de9c 278
8318d78a 279 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
b481de9c
ZY
280
281 return 0;
282}
283
284/**
bb8c093b 285 * iwl3945_check_rxon_cmd - validate RXON structure is valid
b481de9c
ZY
286 *
287 * NOTE: This is really only useful during development and can eventually
288 * be #ifdef'd out once the driver is stable and folks aren't actively
289 * making changes
290 */
4a8a4322 291static int iwl3945_check_rxon_cmd(struct iwl_priv *priv)
b481de9c
ZY
292{
293 int error = 0;
294 int counter = 1;
f2c7e521 295 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
b481de9c
ZY
296
297 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
298 error |= le32_to_cpu(rxon->flags &
299 (RXON_FLG_TGJ_NARROW_BAND_MSK |
300 RXON_FLG_RADAR_DETECT_MSK));
301 if (error)
39aadf8c 302 IWL_WARN(priv, "check 24G fields %d | %d\n",
b481de9c
ZY
303 counter++, error);
304 } else {
305 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
306 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
307 if (error)
39aadf8c 308 IWL_WARN(priv, "check 52 fields %d | %d\n",
b481de9c
ZY
309 counter++, error);
310 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
311 if (error)
39aadf8c 312 IWL_WARN(priv, "check 52 CCK %d | %d\n",
b481de9c
ZY
313 counter++, error);
314 }
315 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
316 if (error)
39aadf8c 317 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
b481de9c
ZY
318
319 /* make sure basic rates 6Mbps and 1Mbps are supported */
320 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
321 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
322 if (error)
39aadf8c 323 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
b481de9c
ZY
324
325 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
326 if (error)
39aadf8c 327 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
b481de9c
ZY
328
329 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
330 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
331 if (error)
39aadf8c 332 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
b481de9c
ZY
333 counter++, error);
334
335 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
336 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
337 if (error)
39aadf8c 338 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
b481de9c
ZY
339 counter++, error);
340
341 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
342 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
343 if (error)
39aadf8c 344 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
b481de9c
ZY
345 counter++, error);
346
347 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
348 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
349 RXON_FLG_ANT_A_MSK)) == 0);
350 if (error)
39aadf8c 351 IWL_WARN(priv, "check antenna %d %d\n", counter++, error);
b481de9c
ZY
352
353 if (error)
39aadf8c 354 IWL_WARN(priv, "Tuning to channel %d\n",
b481de9c
ZY
355 le16_to_cpu(rxon->channel));
356
357 if (error) {
15b1687c 358 IWL_ERR(priv, "Not a valid rxon_assoc_cmd field values\n");
b481de9c
ZY
359 return -1;
360 }
361 return 0;
362}
363
364/**
9fbab516 365 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
01ebd063 366 * @priv: staging_rxon is compared to active_rxon
b481de9c 367 *
9fbab516
BC
368 * If the RXON structure is changing enough to require a new tune,
369 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
370 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
b481de9c 371 */
4a8a4322 372static int iwl3945_full_rxon_required(struct iwl_priv *priv)
b481de9c
ZY
373{
374
375 /* These items are only settable from the full RXON command */
5d1e2325 376 if (!(iwl3945_is_associated(priv)) ||
f2c7e521
AK
377 compare_ether_addr(priv->staging39_rxon.bssid_addr,
378 priv->active39_rxon.bssid_addr) ||
379 compare_ether_addr(priv->staging39_rxon.node_addr,
380 priv->active39_rxon.node_addr) ||
381 compare_ether_addr(priv->staging39_rxon.wlap_bssid_addr,
382 priv->active39_rxon.wlap_bssid_addr) ||
383 (priv->staging39_rxon.dev_type != priv->active39_rxon.dev_type) ||
384 (priv->staging39_rxon.channel != priv->active39_rxon.channel) ||
385 (priv->staging39_rxon.air_propagation !=
386 priv->active39_rxon.air_propagation) ||
387 (priv->staging39_rxon.assoc_id != priv->active39_rxon.assoc_id))
b481de9c
ZY
388 return 1;
389
390 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
391 * be updated with the RXON_ASSOC command -- however only some
392 * flag transitions are allowed using RXON_ASSOC */
393
394 /* Check if we are not switching bands */
f2c7e521
AK
395 if ((priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
396 (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK))
b481de9c
ZY
397 return 1;
398
399 /* Check if we are switching association toggle */
f2c7e521
AK
400 if ((priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
401 (priv->active39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
b481de9c
ZY
402 return 1;
403
404 return 0;
405}
406
4a8a4322 407static int iwl3945_send_rxon_assoc(struct iwl_priv *priv)
b481de9c
ZY
408{
409 int rc = 0;
3d24a9f7 410 struct iwl_rx_packet *res = NULL;
bb8c093b 411 struct iwl3945_rxon_assoc_cmd rxon_assoc;
c2d79b48 412 struct iwl_host_cmd cmd = {
b481de9c
ZY
413 .id = REPLY_RXON_ASSOC,
414 .len = sizeof(rxon_assoc),
415 .meta.flags = CMD_WANT_SKB,
416 .data = &rxon_assoc,
417 };
f2c7e521
AK
418 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging39_rxon;
419 const struct iwl3945_rxon_cmd *rxon2 = &priv->active39_rxon;
b481de9c
ZY
420
421 if ((rxon1->flags == rxon2->flags) &&
422 (rxon1->filter_flags == rxon2->filter_flags) &&
423 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
424 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
425 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
426 return 0;
427 }
428
f2c7e521
AK
429 rxon_assoc.flags = priv->staging39_rxon.flags;
430 rxon_assoc.filter_flags = priv->staging39_rxon.filter_flags;
431 rxon_assoc.ofdm_basic_rates = priv->staging39_rxon.ofdm_basic_rates;
432 rxon_assoc.cck_basic_rates = priv->staging39_rxon.cck_basic_rates;
b481de9c
ZY
433 rxon_assoc.reserved = 0;
434
518099a8 435 rc = iwl_send_cmd_sync(priv, &cmd);
b481de9c
ZY
436 if (rc)
437 return rc;
438
3d24a9f7 439 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
b481de9c 440 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
15b1687c 441 IWL_ERR(priv, "Bad return from REPLY_RXON_ASSOC command\n");
b481de9c
ZY
442 rc = -EIO;
443 }
444
445 priv->alloc_rxb_skb--;
446 dev_kfree_skb_any(cmd.meta.u.skb);
447
448 return rc;
449}
450
7e4bca5e
SO
451/**
452 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
453 * @priv: eeprom and antenna fields are used to determine antenna flags
454 *
455 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
456 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
457 *
458 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
459 * IWL_ANTENNA_MAIN - Force MAIN antenna
460 * IWL_ANTENNA_AUX - Force AUX antenna
461 */
462__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
463{
464 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
465
466 switch (iwl3945_mod_params.antenna) {
467 case IWL_ANTENNA_DIVERSITY:
468 return 0;
469
470 case IWL_ANTENNA_MAIN:
471 if (eeprom->antenna_switch_type)
472 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
473 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
474
475 case IWL_ANTENNA_AUX:
476 if (eeprom->antenna_switch_type)
477 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
478 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
479 }
480
481 /* bad antenna selector value */
482 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
483 iwl3945_mod_params.antenna);
484
485 return 0; /* "diversity" is default if error */
486}
487
b481de9c 488/**
bb8c093b 489 * iwl3945_commit_rxon - commit staging_rxon to hardware
b481de9c 490 *
01ebd063 491 * The RXON command in staging_rxon is committed to the hardware and
b481de9c
ZY
492 * the active_rxon structure is updated with the new data. This
493 * function correctly transitions out of the RXON_ASSOC_MSK state if
494 * a HW tune is required based on the RXON structure changes.
495 */
4a8a4322 496static int iwl3945_commit_rxon(struct iwl_priv *priv)
b481de9c
ZY
497{
498 /* cast away the const for active_rxon in this function */
f2c7e521 499 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active39_rxon;
b481de9c
ZY
500 int rc = 0;
501
775a6e27 502 if (!iwl_is_alive(priv))
b481de9c
ZY
503 return -1;
504
505 /* always get timestamp with Rx frame */
f2c7e521 506 priv->staging39_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
b481de9c
ZY
507
508 /* select antenna */
f2c7e521 509 priv->staging39_rxon.flags &=
b481de9c 510 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
f2c7e521 511 priv->staging39_rxon.flags |= iwl3945_get_antenna_flags(priv);
b481de9c 512
a3139c59 513 rc = iwl3945_check_rxon_cmd(priv);
b481de9c 514 if (rc) {
15b1687c 515 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
b481de9c
ZY
516 return -EINVAL;
517 }
518
519 /* If we don't need to send a full RXON, we can use
bb8c093b 520 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
b481de9c 521 * and other flags for the current radio configuration. */
bb8c093b
CH
522 if (!iwl3945_full_rxon_required(priv)) {
523 rc = iwl3945_send_rxon_assoc(priv);
b481de9c 524 if (rc) {
15b1687c 525 IWL_ERR(priv, "Error setting RXON_ASSOC "
b481de9c
ZY
526 "configuration (%d).\n", rc);
527 return rc;
528 }
529
f2c7e521 530 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
b481de9c
ZY
531
532 return 0;
533 }
534
535 /* If we are currently associated and the new config requires
536 * an RXON_ASSOC and the new config wants the associated mask enabled,
537 * we must clear the associated from the active configuration
538 * before we apply the new config */
bb8c093b 539 if (iwl3945_is_associated(priv) &&
f2c7e521 540 (priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
b481de9c
ZY
541 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
542 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
543
518099a8 544 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
bb8c093b 545 sizeof(struct iwl3945_rxon_cmd),
f2c7e521 546 &priv->active39_rxon);
b481de9c
ZY
547
548 /* If the mask clearing failed then we set
549 * active_rxon back to what it was previously */
550 if (rc) {
551 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
15b1687c 552 IWL_ERR(priv, "Error clearing ASSOC_MSK on current "
b481de9c
ZY
553 "configuration (%d).\n", rc);
554 return rc;
555 }
b481de9c
ZY
556 }
557
558 IWL_DEBUG_INFO("Sending RXON\n"
559 "* with%s RXON_FILTER_ASSOC_MSK\n"
560 "* channel = %d\n"
e174961c 561 "* bssid = %pM\n",
f2c7e521 562 ((priv->staging39_rxon.filter_flags &
b481de9c 563 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
f2c7e521 564 le16_to_cpu(priv->staging39_rxon.channel),
e174961c 565 priv->staging_rxon.bssid_addr);
b481de9c
ZY
566
567 /* Apply the new configuration */
518099a8 568 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
f2c7e521 569 sizeof(struct iwl3945_rxon_cmd), &priv->staging39_rxon);
b481de9c 570 if (rc) {
15b1687c 571 IWL_ERR(priv, "Error setting new configuration (%d).\n", rc);
b481de9c
ZY
572 return rc;
573 }
574
f2c7e521 575 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
b481de9c 576
bb8c093b 577 iwl3945_clear_stations_table(priv);
556f8db7 578
b481de9c
ZY
579 /* If we issue a new RXON command which required a tune then we must
580 * send a new TXPOWER command or we won't be able to Tx any frames */
75bcfae9 581 rc = priv->cfg->ops->lib->send_tx_power(priv);
b481de9c 582 if (rc) {
15b1687c 583 IWL_ERR(priv, "Error setting Tx power (%d).\n", rc);
b481de9c
ZY
584 return rc;
585 }
586
587 /* Add the broadcast address so we can send broadcast frames */
b5323d36 588 if (iwl3945_add_station(priv, iwl_bcast_addr, 0, 0) ==
b481de9c 589 IWL_INVALID_STATION) {
15b1687c 590 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
b481de9c
ZY
591 return -EIO;
592 }
593
594 /* If we have set the ASSOC_MSK and we are in BSS mode then
595 * add the IWL_AP_ID to the station rate table */
bb8c093b 596 if (iwl3945_is_associated(priv) &&
05c914fe 597 (priv->iw_mode == NL80211_IFTYPE_STATION))
f2c7e521 598 if (iwl3945_add_station(priv, priv->active39_rxon.bssid_addr, 1, 0)
b481de9c 599 == IWL_INVALID_STATION) {
15b1687c 600 IWL_ERR(priv, "Error adding AP address for transmit\n");
b481de9c
ZY
601 return -EIO;
602 }
603
8318d78a 604 /* Init the hardware's rate fallback order based on the band */
b481de9c
ZY
605 rc = iwl3945_init_hw_rate_table(priv);
606 if (rc) {
15b1687c 607 IWL_ERR(priv, "Error setting HW rate table: %02X\n", rc);
b481de9c
ZY
608 return -EIO;
609 }
610
611 return 0;
612}
613
4a8a4322 614static int iwl3945_send_bt_config(struct iwl_priv *priv)
b481de9c 615{
4c897253 616 struct iwl_bt_cmd bt_cmd = {
b481de9c
ZY
617 .flags = 3,
618 .lead_time = 0xAA,
619 .max_kill = 1,
620 .kill_ack_mask = 0,
621 .kill_cts_mask = 0,
622 };
623
518099a8 624 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
4c897253 625 sizeof(bt_cmd), &bt_cmd);
b481de9c
ZY
626}
627
4a8a4322 628static int iwl3945_add_sta_sync_callback(struct iwl_priv *priv,
c2d79b48 629 struct iwl_cmd *cmd, struct sk_buff *skb)
b481de9c 630{
3d24a9f7 631 struct iwl_rx_packet *res = NULL;
b481de9c
ZY
632
633 if (!skb) {
15b1687c 634 IWL_ERR(priv, "Error: Response NULL in REPLY_ADD_STA.\n");
b481de9c
ZY
635 return 1;
636 }
637
3d24a9f7 638 res = (struct iwl_rx_packet *)skb->data;
b481de9c 639 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
15b1687c 640 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
b481de9c
ZY
641 res->hdr.flags);
642 return 1;
643 }
644
645 switch (res->u.add_sta.status) {
646 case ADD_STA_SUCCESS_MSK:
647 break;
648 default:
649 break;
650 }
651
652 /* We didn't cache the SKB; let the caller free it */
653 return 1;
654}
655
4a8a4322 656int iwl3945_send_add_station(struct iwl_priv *priv,
bb8c093b 657 struct iwl3945_addsta_cmd *sta, u8 flags)
b481de9c 658{
3d24a9f7 659 struct iwl_rx_packet *res = NULL;
b481de9c 660 int rc = 0;
c2d79b48 661 struct iwl_host_cmd cmd = {
b481de9c 662 .id = REPLY_ADD_STA,
bb8c093b 663 .len = sizeof(struct iwl3945_addsta_cmd),
b481de9c
ZY
664 .meta.flags = flags,
665 .data = sta,
666 };
667
668 if (flags & CMD_ASYNC)
bb8c093b 669 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
b481de9c
ZY
670 else
671 cmd.meta.flags |= CMD_WANT_SKB;
672
518099a8 673 rc = iwl_send_cmd(priv, &cmd);
b481de9c
ZY
674
675 if (rc || (flags & CMD_ASYNC))
676 return rc;
677
3d24a9f7 678 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
b481de9c 679 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
15b1687c 680 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
b481de9c
ZY
681 res->hdr.flags);
682 rc = -EIO;
683 }
684
685 if (rc == 0) {
686 switch (res->u.add_sta.status) {
687 case ADD_STA_SUCCESS_MSK:
688 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
689 break;
690 default:
691 rc = -EIO;
39aadf8c 692 IWL_WARN(priv, "REPLY_ADD_STA failed\n");
b481de9c
ZY
693 break;
694 }
695 }
696
697 priv->alloc_rxb_skb--;
698 dev_kfree_skb_any(cmd.meta.u.skb);
699
700 return rc;
701}
702
4a8a4322 703static int iwl3945_update_sta_key_info(struct iwl_priv *priv,
b481de9c
ZY
704 struct ieee80211_key_conf *keyconf,
705 u8 sta_id)
706{
707 unsigned long flags;
708 __le16 key_flags = 0;
709
710 switch (keyconf->alg) {
711 case ALG_CCMP:
712 key_flags |= STA_KEY_FLG_CCMP;
713 key_flags |= cpu_to_le16(
714 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
715 key_flags &= ~STA_KEY_FLG_INVALID;
716 break;
717 case ALG_TKIP:
718 case ALG_WEP:
b481de9c
ZY
719 default:
720 return -EINVAL;
721 }
722 spin_lock_irqsave(&priv->sta_lock, flags);
f2c7e521
AK
723 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
724 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
725 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
b481de9c
ZY
726 keyconf->keylen);
727
f2c7e521 728 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
b481de9c 729 keyconf->keylen);
f2c7e521
AK
730 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
731 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
732 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
b481de9c
ZY
733
734 spin_unlock_irqrestore(&priv->sta_lock, flags);
735
736 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
f2c7e521 737 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
b481de9c
ZY
738 return 0;
739}
740
4a8a4322 741static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
b481de9c
ZY
742{
743 unsigned long flags;
744
745 spin_lock_irqsave(&priv->sta_lock, flags);
f2c7e521
AK
746 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
747 memset(&priv->stations_39[sta_id].sta.key, 0,
4c897253 748 sizeof(struct iwl4965_keyinfo));
f2c7e521
AK
749 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
750 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
751 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
b481de9c
ZY
752 spin_unlock_irqrestore(&priv->sta_lock, flags);
753
754 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
f2c7e521 755 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
b481de9c
ZY
756 return 0;
757}
758
4a8a4322 759static void iwl3945_clear_free_frames(struct iwl_priv *priv)
b481de9c
ZY
760{
761 struct list_head *element;
762
763 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
764 priv->frames_count);
765
766 while (!list_empty(&priv->free_frames)) {
767 element = priv->free_frames.next;
768 list_del(element);
bb8c093b 769 kfree(list_entry(element, struct iwl3945_frame, list));
b481de9c
ZY
770 priv->frames_count--;
771 }
772
773 if (priv->frames_count) {
39aadf8c 774 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
b481de9c
ZY
775 priv->frames_count);
776 priv->frames_count = 0;
777 }
778}
779
4a8a4322 780static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
b481de9c 781{
bb8c093b 782 struct iwl3945_frame *frame;
b481de9c
ZY
783 struct list_head *element;
784 if (list_empty(&priv->free_frames)) {
785 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
786 if (!frame) {
15b1687c 787 IWL_ERR(priv, "Could not allocate frame!\n");
b481de9c
ZY
788 return NULL;
789 }
790
791 priv->frames_count++;
792 return frame;
793 }
794
795 element = priv->free_frames.next;
796 list_del(element);
bb8c093b 797 return list_entry(element, struct iwl3945_frame, list);
b481de9c
ZY
798}
799
4a8a4322 800static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
b481de9c
ZY
801{
802 memset(frame, 0, sizeof(*frame));
803 list_add(&frame->list, &priv->free_frames);
804}
805
4a8a4322 806unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
b481de9c 807 struct ieee80211_hdr *hdr,
73ec1cc2 808 int left)
b481de9c
ZY
809{
810
bb8c093b 811 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
05c914fe
JB
812 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
813 (priv->iw_mode != NL80211_IFTYPE_AP)))
b481de9c
ZY
814 return 0;
815
816 if (priv->ibss_beacon->len > left)
817 return 0;
818
819 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
820
821 return priv->ibss_beacon->len;
822}
823
4a8a4322 824static u8 iwl3945_rate_get_lowest_plcp(struct iwl_priv *priv)
b481de9c
ZY
825{
826 u8 i;
c24f0817
KA
827 int rate_mask;
828
829 /* Set rate mask*/
f2c7e521 830 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
dbce56a4 831 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
c24f0817 832 else
dbce56a4 833 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
b481de9c
ZY
834
835 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
bb8c093b 836 i = iwl3945_rates[i].next_ieee) {
b481de9c 837 if (rate_mask & (1 << i))
bb8c093b 838 return iwl3945_rates[i].plcp;
b481de9c
ZY
839 }
840
c24f0817 841 /* No valid rate was found. Assign the lowest one */
f2c7e521 842 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
c24f0817
KA
843 return IWL_RATE_1M_PLCP;
844 else
845 return IWL_RATE_6M_PLCP;
b481de9c
ZY
846}
847
4a8a4322 848static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
b481de9c 849{
bb8c093b 850 struct iwl3945_frame *frame;
b481de9c
ZY
851 unsigned int frame_size;
852 int rc;
853 u8 rate;
854
bb8c093b 855 frame = iwl3945_get_free_frame(priv);
b481de9c
ZY
856
857 if (!frame) {
15b1687c 858 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
b481de9c
ZY
859 "command.\n");
860 return -ENOMEM;
861 }
862
c24f0817 863 rate = iwl3945_rate_get_lowest_plcp(priv);
b481de9c 864
bb8c093b 865 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
b481de9c 866
518099a8 867 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
b481de9c
ZY
868 &frame->u.cmd[0]);
869
bb8c093b 870 iwl3945_free_frame(priv, frame);
b481de9c
ZY
871
872 return rc;
873}
874
4a8a4322 875static void iwl3945_unset_hw_params(struct iwl_priv *priv)
b481de9c 876{
3832ec9d 877 if (priv->shared_virt)
b481de9c 878 pci_free_consistent(priv->pci_dev,
bb8c093b 879 sizeof(struct iwl3945_shared),
3832ec9d
AK
880 priv->shared_virt,
881 priv->shared_phys);
b481de9c
ZY
882}
883
b481de9c
ZY
884/*
885 * QoS support
886*/
4a8a4322 887static int iwl3945_send_qos_params_command(struct iwl_priv *priv,
4c897253 888 struct iwl_qosparam_cmd *qos)
b481de9c
ZY
889{
890
518099a8 891 return iwl_send_cmd_pdu(priv, REPLY_QOS_PARAM,
4c897253 892 sizeof(struct iwl_qosparam_cmd), qos);
b481de9c
ZY
893}
894
4a8a4322 895static void iwl3945_activate_qos(struct iwl_priv *priv, u8 force)
b481de9c
ZY
896{
897 unsigned long flags;
898
b481de9c
ZY
899 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
900 return;
901
b481de9c
ZY
902 spin_lock_irqsave(&priv->lock, flags);
903 priv->qos_data.def_qos_parm.qos_flags = 0;
904
905 if (priv->qos_data.qos_cap.q_AP.queue_request &&
906 !priv->qos_data.qos_cap.q_AP.txop_request)
907 priv->qos_data.def_qos_parm.qos_flags |=
908 QOS_PARAM_FLG_TXOP_TYPE_MSK;
909
910 if (priv->qos_data.qos_active)
911 priv->qos_data.def_qos_parm.qos_flags |=
912 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
913
914 spin_unlock_irqrestore(&priv->lock, flags);
915
bb8c093b 916 if (force || iwl3945_is_associated(priv)) {
a96a27f9 917 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
b481de9c
ZY
918 priv->qos_data.qos_active);
919
bb8c093b 920 iwl3945_send_qos_params_command(priv,
b481de9c
ZY
921 &(priv->qos_data.def_qos_parm));
922 }
923}
924
b481de9c
ZY
925/*
926 * Power management (not Tx power!) functions
927 */
928#define MSEC_TO_USEC 1024
929
600c0e11 930
b481de9c 931/* default power management (not Tx power) table values */
a96a27f9 932/* for TIM 0-10 */
3dae0c42
WT
933static struct iwl_power_vec_entry range_0[IWL_POWER_MAX] = {
934 {{NOSLP, SLP_TOUT(0), SLP_TOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
935 {{SLP, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
936 {{SLP, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
937 {{SLP, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
938 {{SLP, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
939 {{SLP, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
b481de9c
ZY
940};
941
a96a27f9 942/* for TIM > 10 */
3dae0c42
WT
943static struct iwl_power_vec_entry range_1[IWL_POWER_MAX] = {
944 {{NOSLP, SLP_TOUT(0), SLP_TOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
945 {{SLP, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
946 {{SLP, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
947 {{SLP, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
948 {{SLP, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
949 {{SLP, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
b481de9c
ZY
950};
951
4a8a4322 952int iwl3945_power_init_handle(struct iwl_priv *priv)
b481de9c
ZY
953{
954 int rc = 0, i;
3dae0c42
WT
955 struct iwl_power_mgr *pow_data;
956 int size = sizeof(struct iwl_power_vec_entry) * IWL_POWER_MAX;
b481de9c
ZY
957 u16 pci_pm;
958
959 IWL_DEBUG_POWER("Initialize power \n");
960
3dae0c42 961 pow_data = &priv->power_data;
b481de9c
ZY
962
963 memset(pow_data, 0, sizeof(*pow_data));
964
3dae0c42 965 pow_data->dtim_period = 1;
b481de9c
ZY
966
967 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
968 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
969
970 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
971 if (rc != 0)
972 return 0;
973 else {
600c0e11 974 struct iwl_powertable_cmd *cmd;
b481de9c
ZY
975
976 IWL_DEBUG_POWER("adjust power command flags\n");
977
3dae0c42 978 for (i = 0; i < IWL_POWER_MAX; i++) {
b481de9c
ZY
979 cmd = &pow_data->pwr_range_0[i].cmd;
980
981 if (pci_pm & 0x1)
982 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
983 else
984 cmd->flags |= IWL_POWER_PCI_PM_MSK;
985 }
986 }
987 return rc;
988}
989
4a8a4322 990static int iwl3945_update_power_cmd(struct iwl_priv *priv,
600c0e11 991 struct iwl_powertable_cmd *cmd, u32 mode)
b481de9c 992{
3dae0c42 993 struct iwl_power_mgr *pow_data;
1125eff3 994 struct iwl_power_vec_entry *range;
3dae0c42
WT
995 u32 max_sleep = 0;
996 int i;
b481de9c 997 u8 period = 0;
3dae0c42 998 bool skip;
b481de9c
ZY
999
1000 if (mode > IWL_POWER_INDEX_5) {
1001 IWL_DEBUG_POWER("Error invalid power mode \n");
3dae0c42 1002 return -EINVAL;
b481de9c 1003 }
3dae0c42 1004 pow_data = &priv->power_data;
b481de9c 1005
3dae0c42 1006 if (pow_data->dtim_period < 10)
b481de9c
ZY
1007 range = &pow_data->pwr_range_0[0];
1008 else
1009 range = &pow_data->pwr_range_1[1];
1010
bb8c093b 1011 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
b481de9c 1012
b481de9c
ZY
1013
1014 if (period == 0) {
1015 period = 1;
3dae0c42
WT
1016 skip = false;
1017 } else {
1018 skip = !!range[mode].no_dtim;
b481de9c
ZY
1019 }
1020
3dae0c42 1021 if (skip) {
b481de9c
ZY
1022 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1023 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1024 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
3dae0c42
WT
1025 } else {
1026 max_sleep = period;
1027 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
b481de9c
ZY
1028 }
1029
3dae0c42 1030 for (i = 0; i < IWL_POWER_VEC_SIZE; i++)
b481de9c
ZY
1031 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1032 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
b481de9c
ZY
1033
1034 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1035 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1036 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1037 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1038 le32_to_cpu(cmd->sleep_interval[0]),
1039 le32_to_cpu(cmd->sleep_interval[1]),
1040 le32_to_cpu(cmd->sleep_interval[2]),
1041 le32_to_cpu(cmd->sleep_interval[3]),
1042 le32_to_cpu(cmd->sleep_interval[4]));
1043
3dae0c42 1044 return 0;
b481de9c
ZY
1045}
1046
4a8a4322 1047static int iwl3945_send_power_mode(struct iwl_priv *priv, u32 mode)
b481de9c 1048{
9a62f73b 1049 u32 uninitialized_var(final_mode);
b481de9c 1050 int rc;
600c0e11 1051 struct iwl_powertable_cmd cmd;
b481de9c
ZY
1052
1053 /* If on battery, set to 3,
01ebd063 1054 * if plugged into AC power, set to CAM ("continuously aware mode"),
b481de9c
ZY
1055 * else user level */
1056 switch (mode) {
1125eff3 1057 case IWL39_POWER_BATTERY:
b481de9c
ZY
1058 final_mode = IWL_POWER_INDEX_3;
1059 break;
1125eff3 1060 case IWL39_POWER_AC:
b481de9c
ZY
1061 final_mode = IWL_POWER_MODE_CAM;
1062 break;
1063 default:
1064 final_mode = mode;
1065 break;
1066 }
1067
bb8c093b 1068 iwl3945_update_power_cmd(priv, &cmd, final_mode);
b481de9c 1069
600c0e11 1070 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
518099a8
SO
1071 rc = iwl_send_cmd_pdu(priv, POWER_TABLE_CMD,
1072 sizeof(struct iwl3945_powertable_cmd), &cmd);
b481de9c
ZY
1073
1074 if (final_mode == IWL_POWER_MODE_CAM)
1075 clear_bit(STATUS_POWER_PMI, &priv->status);
1076 else
1077 set_bit(STATUS_POWER_PMI, &priv->status);
1078
1079 return rc;
1080}
1081
b481de9c
ZY
1082#define MAX_UCODE_BEACON_INTERVAL 1024
1083#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1084
bb8c093b 1085static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
b481de9c
ZY
1086{
1087 u16 new_val = 0;
1088 u16 beacon_factor = 0;
1089
1090 beacon_factor =
1091 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1092 / MAX_UCODE_BEACON_INTERVAL;
1093 new_val = beacon_val / beacon_factor;
1094
1095 return cpu_to_le16(new_val);
1096}
1097
4a8a4322 1098static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
b481de9c
ZY
1099{
1100 u64 interval_tm_unit;
1101 u64 tsf, result;
1102 unsigned long flags;
1103 struct ieee80211_conf *conf = NULL;
1104 u16 beacon_int = 0;
1105
1106 conf = ieee80211_get_hw_conf(priv->hw);
1107
1108 spin_lock_irqsave(&priv->lock, flags);
28afaf91 1109 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
b481de9c
ZY
1110 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1111
28afaf91 1112 tsf = priv->timestamp;
b481de9c
ZY
1113
1114 beacon_int = priv->beacon_int;
1115 spin_unlock_irqrestore(&priv->lock, flags);
1116
05c914fe 1117 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
b481de9c
ZY
1118 if (beacon_int == 0) {
1119 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1120 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1121 } else {
1122 priv->rxon_timing.beacon_interval =
1123 cpu_to_le16(beacon_int);
1124 priv->rxon_timing.beacon_interval =
bb8c093b 1125 iwl3945_adjust_beacon_interval(
b481de9c
ZY
1126 le16_to_cpu(priv->rxon_timing.beacon_interval));
1127 }
1128
1129 priv->rxon_timing.atim_window = 0;
1130 } else {
1131 priv->rxon_timing.beacon_interval =
bb8c093b 1132 iwl3945_adjust_beacon_interval(conf->beacon_int);
b481de9c
ZY
1133 /* TODO: we need to get atim_window from upper stack
1134 * for now we set to 0 */
1135 priv->rxon_timing.atim_window = 0;
1136 }
1137
1138 interval_tm_unit =
1139 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1140 result = do_div(tsf, interval_tm_unit);
1141 priv->rxon_timing.beacon_init_val =
1142 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1143
1144 IWL_DEBUG_ASSOC
1145 ("beacon interval %d beacon timer %d beacon tim %d\n",
1146 le16_to_cpu(priv->rxon_timing.beacon_interval),
1147 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1148 le16_to_cpu(priv->rxon_timing.atim_window));
1149}
1150
4a8a4322 1151static int iwl3945_scan_initiate(struct iwl_priv *priv)
b481de9c 1152{
775a6e27 1153 if (!iwl_is_ready_rf(priv)) {
b481de9c
ZY
1154 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1155 return -EIO;
1156 }
1157
1158 if (test_bit(STATUS_SCANNING, &priv->status)) {
1159 IWL_DEBUG_SCAN("Scan already in progress.\n");
1160 return -EAGAIN;
1161 }
1162
1163 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1164 IWL_DEBUG_SCAN("Scan request while abort pending. "
1165 "Queuing.\n");
1166 return -EAGAIN;
1167 }
1168
1169 IWL_DEBUG_INFO("Starting scan...\n");
66b5004d
RR
1170 if (priv->cfg->sku & IWL_SKU_G)
1171 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
1172 if (priv->cfg->sku & IWL_SKU_A)
1173 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
b481de9c
ZY
1174 set_bit(STATUS_SCANNING, &priv->status);
1175 priv->scan_start = jiffies;
1176 priv->scan_pass_start = priv->scan_start;
1177
1178 queue_work(priv->workqueue, &priv->request_scan);
1179
1180 return 0;
1181}
1182
4a8a4322 1183static int iwl3945_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
b481de9c 1184{
f2c7e521 1185 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
b481de9c
ZY
1186
1187 if (hw_decrypt)
1188 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
1189 else
1190 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
1191
1192 return 0;
1193}
1194
4a8a4322 1195static void iwl3945_set_flags_for_phymode(struct iwl_priv *priv,
8318d78a 1196 enum ieee80211_band band)
b481de9c 1197{
8318d78a 1198 if (band == IEEE80211_BAND_5GHZ) {
f2c7e521 1199 priv->staging39_rxon.flags &=
b481de9c
ZY
1200 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1201 | RXON_FLG_CCK_MSK);
f2c7e521 1202 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
b481de9c 1203 } else {
bb8c093b 1204 /* Copied from iwl3945_bg_post_associate() */
b481de9c 1205 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
f2c7e521 1206 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
b481de9c 1207 else
f2c7e521 1208 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
b481de9c 1209
05c914fe 1210 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
f2c7e521 1211 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
b481de9c 1212
f2c7e521
AK
1213 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1214 priv->staging39_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1215 priv->staging39_rxon.flags &= ~RXON_FLG_CCK_MSK;
b481de9c
ZY
1216 }
1217}
1218
1219/*
01ebd063 1220 * initialize rxon structure with default values from eeprom
b481de9c 1221 */
4a8a4322 1222static void iwl3945_connection_init_rx_config(struct iwl_priv *priv,
60294de3 1223 int mode)
b481de9c 1224{
d20b3c65 1225 const struct iwl_channel_info *ch_info;
b481de9c 1226
f2c7e521 1227 memset(&priv->staging39_rxon, 0, sizeof(priv->staging39_rxon));
b481de9c 1228
60294de3 1229 switch (mode) {
05c914fe 1230 case NL80211_IFTYPE_AP:
f2c7e521 1231 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_AP;
b481de9c
ZY
1232 break;
1233
05c914fe 1234 case NL80211_IFTYPE_STATION:
f2c7e521
AK
1235 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_ESS;
1236 priv->staging39_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
b481de9c
ZY
1237 break;
1238
05c914fe 1239 case NL80211_IFTYPE_ADHOC:
f2c7e521
AK
1240 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1241 priv->staging39_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1242 priv->staging39_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
b481de9c
ZY
1243 RXON_FILTER_ACCEPT_GRP_MSK;
1244 break;
1245
05c914fe 1246 case NL80211_IFTYPE_MONITOR:
f2c7e521
AK
1247 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1248 priv->staging39_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
b481de9c
ZY
1249 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1250 break;
69dc5d9d 1251 default:
15b1687c 1252 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
69dc5d9d 1253 break;
b481de9c
ZY
1254 }
1255
1256#if 0
1257 /* TODO: Figure out when short_preamble would be set and cache from
1258 * that */
1259 if (!hw_to_local(priv->hw)->short_preamble)
f2c7e521 1260 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
b481de9c 1261 else
f2c7e521 1262 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
b481de9c
ZY
1263#endif
1264
e6148917 1265 ch_info = iwl_get_channel_info(priv, priv->band,
f2c7e521 1266 le16_to_cpu(priv->active39_rxon.channel));
b481de9c
ZY
1267
1268 if (!ch_info)
1269 ch_info = &priv->channel_info[0];
1270
1271 /*
1272 * in some case A channels are all non IBSS
1273 * in this case force B/G channel
1274 */
60294de3 1275 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
b481de9c
ZY
1276 ch_info = &priv->channel_info[0];
1277
f2c7e521 1278 priv->staging39_rxon.channel = cpu_to_le16(ch_info->channel);
b481de9c 1279 if (is_channel_a_band(ch_info))
8318d78a 1280 priv->band = IEEE80211_BAND_5GHZ;
b481de9c 1281 else
8318d78a 1282 priv->band = IEEE80211_BAND_2GHZ;
b481de9c 1283
8318d78a 1284 iwl3945_set_flags_for_phymode(priv, priv->band);
b481de9c 1285
f2c7e521 1286 priv->staging39_rxon.ofdm_basic_rates =
b481de9c 1287 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
f2c7e521 1288 priv->staging39_rxon.cck_basic_rates =
b481de9c
ZY
1289 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1290}
1291
4a8a4322 1292static int iwl3945_set_mode(struct iwl_priv *priv, int mode)
b481de9c 1293{
05c914fe 1294 if (mode == NL80211_IFTYPE_ADHOC) {
d20b3c65 1295 const struct iwl_channel_info *ch_info;
b481de9c 1296
e6148917 1297 ch_info = iwl_get_channel_info(priv,
8318d78a 1298 priv->band,
f2c7e521 1299 le16_to_cpu(priv->staging39_rxon.channel));
b481de9c
ZY
1300
1301 if (!ch_info || !is_channel_ibss(ch_info)) {
15b1687c 1302 IWL_ERR(priv, "channel %d not IBSS channel\n",
f2c7e521 1303 le16_to_cpu(priv->staging39_rxon.channel));
b481de9c
ZY
1304 return -EINVAL;
1305 }
1306 }
1307
60294de3 1308 iwl3945_connection_init_rx_config(priv, mode);
f2c7e521 1309 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
b481de9c 1310
bb8c093b 1311 iwl3945_clear_stations_table(priv);
b481de9c 1312
a96a27f9 1313 /* don't commit rxon if rf-kill is on*/
775a6e27 1314 if (!iwl_is_ready_rf(priv))
fde3571f
MA
1315 return -EAGAIN;
1316
1317 cancel_delayed_work(&priv->scan_check);
af0053d6 1318 if (iwl_scan_cancel_timeout(priv, 100)) {
39aadf8c 1319 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
fde3571f
MA
1320 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
1321 return -EAGAIN;
1322 }
1323
bb8c093b 1324 iwl3945_commit_rxon(priv);
b481de9c
ZY
1325
1326 return 0;
1327}
1328
4a8a4322 1329static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
e039fa4a 1330 struct ieee80211_tx_info *info,
c2d79b48 1331 struct iwl_cmd *cmd,
b481de9c
ZY
1332 struct sk_buff *skb_frag,
1333 int last_frag)
1334{
e52119c5 1335 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
1c014420 1336 struct iwl3945_hw_key *keyinfo =
f2c7e521 1337 &priv->stations_39[info->control.hw_key->hw_key_idx].keyinfo;
b481de9c
ZY
1338
1339 switch (keyinfo->alg) {
1340 case ALG_CCMP:
e52119c5
WT
1341 tx->sec_ctl = TX_CMD_SEC_CCM;
1342 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
a96a27f9 1343 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
b481de9c
ZY
1344 break;
1345
1346 case ALG_TKIP:
1347#if 0
e52119c5 1348 tx->sec_ctl = TX_CMD_SEC_TKIP;
b481de9c
ZY
1349
1350 if (last_frag)
e52119c5 1351 memcpy(tx->tkip_mic.byte, skb_frag->tail - 8,
b481de9c
ZY
1352 8);
1353 else
e52119c5 1354 memset(tx->tkip_mic.byte, 0, 8);
b481de9c
ZY
1355#endif
1356 break;
1357
1358 case ALG_WEP:
e52119c5 1359 tx->sec_ctl = TX_CMD_SEC_WEP |
e039fa4a 1360 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
b481de9c
ZY
1361
1362 if (keyinfo->keylen == 13)
e52119c5 1363 tx->sec_ctl |= TX_CMD_SEC_KEY128;
b481de9c 1364
e52119c5 1365 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
b481de9c
ZY
1366
1367 IWL_DEBUG_TX("Configuring packet for WEP encryption "
e039fa4a 1368 "with key %d\n", info->control.hw_key->hw_key_idx);
b481de9c
ZY
1369 break;
1370
b481de9c 1371 default:
978785a3 1372 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
b481de9c
ZY
1373 break;
1374 }
1375}
1376
1377/*
1378 * handle build REPLY_TX command notification.
1379 */
4a8a4322 1380static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
c2d79b48 1381 struct iwl_cmd *cmd,
e039fa4a 1382 struct ieee80211_tx_info *info,
e52119c5 1383 struct ieee80211_hdr *hdr, u8 std_id)
b481de9c 1384{
e52119c5
WT
1385 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
1386 __le32 tx_flags = tx->tx_flags;
fd7c8a40 1387 __le16 fc = hdr->frame_control;
e6a9854b 1388 u8 rc_flags = info->control.rates[0].flags;
b481de9c 1389
e52119c5 1390 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
e039fa4a 1391 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
b481de9c 1392 tx_flags |= TX_CMD_FLG_ACK_MSK;
fd7c8a40 1393 if (ieee80211_is_mgmt(fc))
b481de9c 1394 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
fd7c8a40 1395 if (ieee80211_is_probe_resp(fc) &&
b481de9c
ZY
1396 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
1397 tx_flags |= TX_CMD_FLG_TSF_MSK;
1398 } else {
1399 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
1400 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1401 }
1402
e52119c5 1403 tx->sta_id = std_id;
8b7b1e05 1404 if (ieee80211_has_morefrags(fc))
b481de9c
ZY
1405 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
1406
fd7c8a40
HH
1407 if (ieee80211_is_data_qos(fc)) {
1408 u8 *qc = ieee80211_get_qos_ctl(hdr);
e52119c5 1409 tx->tid_tspec = qc[0] & 0xf;
b481de9c 1410 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
54dbb525 1411 } else {
b481de9c 1412 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
54dbb525 1413 }
b481de9c 1414
e6a9854b 1415 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
b481de9c
ZY
1416 tx_flags |= TX_CMD_FLG_RTS_MSK;
1417 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
e6a9854b 1418 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
b481de9c
ZY
1419 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
1420 tx_flags |= TX_CMD_FLG_CTS_MSK;
1421 }
1422
1423 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
1424 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
1425
1426 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
fd7c8a40
HH
1427 if (ieee80211_is_mgmt(fc)) {
1428 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
e52119c5 1429 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
b481de9c 1430 else
e52119c5 1431 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
ab53d8af 1432 } else {
e52119c5 1433 tx->timeout.pm_frame_timeout = 0;
ab53d8af
MA
1434#ifdef CONFIG_IWL3945_LEDS
1435 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
1436#endif
1437 }
b481de9c 1438
e52119c5
WT
1439 tx->driver_txop = 0;
1440 tx->tx_flags = tx_flags;
1441 tx->next_frame_len = 0;
b481de9c
ZY
1442}
1443
6440adb5
CB
1444/**
1445 * iwl3945_get_sta_id - Find station's index within station table
1446 */
4a8a4322 1447static int iwl3945_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
b481de9c
ZY
1448{
1449 int sta_id;
1450 u16 fc = le16_to_cpu(hdr->frame_control);
1451
6440adb5 1452 /* If this frame is broadcast or management, use broadcast station id */
b481de9c
ZY
1453 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
1454 is_multicast_ether_addr(hdr->addr1))
3832ec9d 1455 return priv->hw_params.bcast_sta_id;
b481de9c
ZY
1456
1457 switch (priv->iw_mode) {
1458
6440adb5
CB
1459 /* If we are a client station in a BSS network, use the special
1460 * AP station entry (that's the only station we communicate with) */
05c914fe 1461 case NL80211_IFTYPE_STATION:
b481de9c
ZY
1462 return IWL_AP_ID;
1463
1464 /* If we are an AP, then find the station, or use BCAST */
05c914fe 1465 case NL80211_IFTYPE_AP:
bb8c093b 1466 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
b481de9c
ZY
1467 if (sta_id != IWL_INVALID_STATION)
1468 return sta_id;
3832ec9d 1469 return priv->hw_params.bcast_sta_id;
b481de9c 1470
6440adb5
CB
1471 /* If this frame is going out to an IBSS network, find the station,
1472 * or create a new station table entry */
05c914fe 1473 case NL80211_IFTYPE_ADHOC: {
6440adb5 1474 /* Create new station table entry */
bb8c093b 1475 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
b481de9c
ZY
1476 if (sta_id != IWL_INVALID_STATION)
1477 return sta_id;
1478
bb8c093b 1479 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
b481de9c
ZY
1480
1481 if (sta_id != IWL_INVALID_STATION)
1482 return sta_id;
1483
e174961c 1484 IWL_DEBUG_DROP("Station %pM not in station map. "
b481de9c 1485 "Defaulting to broadcast...\n",
e174961c 1486 hdr->addr1);
40b8ec0b 1487 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
3832ec9d 1488 return priv->hw_params.bcast_sta_id;
0795af57 1489 }
914233d6
SG
1490 /* If we are in monitor mode, use BCAST. This is required for
1491 * packet injection. */
05c914fe 1492 case NL80211_IFTYPE_MONITOR:
3832ec9d 1493 return priv->hw_params.bcast_sta_id;
914233d6 1494
b481de9c 1495 default:
39aadf8c
WT
1496 IWL_WARN(priv, "Unknown mode of operation: %d\n",
1497 priv->iw_mode);
3832ec9d 1498 return priv->hw_params.bcast_sta_id;
b481de9c
ZY
1499 }
1500}
1501
1502/*
1503 * start REPLY_TX command process
1504 */
4a8a4322 1505static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
b481de9c
ZY
1506{
1507 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
e039fa4a 1508 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
e52119c5 1509 struct iwl3945_tx_cmd *tx;
188cf6c7 1510 struct iwl_tx_queue *txq = NULL;
d20b3c65 1511 struct iwl_queue *q = NULL;
e52119c5 1512 struct iwl_cmd *out_cmd = NULL;
b481de9c
ZY
1513 dma_addr_t phys_addr;
1514 dma_addr_t txcmd_phys;
e52119c5 1515 int txq_id = skb_get_queue_mapping(skb);
54dbb525
TW
1516 u16 len, idx, len_org, hdr_len;
1517 u8 id;
1518 u8 unicast;
b481de9c 1519 u8 sta_id;
54dbb525 1520 u8 tid = 0;
b481de9c 1521 u16 seq_number = 0;
fd7c8a40 1522 __le16 fc;
b481de9c 1523 u8 wait_write_ptr = 0;
54dbb525 1524 u8 *qc = NULL;
b481de9c
ZY
1525 unsigned long flags;
1526 int rc;
1527
1528 spin_lock_irqsave(&priv->lock, flags);
775a6e27 1529 if (iwl_is_rfkill(priv)) {
b481de9c
ZY
1530 IWL_DEBUG_DROP("Dropping - RF KILL\n");
1531 goto drop_unlock;
1532 }
1533
e039fa4a 1534 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
15b1687c 1535 IWL_ERR(priv, "ERROR: No TX rate available.\n");
b481de9c
ZY
1536 goto drop_unlock;
1537 }
1538
1539 unicast = !is_multicast_ether_addr(hdr->addr1);
1540 id = 0;
1541
fd7c8a40 1542 fc = hdr->frame_control;
b481de9c 1543
d08853a3 1544#ifdef CONFIG_IWLWIFI_DEBUG
b481de9c
ZY
1545 if (ieee80211_is_auth(fc))
1546 IWL_DEBUG_TX("Sending AUTH frame\n");
fd7c8a40 1547 else if (ieee80211_is_assoc_req(fc))
b481de9c 1548 IWL_DEBUG_TX("Sending ASSOC frame\n");
fd7c8a40 1549 else if (ieee80211_is_reassoc_req(fc))
b481de9c
ZY
1550 IWL_DEBUG_TX("Sending REASSOC frame\n");
1551#endif
1552
7878a5a4 1553 /* drop all data frame if we are not associated */
914233d6 1554 if (ieee80211_is_data(fc) &&
05c914fe 1555 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
914233d6 1556 (!iwl3945_is_associated(priv) ||
05c914fe 1557 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
bb8c093b 1558 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
b481de9c
ZY
1559 goto drop_unlock;
1560 }
1561
1562 spin_unlock_irqrestore(&priv->lock, flags);
1563
7294ec95 1564 hdr_len = ieee80211_hdrlen(fc);
6440adb5
CB
1565
1566 /* Find (or create) index into station table for destination station */
bb8c093b 1567 sta_id = iwl3945_get_sta_id(priv, hdr);
b481de9c 1568 if (sta_id == IWL_INVALID_STATION) {
e174961c
JB
1569 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
1570 hdr->addr1);
b481de9c
ZY
1571 goto drop;
1572 }
1573
1574 IWL_DEBUG_RATE("station Id %d\n", sta_id);
1575
fd7c8a40
HH
1576 if (ieee80211_is_data_qos(fc)) {
1577 qc = ieee80211_get_qos_ctl(hdr);
7294ec95 1578 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
f2c7e521 1579 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
b481de9c
ZY
1580 IEEE80211_SCTL_SEQ;
1581 hdr->seq_ctrl = cpu_to_le16(seq_number) |
1582 (hdr->seq_ctrl &
1583 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
1584 seq_number += 0x10;
1585 }
6440adb5
CB
1586
1587 /* Descriptor for chosen Tx queue */
188cf6c7 1588 txq = &priv->txq[txq_id];
b481de9c
ZY
1589 q = &txq->q;
1590
1591 spin_lock_irqsave(&priv->lock, flags);
1592
fc4b6853 1593 idx = get_cmd_index(q, q->write_ptr, 0);
b481de9c 1594
6440adb5 1595 /* Set up driver data for this TFD */
dbb6654c 1596 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
fc4b6853 1597 txq->txb[q->write_ptr].skb[0] = skb;
6440adb5
CB
1598
1599 /* Init first empty entry in queue's array of Tx/cmd buffers */
188cf6c7 1600 out_cmd = txq->cmd[idx];
e52119c5 1601 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
b481de9c 1602 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
e52119c5 1603 memset(tx, 0, sizeof(*tx));
6440adb5
CB
1604
1605 /*
1606 * Set up the Tx-command (not MAC!) header.
1607 * Store the chosen Tx queue and TFD index within the sequence field;
1608 * after Tx, uCode's Tx response will return this value so driver can
1609 * locate the frame within the tx queue and do post-tx processing.
1610 */
b481de9c
ZY
1611 out_cmd->hdr.cmd = REPLY_TX;
1612 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
fc4b6853 1613 INDEX_TO_SEQ(q->write_ptr)));
6440adb5
CB
1614
1615 /* Copy MAC header from skb into command buffer */
e52119c5 1616 memcpy(tx->hdr, hdr, hdr_len);
b481de9c 1617
6440adb5
CB
1618 /*
1619 * Use the first empty entry in this queue's command buffer array
1620 * to contain the Tx command and MAC header concatenated together
1621 * (payload data will be in another buffer).
1622 * Size of this varies, due to varying MAC header length.
1623 * If end is not dword aligned, we'll have 2 extra bytes at the end
1624 * of the MAC header (device reads on dword boundaries).
1625 * We'll tell device about this padding later.
1626 */
3832ec9d 1627 len = sizeof(struct iwl3945_tx_cmd) +
4c897253 1628 sizeof(struct iwl_cmd_header) + hdr_len;
b481de9c
ZY
1629
1630 len_org = len;
1631 len = (len + 3) & ~3;
1632
1633 if (len_org != len)
1634 len_org = 1;
1635 else
1636 len_org = 0;
1637
6440adb5
CB
1638 /* Physical address of this Tx command's header (not MAC header!),
1639 * within command buffer array. */
188cf6c7
SO
1640 txcmd_phys = pci_map_single(priv->pci_dev,
1641 out_cmd, sizeof(struct iwl_cmd),
1642 PCI_DMA_TODEVICE);
1643 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
1644 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
1645 /* Add buffer containing Tx command and MAC(!) header to TFD's
1646 * first entry */
1647 txcmd_phys += offsetof(struct iwl_cmd, hdr);
b481de9c 1648
6440adb5
CB
1649 /* Add buffer containing Tx command and MAC(!) header to TFD's
1650 * first entry */
7aaa1d79
SO
1651 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
1652 txcmd_phys, len, 1, 0);
b481de9c 1653
d0f09804 1654 if (info->control.hw_key)
e039fa4a 1655 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
b481de9c 1656
6440adb5
CB
1657 /* Set up TFD's 2nd entry to point directly to remainder of skb,
1658 * if any (802.11 null frames have no payload). */
b481de9c
ZY
1659 len = skb->len - hdr_len;
1660 if (len) {
1661 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
1662 len, PCI_DMA_TODEVICE);
7aaa1d79
SO
1663 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
1664 phys_addr, len,
1665 0, U32_PAD(len));
b481de9c
ZY
1666 }
1667
6440adb5 1668 /* Total # bytes to be transmitted */
b481de9c 1669 len = (u16)skb->len;
e52119c5 1670 tx->len = cpu_to_le16(len);
b481de9c
ZY
1671
1672 /* TODO need this for burst mode later on */
e52119c5 1673 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
b481de9c
ZY
1674
1675 /* set is_hcca to 0; it probably will never be implemented */
e039fa4a 1676 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
b481de9c 1677
e52119c5
WT
1678 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
1679 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
b481de9c 1680
8b7b1e05 1681 if (!ieee80211_has_morefrags(hdr->frame_control)) {
b481de9c 1682 txq->need_update = 1;
3ac7f146 1683 if (qc)
f2c7e521 1684 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
b481de9c
ZY
1685 } else {
1686 wait_write_ptr = 1;
1687 txq->need_update = 0;
1688 }
1689
e52119c5 1690 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
b481de9c 1691
e52119c5 1692 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
7294ec95 1693 ieee80211_hdrlen(fc));
b481de9c 1694
6440adb5 1695 /* Tell device the write index *just past* this latest filled TFD */
c54b679d 1696 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
4f3602c8 1697 rc = iwl_txq_update_write_ptr(priv, txq);
b481de9c
ZY
1698 spin_unlock_irqrestore(&priv->lock, flags);
1699
1700 if (rc)
1701 return rc;
1702
d20b3c65 1703 if ((iwl_queue_space(q) < q->high_mark)
b481de9c
ZY
1704 && priv->mac80211_registered) {
1705 if (wait_write_ptr) {
1706 spin_lock_irqsave(&priv->lock, flags);
1707 txq->need_update = 1;
4f3602c8 1708 iwl_txq_update_write_ptr(priv, txq);
b481de9c
ZY
1709 spin_unlock_irqrestore(&priv->lock, flags);
1710 }
1711
e2530083 1712 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
b481de9c
ZY
1713 }
1714
1715 return 0;
1716
1717drop_unlock:
1718 spin_unlock_irqrestore(&priv->lock, flags);
1719drop:
1720 return -1;
1721}
1722
4a8a4322 1723static void iwl3945_set_rate(struct iwl_priv *priv)
b481de9c 1724{
8318d78a 1725 const struct ieee80211_supported_band *sband = NULL;
b481de9c
ZY
1726 struct ieee80211_rate *rate;
1727 int i;
1728
cbba18c6 1729 sband = iwl_get_hw_mode(priv, priv->band);
8318d78a 1730 if (!sband) {
15b1687c 1731 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
c4ba9621
SA
1732 return;
1733 }
b481de9c
ZY
1734
1735 priv->active_rate = 0;
1736 priv->active_rate_basic = 0;
1737
8318d78a
JB
1738 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
1739 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
1740
1741 for (i = 0; i < sband->n_bitrates; i++) {
1742 rate = &sband->bitrates[i];
1743 if ((rate->hw_value < IWL_RATE_COUNT) &&
1744 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
1745 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
1746 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
1747 priv->active_rate |= (1 << rate->hw_value);
1748 }
b481de9c
ZY
1749 }
1750
1751 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
1752 priv->active_rate, priv->active_rate_basic);
1753
1754 /*
1755 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
1756 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
1757 * OFDM
1758 */
1759 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
f2c7e521 1760 priv->staging39_rxon.cck_basic_rates =
b481de9c
ZY
1761 ((priv->active_rate_basic &
1762 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
1763 else
f2c7e521 1764 priv->staging39_rxon.cck_basic_rates =
b481de9c
ZY
1765 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1766
1767 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
f2c7e521 1768 priv->staging39_rxon.ofdm_basic_rates =
b481de9c
ZY
1769 ((priv->active_rate_basic &
1770 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
1771 IWL_FIRST_OFDM_RATE) & 0xFF;
1772 else
f2c7e521 1773 priv->staging39_rxon.ofdm_basic_rates =
b481de9c
ZY
1774 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1775}
1776
4a8a4322 1777static void iwl3945_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
b481de9c
ZY
1778{
1779 unsigned long flags;
1780
1781 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
1782 return;
1783
1784 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
1785 disable_radio ? "OFF" : "ON");
1786
1787 if (disable_radio) {
af0053d6 1788 iwl_scan_cancel(priv);
b481de9c 1789 /* FIXME: This is a workaround for AP */
05c914fe 1790 if (priv->iw_mode != NL80211_IFTYPE_AP) {
b481de9c 1791 spin_lock_irqsave(&priv->lock, flags);
5d49f498 1792 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
b481de9c
ZY
1793 CSR_UCODE_SW_BIT_RFKILL);
1794 spin_unlock_irqrestore(&priv->lock, flags);
c496294e 1795 iwl_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
b481de9c
ZY
1796 set_bit(STATUS_RF_KILL_SW, &priv->status);
1797 }
1798 return;
1799 }
1800
1801 spin_lock_irqsave(&priv->lock, flags);
5d49f498 1802 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
b481de9c
ZY
1803
1804 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1805 spin_unlock_irqrestore(&priv->lock, flags);
1806
1807 /* wake up ucode */
1808 msleep(10);
1809
1810 spin_lock_irqsave(&priv->lock, flags);
5d49f498
AK
1811 iwl_read32(priv, CSR_UCODE_DRV_GP1);
1812 if (!iwl_grab_nic_access(priv))
1813 iwl_release_nic_access(priv);
b481de9c
ZY
1814 spin_unlock_irqrestore(&priv->lock, flags);
1815
1816 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
1817 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
1818 "disabled by HW switch\n");
1819 return;
1820 }
1821
808e72a0
ZY
1822 if (priv->is_open)
1823 queue_work(priv->workqueue, &priv->restart);
b481de9c
ZY
1824 return;
1825}
1826
4a8a4322 1827void iwl3945_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
b481de9c
ZY
1828 u32 decrypt_res, struct ieee80211_rx_status *stats)
1829{
1830 u16 fc =
1831 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
1832
f2c7e521 1833 if (priv->active39_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
b481de9c
ZY
1834 return;
1835
1836 if (!(fc & IEEE80211_FCTL_PROTECTED))
1837 return;
1838
1839 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
1840 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
1841 case RX_RES_STATUS_SEC_TYPE_TKIP:
1842 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
1843 RX_RES_STATUS_BAD_ICV_MIC)
1844 stats->flag |= RX_FLAG_MMIC_ERROR;
1845 case RX_RES_STATUS_SEC_TYPE_WEP:
1846 case RX_RES_STATUS_SEC_TYPE_CCMP:
1847 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
1848 RX_RES_STATUS_DECRYPT_OK) {
1849 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
1850 stats->flag |= RX_FLAG_DECRYPTED;
1851 }
1852 break;
1853
1854 default:
1855 break;
1856 }
1857}
1858
c8b0e6e1 1859#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
1860
1861#include "iwl-spectrum.h"
1862
1863#define BEACON_TIME_MASK_LOW 0x00FFFFFF
1864#define BEACON_TIME_MASK_HIGH 0xFF000000
1865#define TIME_UNIT 1024
1866
1867/*
1868 * extended beacon time format
1869 * time in usec will be changed into a 32-bit value in 8:24 format
1870 * the high 1 byte is the beacon counts
1871 * the lower 3 bytes is the time in usec within one beacon interval
1872 */
1873
bb8c093b 1874static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
b481de9c
ZY
1875{
1876 u32 quot;
1877 u32 rem;
1878 u32 interval = beacon_interval * 1024;
1879
1880 if (!interval || !usec)
1881 return 0;
1882
1883 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
1884 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
1885
1886 return (quot << 24) + rem;
1887}
1888
1889/* base is usually what we get from ucode with each received frame,
1890 * the same as HW timer counter counting down
1891 */
1892
bb8c093b 1893static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
b481de9c
ZY
1894{
1895 u32 base_low = base & BEACON_TIME_MASK_LOW;
1896 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
1897 u32 interval = beacon_interval * TIME_UNIT;
1898 u32 res = (base & BEACON_TIME_MASK_HIGH) +
1899 (addon & BEACON_TIME_MASK_HIGH);
1900
1901 if (base_low > addon_low)
1902 res += base_low - addon_low;
1903 else if (base_low < addon_low) {
1904 res += interval + base_low - addon_low;
1905 res += (1 << 24);
1906 } else
1907 res += (1 << 24);
1908
1909 return cpu_to_le32(res);
1910}
1911
4a8a4322 1912static int iwl3945_get_measurement(struct iwl_priv *priv,
b481de9c
ZY
1913 struct ieee80211_measurement_params *params,
1914 u8 type)
1915{
600c0e11 1916 struct iwl_spectrum_cmd spectrum;
3d24a9f7 1917 struct iwl_rx_packet *res;
c2d79b48 1918 struct iwl_host_cmd cmd = {
b481de9c
ZY
1919 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
1920 .data = (void *)&spectrum,
1921 .meta.flags = CMD_WANT_SKB,
1922 };
1923 u32 add_time = le64_to_cpu(params->start_time);
1924 int rc;
1925 int spectrum_resp_status;
1926 int duration = le16_to_cpu(params->duration);
1927
bb8c093b 1928 if (iwl3945_is_associated(priv))
b481de9c 1929 add_time =
bb8c093b 1930 iwl3945_usecs_to_beacons(
b481de9c
ZY
1931 le64_to_cpu(params->start_time) - priv->last_tsf,
1932 le16_to_cpu(priv->rxon_timing.beacon_interval));
1933
1934 memset(&spectrum, 0, sizeof(spectrum));
1935
1936 spectrum.channel_count = cpu_to_le16(1);
1937 spectrum.flags =
1938 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
1939 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
1940 cmd.len = sizeof(spectrum);
1941 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
1942
bb8c093b 1943 if (iwl3945_is_associated(priv))
b481de9c 1944 spectrum.start_time =
bb8c093b 1945 iwl3945_add_beacon_time(priv->last_beacon_time,
b481de9c
ZY
1946 add_time,
1947 le16_to_cpu(priv->rxon_timing.beacon_interval));
1948 else
1949 spectrum.start_time = 0;
1950
1951 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
1952 spectrum.channels[0].channel = params->channel;
1953 spectrum.channels[0].type = type;
f2c7e521 1954 if (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK)
b481de9c
ZY
1955 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
1956 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
1957
518099a8 1958 rc = iwl_send_cmd_sync(priv, &cmd);
b481de9c
ZY
1959 if (rc)
1960 return rc;
1961
3d24a9f7 1962 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
b481de9c 1963 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
15b1687c 1964 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
b481de9c
ZY
1965 rc = -EIO;
1966 }
1967
1968 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
1969 switch (spectrum_resp_status) {
1970 case 0: /* Command will be handled */
1971 if (res->u.spectrum.id != 0xff) {
bc434dd2
IS
1972 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
1973 res->u.spectrum.id);
b481de9c
ZY
1974 priv->measurement_status &= ~MEASUREMENT_READY;
1975 }
1976 priv->measurement_status |= MEASUREMENT_ACTIVE;
1977 rc = 0;
1978 break;
1979
1980 case 1: /* Command will not be handled */
1981 rc = -EAGAIN;
1982 break;
1983 }
1984
1985 dev_kfree_skb_any(cmd.meta.u.skb);
1986
1987 return rc;
1988}
1989#endif
1990
4a8a4322 1991static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
6100b588 1992 struct iwl_rx_mem_buffer *rxb)
b481de9c 1993{
3d24a9f7
TW
1994 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
1995 struct iwl_alive_resp *palive;
b481de9c
ZY
1996 struct delayed_work *pwork;
1997
1998 palive = &pkt->u.alive_frame;
1999
2000 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2001 "0x%01X 0x%01X\n",
2002 palive->is_valid, palive->ver_type,
2003 palive->ver_subtype);
2004
2005 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2006 IWL_DEBUG_INFO("Initialization Alive received.\n");
3d24a9f7
TW
2007 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
2008 sizeof(struct iwl_alive_resp));
b481de9c
ZY
2009 pwork = &priv->init_alive_start;
2010 } else {
2011 IWL_DEBUG_INFO("Runtime Alive received.\n");
2012 memcpy(&priv->card_alive, &pkt->u.alive_frame,
3d24a9f7 2013 sizeof(struct iwl_alive_resp));
b481de9c 2014 pwork = &priv->alive_start;
bb8c093b 2015 iwl3945_disable_events(priv);
b481de9c
ZY
2016 }
2017
2018 /* We delay the ALIVE response by 5ms to
2019 * give the HW RF Kill time to activate... */
2020 if (palive->is_valid == UCODE_VALID_OK)
2021 queue_delayed_work(priv->workqueue, pwork,
2022 msecs_to_jiffies(5));
2023 else
39aadf8c 2024 IWL_WARN(priv, "uCode did not respond OK.\n");
b481de9c
ZY
2025}
2026
4a8a4322 2027static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
6100b588 2028 struct iwl_rx_mem_buffer *rxb)
b481de9c 2029{
c7e035a9 2030#ifdef CONFIG_IWLWIFI_DEBUG
3d24a9f7 2031 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
c7e035a9 2032#endif
b481de9c
ZY
2033
2034 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2035 return;
2036}
2037
4a8a4322 2038static void iwl3945_rx_reply_error(struct iwl_priv *priv,
6100b588 2039 struct iwl_rx_mem_buffer *rxb)
b481de9c 2040{
3d24a9f7 2041 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c 2042
15b1687c 2043 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
b481de9c
ZY
2044 "seq 0x%04X ser 0x%08X\n",
2045 le32_to_cpu(pkt->u.err_resp.error_type),
2046 get_cmd_string(pkt->u.err_resp.cmd_id),
2047 pkt->u.err_resp.cmd_id,
2048 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2049 le32_to_cpu(pkt->u.err_resp.error_info));
2050}
2051
2052#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2053
4a8a4322 2054static void iwl3945_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
b481de9c 2055{
3d24a9f7 2056 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
f2c7e521 2057 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active39_rxon;
600c0e11 2058 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
b481de9c
ZY
2059 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
2060 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
2061 rxon->channel = csa->channel;
f2c7e521 2062 priv->staging39_rxon.channel = csa->channel;
b481de9c
ZY
2063}
2064
4a8a4322 2065static void iwl3945_rx_spectrum_measure_notif(struct iwl_priv *priv,
6100b588 2066 struct iwl_rx_mem_buffer *rxb)
b481de9c 2067{
c8b0e6e1 2068#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
3d24a9f7 2069 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
600c0e11 2070 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
b481de9c
ZY
2071
2072 if (!report->state) {
2073 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
2074 "Spectrum Measure Notification: Start\n");
2075 return;
2076 }
2077
2078 memcpy(&priv->measure_report, report, sizeof(*report));
2079 priv->measurement_status |= MEASUREMENT_READY;
2080#endif
2081}
2082
4a8a4322 2083static void iwl3945_rx_pm_sleep_notif(struct iwl_priv *priv,
6100b588 2084 struct iwl_rx_mem_buffer *rxb)
b481de9c 2085{
d08853a3 2086#ifdef CONFIG_IWLWIFI_DEBUG
3d24a9f7 2087 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
600c0e11 2088 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
b481de9c
ZY
2089 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
2090 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2091#endif
2092}
2093
4a8a4322 2094static void iwl3945_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
6100b588 2095 struct iwl_rx_mem_buffer *rxb)
b481de9c 2096{
3d24a9f7 2097 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
2098 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
2099 "notification for %s:\n",
2100 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
40b8ec0b
SO
2101 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
2102 le32_to_cpu(pkt->len));
b481de9c
ZY
2103}
2104
bb8c093b 2105static void iwl3945_bg_beacon_update(struct work_struct *work)
b481de9c 2106{
4a8a4322
AK
2107 struct iwl_priv *priv =
2108 container_of(work, struct iwl_priv, beacon_update);
b481de9c
ZY
2109 struct sk_buff *beacon;
2110
2111 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
e039fa4a 2112 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
b481de9c
ZY
2113
2114 if (!beacon) {
15b1687c 2115 IWL_ERR(priv, "update beacon failed\n");
b481de9c
ZY
2116 return;
2117 }
2118
2119 mutex_lock(&priv->mutex);
2120 /* new beacon skb is allocated every time; dispose previous.*/
2121 if (priv->ibss_beacon)
2122 dev_kfree_skb(priv->ibss_beacon);
2123
2124 priv->ibss_beacon = beacon;
2125 mutex_unlock(&priv->mutex);
2126
bb8c093b 2127 iwl3945_send_beacon_cmd(priv);
b481de9c
ZY
2128}
2129
4a8a4322 2130static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
6100b588 2131 struct iwl_rx_mem_buffer *rxb)
b481de9c 2132{
d08853a3 2133#ifdef CONFIG_IWLWIFI_DEBUG
3d24a9f7 2134 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
bb8c093b 2135 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
b481de9c
ZY
2136 u8 rate = beacon->beacon_notify_hdr.rate;
2137
2138 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
2139 "tsf %d %d rate %d\n",
2140 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
2141 beacon->beacon_notify_hdr.failure_frame,
2142 le32_to_cpu(beacon->ibss_mgr_status),
2143 le32_to_cpu(beacon->high_tsf),
2144 le32_to_cpu(beacon->low_tsf), rate);
2145#endif
2146
05c914fe 2147 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
b481de9c
ZY
2148 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
2149 queue_work(priv->workqueue, &priv->beacon_update);
2150}
2151
2152/* Service response to REPLY_SCAN_CMD (0x80) */
4a8a4322 2153static void iwl3945_rx_reply_scan(struct iwl_priv *priv,
6100b588 2154 struct iwl_rx_mem_buffer *rxb)
b481de9c 2155{
d08853a3 2156#ifdef CONFIG_IWLWIFI_DEBUG
3d24a9f7 2157 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
4c897253
TW
2158 struct iwl_scanreq_notification *notif =
2159 (struct iwl_scanreq_notification *)pkt->u.raw;
b481de9c
ZY
2160
2161 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
2162#endif
2163}
2164
2165/* Service SCAN_START_NOTIFICATION (0x82) */
4a8a4322 2166static void iwl3945_rx_scan_start_notif(struct iwl_priv *priv,
6100b588 2167 struct iwl_rx_mem_buffer *rxb)
b481de9c 2168{
3d24a9f7 2169 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
4c897253
TW
2170 struct iwl_scanstart_notification *notif =
2171 (struct iwl_scanstart_notification *)pkt->u.raw;
b481de9c
ZY
2172 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
2173 IWL_DEBUG_SCAN("Scan start: "
2174 "%d [802.11%s] "
2175 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
2176 notif->channel,
2177 notif->band ? "bg" : "a",
2178 notif->tsf_high,
2179 notif->tsf_low, notif->status, notif->beacon_timer);
2180}
2181
2182/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
4a8a4322 2183static void iwl3945_rx_scan_results_notif(struct iwl_priv *priv,
6100b588 2184 struct iwl_rx_mem_buffer *rxb)
b481de9c 2185{
c7e035a9 2186#ifdef CONFIG_IWLWIFI_DEBUG
3d24a9f7 2187 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
4c897253
TW
2188 struct iwl_scanresults_notification *notif =
2189 (struct iwl_scanresults_notification *)pkt->u.raw;
c7e035a9 2190#endif
b481de9c
ZY
2191
2192 IWL_DEBUG_SCAN("Scan ch.res: "
2193 "%d [802.11%s] "
2194 "(TSF: 0x%08X:%08X) - %d "
2195 "elapsed=%lu usec (%dms since last)\n",
2196 notif->channel,
2197 notif->band ? "bg" : "a",
2198 le32_to_cpu(notif->tsf_high),
2199 le32_to_cpu(notif->tsf_low),
2200 le32_to_cpu(notif->statistics[0]),
2201 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
2202 jiffies_to_msecs(elapsed_jiffies
2203 (priv->last_scan_jiffies, jiffies)));
2204
2205 priv->last_scan_jiffies = jiffies;
7878a5a4 2206 priv->next_scan_jiffies = 0;
b481de9c
ZY
2207}
2208
2209/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
4a8a4322 2210static void iwl3945_rx_scan_complete_notif(struct iwl_priv *priv,
6100b588 2211 struct iwl_rx_mem_buffer *rxb)
b481de9c 2212{
c7e035a9 2213#ifdef CONFIG_IWLWIFI_DEBUG
3d24a9f7 2214 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
4c897253 2215 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
c7e035a9 2216#endif
b481de9c
ZY
2217
2218 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
2219 scan_notif->scanned_channels,
2220 scan_notif->tsf_low,
2221 scan_notif->tsf_high, scan_notif->status);
2222
2223 /* The HW is no longer scanning */
2224 clear_bit(STATUS_SCAN_HW, &priv->status);
2225
2226 /* The scan completion notification came in, so kill that timer... */
2227 cancel_delayed_work(&priv->scan_check);
2228
2229 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
66b5004d
RR
2230 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
2231 "2.4" : "5.2",
b481de9c
ZY
2232 jiffies_to_msecs(elapsed_jiffies
2233 (priv->scan_pass_start, jiffies)));
2234
66b5004d
RR
2235 /* Remove this scanned band from the list of pending
2236 * bands to scan, band G precedes A in order of scanning
2237 * as seen in iwl3945_bg_request_scan */
2238 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
2239 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
2240 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
2241 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
b481de9c
ZY
2242
2243 /* If a request to abort was given, or the scan did not succeed
2244 * then we reset the scan state machine and terminate,
2245 * re-queuing another scan if one has been requested */
2246 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2247 IWL_DEBUG_INFO("Aborted scan completed.\n");
2248 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
2249 } else {
2250 /* If there are more bands on this scan pass reschedule */
2251 if (priv->scan_bands > 0)
2252 goto reschedule;
2253 }
2254
2255 priv->last_scan_jiffies = jiffies;
7878a5a4 2256 priv->next_scan_jiffies = 0;
b481de9c
ZY
2257 IWL_DEBUG_INFO("Setting scan to off\n");
2258
2259 clear_bit(STATUS_SCANNING, &priv->status);
2260
2261 IWL_DEBUG_INFO("Scan took %dms\n",
2262 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
2263
2264 queue_work(priv->workqueue, &priv->scan_completed);
2265
2266 return;
2267
2268reschedule:
2269 priv->scan_pass_start = jiffies;
2270 queue_work(priv->workqueue, &priv->request_scan);
2271}
2272
2273/* Handle notification from uCode that card's power state is changing
2274 * due to software, hardware, or critical temperature RFKILL */
4a8a4322 2275static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
6100b588 2276 struct iwl_rx_mem_buffer *rxb)
b481de9c 2277{
3d24a9f7 2278 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
2279 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
2280 unsigned long status = priv->status;
2281
2282 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
2283 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
2284 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
2285
5d49f498 2286 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
b481de9c
ZY
2287 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2288
2289 if (flags & HW_CARD_DISABLED)
2290 set_bit(STATUS_RF_KILL_HW, &priv->status);
2291 else
2292 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2293
2294
2295 if (flags & SW_CARD_DISABLED)
2296 set_bit(STATUS_RF_KILL_SW, &priv->status);
2297 else
2298 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2299
af0053d6 2300 iwl_scan_cancel(priv);
b481de9c
ZY
2301
2302 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
2303 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
2304 (test_bit(STATUS_RF_KILL_SW, &status) !=
2305 test_bit(STATUS_RF_KILL_SW, &priv->status)))
2306 queue_work(priv->workqueue, &priv->rf_kill);
2307 else
2308 wake_up_interruptible(&priv->wait_command_queue);
2309}
2310
2311/**
bb8c093b 2312 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
b481de9c
ZY
2313 *
2314 * Setup the RX handlers for each of the reply types sent from the uCode
2315 * to the host.
2316 *
2317 * This function chains into the hardware specific files for them to setup
2318 * any hardware specific handlers as well.
2319 */
4a8a4322 2320static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
b481de9c 2321{
bb8c093b
CH
2322 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
2323 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
2324 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
2325 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
b481de9c 2326 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
bb8c093b
CH
2327 iwl3945_rx_spectrum_measure_notif;
2328 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
b481de9c 2329 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
bb8c093b
CH
2330 iwl3945_rx_pm_debug_statistics_notif;
2331 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
b481de9c 2332
9fbab516
BC
2333 /*
2334 * The same handler is used for both the REPLY to a discrete
2335 * statistics request from the host as well as for the periodic
2336 * statistics notifications (after received beacons) from the uCode.
b481de9c 2337 */
bb8c093b
CH
2338 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
2339 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
b481de9c 2340
bb8c093b
CH
2341 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
2342 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
b481de9c 2343 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
bb8c093b 2344 iwl3945_rx_scan_results_notif;
b481de9c 2345 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
bb8c093b
CH
2346 iwl3945_rx_scan_complete_notif;
2347 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
b481de9c 2348
9fbab516 2349 /* Set up hardware specific Rx handlers */
bb8c093b 2350 iwl3945_hw_rx_handler_setup(priv);
b481de9c
ZY
2351}
2352
91c066f2
TW
2353/**
2354 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
2355 * When FW advances 'R' index, all entries between old and new 'R' index
2356 * need to be reclaimed.
2357 */
4a8a4322 2358static void iwl3945_cmd_queue_reclaim(struct iwl_priv *priv,
91c066f2
TW
2359 int txq_id, int index)
2360{
188cf6c7 2361 struct iwl_tx_queue *txq = &priv->txq[txq_id];
d20b3c65 2362 struct iwl_queue *q = &txq->q;
91c066f2
TW
2363 int nfreed = 0;
2364
625a381a 2365 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
15b1687c 2366 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
91c066f2
TW
2367 "is out of range [0-%d] %d %d.\n", txq_id,
2368 index, q->n_bd, q->write_ptr, q->read_ptr);
2369 return;
2370 }
2371
2372 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
2373 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
2374 if (nfreed > 1) {
15b1687c 2375 IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", index,
91c066f2
TW
2376 q->write_ptr, q->read_ptr);
2377 queue_work(priv->workqueue, &priv->restart);
2378 break;
2379 }
2380 nfreed++;
2381 }
2382}
2383
2384
b481de9c 2385/**
bb8c093b 2386 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
b481de9c
ZY
2387 * @rxb: Rx buffer to reclaim
2388 *
2389 * If an Rx buffer has an async callback associated with it the callback
2390 * will be executed. The attached skb (if present) will only be freed
2391 * if the callback returns 1
2392 */
4a8a4322 2393static void iwl3945_tx_cmd_complete(struct iwl_priv *priv,
6100b588 2394 struct iwl_rx_mem_buffer *rxb)
b481de9c 2395{
3d24a9f7 2396 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
b481de9c
ZY
2397 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
2398 int txq_id = SEQ_TO_QUEUE(sequence);
2399 int index = SEQ_TO_INDEX(sequence);
600c0e11 2400 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
b481de9c 2401 int cmd_index;
c2d79b48 2402 struct iwl_cmd *cmd;
b481de9c 2403
638d0eb9
CR
2404 if (WARN(txq_id != IWL_CMD_QUEUE_NUM,
2405 "wrong command queue %d, sequence 0x%X readp=%d writep=%d\n",
2406 txq_id, sequence,
2407 priv->txq[IWL_CMD_QUEUE_NUM].q.read_ptr,
2408 priv->txq[IWL_CMD_QUEUE_NUM].q.write_ptr)) {
2409 iwl_print_hex_dump(priv, IWL_DL_INFO , rxb, 32);
2410 return;
2411 }
b481de9c 2412
188cf6c7
SO
2413 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
2414 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
b481de9c
ZY
2415
2416 /* Input error checking is done when commands are added to queue. */
2417 if (cmd->meta.flags & CMD_WANT_SKB) {
2418 cmd->meta.source->u.skb = rxb->skb;
2419 rxb->skb = NULL;
2420 } else if (cmd->meta.u.callback &&
2421 !cmd->meta.u.callback(priv, cmd, rxb->skb))
2422 rxb->skb = NULL;
2423
91c066f2 2424 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
b481de9c
ZY
2425
2426 if (!(cmd->meta.flags & CMD_ASYNC)) {
2427 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
2428 wake_up_interruptible(&priv->wait_command_queue);
2429 }
2430}
2431
2432/************************** RX-FUNCTIONS ****************************/
2433/*
2434 * Rx theory of operation
2435 *
2436 * The host allocates 32 DMA target addresses and passes the host address
2437 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
2438 * 0 to 31
2439 *
2440 * Rx Queue Indexes
2441 * The host/firmware share two index registers for managing the Rx buffers.
2442 *
2443 * The READ index maps to the first position that the firmware may be writing
2444 * to -- the driver can read up to (but not including) this position and get
2445 * good data.
2446 * The READ index is managed by the firmware once the card is enabled.
2447 *
2448 * The WRITE index maps to the last position the driver has read from -- the
2449 * position preceding WRITE is the last slot the firmware can place a packet.
2450 *
2451 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
2452 * WRITE = READ.
2453 *
9fbab516 2454 * During initialization, the host sets up the READ queue position to the first
b481de9c
ZY
2455 * INDEX position, and WRITE to the last (READ - 1 wrapped)
2456 *
9fbab516 2457 * When the firmware places a packet in a buffer, it will advance the READ index
b481de9c
ZY
2458 * and fire the RX interrupt. The driver can then query the READ index and
2459 * process as many packets as possible, moving the WRITE index forward as it
2460 * resets the Rx queue buffers with new memory.
2461 *
2462 * The management in the driver is as follows:
2463 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
2464 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
01ebd063 2465 * to replenish the iwl->rxq->rx_free.
bb8c093b 2466 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
b481de9c
ZY
2467 * iwl->rxq is replenished and the READ INDEX is updated (updating the
2468 * 'processed' and 'read' driver indexes as well)
2469 * + A received packet is processed and handed to the kernel network stack,
2470 * detached from the iwl->rxq. The driver 'processed' index is updated.
2471 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
2472 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
2473 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
2474 * were enough free buffers and RX_STALLED is set it is cleared.
2475 *
2476 *
2477 * Driver sequence:
2478 *
9fbab516 2479 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
bb8c093b 2480 * iwl3945_rx_queue_restock
9fbab516 2481 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
b481de9c
ZY
2482 * queue, updates firmware pointers, and updates
2483 * the WRITE index. If insufficient rx_free buffers
bb8c093b 2484 * are available, schedules iwl3945_rx_replenish
b481de9c
ZY
2485 *
2486 * -- enable interrupts --
6100b588 2487 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
b481de9c
ZY
2488 * READ INDEX, detaching the SKB from the pool.
2489 * Moves the packet buffer from queue to rx_used.
bb8c093b 2490 * Calls iwl3945_rx_queue_restock to refill any empty
b481de9c
ZY
2491 * slots.
2492 * ...
2493 *
2494 */
2495
b481de9c 2496/**
9fbab516 2497 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
b481de9c 2498 */
4a8a4322 2499static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
b481de9c
ZY
2500 dma_addr_t dma_addr)
2501{
2502 return cpu_to_le32((u32)dma_addr);
2503}
2504
2505/**
bb8c093b 2506 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
b481de9c 2507 *
9fbab516 2508 * If there are slots in the RX queue that need to be restocked,
b481de9c 2509 * and we have free pre-allocated buffers, fill the ranks as much
9fbab516 2510 * as we can, pulling from rx_free.
b481de9c
ZY
2511 *
2512 * This moves the 'write' index forward to catch up with 'processed', and
2513 * also updates the memory address in the firmware to reference the new
2514 * target buffer.
2515 */
4a8a4322 2516static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
b481de9c 2517{
cc2f362c 2518 struct iwl_rx_queue *rxq = &priv->rxq;
b481de9c 2519 struct list_head *element;
6100b588 2520 struct iwl_rx_mem_buffer *rxb;
b481de9c
ZY
2521 unsigned long flags;
2522 int write, rc;
2523
2524 spin_lock_irqsave(&rxq->lock, flags);
2525 write = rxq->write & ~0x7;
37d68317 2526 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
6440adb5 2527 /* Get next free Rx buffer, remove from free list */
b481de9c 2528 element = rxq->rx_free.next;
6100b588 2529 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
b481de9c 2530 list_del(element);
6440adb5
CB
2531
2532 /* Point to Rx buffer via next RBD in circular buffer */
6100b588 2533 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
b481de9c
ZY
2534 rxq->queue[rxq->write] = rxb;
2535 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
2536 rxq->free_count--;
2537 }
2538 spin_unlock_irqrestore(&rxq->lock, flags);
2539 /* If the pre-allocated buffer pool is dropping low, schedule to
2540 * refill it */
2541 if (rxq->free_count <= RX_LOW_WATERMARK)
2542 queue_work(priv->workqueue, &priv->rx_replenish);
2543
2544
6440adb5
CB
2545 /* If we've added more space for the firmware to place data, tell it.
2546 * Increment device's write pointer in multiples of 8. */
b481de9c
ZY
2547 if ((write != (rxq->write & ~0x7))
2548 || (abs(rxq->write - rxq->read) > 7)) {
2549 spin_lock_irqsave(&rxq->lock, flags);
2550 rxq->need_update = 1;
2551 spin_unlock_irqrestore(&rxq->lock, flags);
141c43a3 2552 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
b481de9c
ZY
2553 if (rc)
2554 return rc;
2555 }
2556
2557 return 0;
2558}
2559
2560/**
bb8c093b 2561 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
b481de9c
ZY
2562 *
2563 * When moving to rx_free an SKB is allocated for the slot.
2564 *
bb8c093b 2565 * Also restock the Rx queue via iwl3945_rx_queue_restock.
01ebd063 2566 * This is called as a scheduled work item (except for during initialization)
b481de9c 2567 */
4a8a4322 2568static void iwl3945_rx_allocate(struct iwl_priv *priv)
b481de9c 2569{
cc2f362c 2570 struct iwl_rx_queue *rxq = &priv->rxq;
b481de9c 2571 struct list_head *element;
6100b588 2572 struct iwl_rx_mem_buffer *rxb;
b481de9c
ZY
2573 unsigned long flags;
2574 spin_lock_irqsave(&rxq->lock, flags);
2575 while (!list_empty(&rxq->rx_used)) {
2576 element = rxq->rx_used.next;
6100b588 2577 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
6440adb5
CB
2578
2579 /* Alloc a new receive buffer */
b481de9c 2580 rxb->skb =
1e33dc64
WT
2581 alloc_skb(priv->hw_params.rx_buf_size,
2582 __GFP_NOWARN | GFP_ATOMIC);
b481de9c
ZY
2583 if (!rxb->skb) {
2584 if (net_ratelimit())
978785a3 2585 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
b481de9c
ZY
2586 /* We don't reschedule replenish work here -- we will
2587 * call the restock method and if it still needs
2588 * more buffers it will schedule replenish */
2589 break;
2590 }
12342c47
ZY
2591
2592 /* If radiotap head is required, reserve some headroom here.
2593 * The physical head count is a variable rx_stats->phy_count.
2594 * We reserve 4 bytes here. Plus these extra bytes, the
2595 * headroom of the physical head should be enough for the
2596 * radiotap head that iwl3945 supported. See iwl3945_rt.
2597 */
2598 skb_reserve(rxb->skb, 4);
2599
b481de9c
ZY
2600 priv->alloc_rxb_skb++;
2601 list_del(element);
6440adb5
CB
2602
2603 /* Get physical address of RB/SKB */
1e33dc64
WT
2604 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
2605 rxb->skb->data,
2606 priv->hw_params.rx_buf_size,
2607 PCI_DMA_FROMDEVICE);
b481de9c
ZY
2608 list_add_tail(&rxb->list, &rxq->rx_free);
2609 rxq->free_count++;
2610 }
2611 spin_unlock_irqrestore(&rxq->lock, flags);
5c0eef96
MA
2612}
2613
2614/*
2615 * this should be called while priv->lock is locked
2616 */
4fd1f841 2617static void __iwl3945_rx_replenish(void *data)
5c0eef96 2618{
4a8a4322 2619 struct iwl_priv *priv = data;
5c0eef96
MA
2620
2621 iwl3945_rx_allocate(priv);
2622 iwl3945_rx_queue_restock(priv);
2623}
2624
2625
2626void iwl3945_rx_replenish(void *data)
2627{
4a8a4322 2628 struct iwl_priv *priv = data;
5c0eef96
MA
2629 unsigned long flags;
2630
2631 iwl3945_rx_allocate(priv);
b481de9c
ZY
2632
2633 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 2634 iwl3945_rx_queue_restock(priv);
b481de9c
ZY
2635 spin_unlock_irqrestore(&priv->lock, flags);
2636}
2637
b481de9c
ZY
2638/* Convert linear signal-to-noise ratio into dB */
2639static u8 ratio2dB[100] = {
2640/* 0 1 2 3 4 5 6 7 8 9 */
2641 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
2642 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
2643 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
2644 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
2645 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
2646 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
2647 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
2648 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
2649 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
2650 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
2651};
2652
2653/* Calculates a relative dB value from a ratio of linear
2654 * (i.e. not dB) signal levels.
2655 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
bb8c093b 2656int iwl3945_calc_db_from_ratio(int sig_ratio)
b481de9c 2657{
221c80cf
AB
2658 /* 1000:1 or higher just report as 60 dB */
2659 if (sig_ratio >= 1000)
b481de9c
ZY
2660 return 60;
2661
221c80cf 2662 /* 100:1 or higher, divide by 10 and use table,
b481de9c 2663 * add 20 dB to make up for divide by 10 */
221c80cf 2664 if (sig_ratio >= 100)
3ac7f146 2665 return 20 + (int)ratio2dB[sig_ratio/10];
b481de9c
ZY
2666
2667 /* We shouldn't see this */
2668 if (sig_ratio < 1)
2669 return 0;
2670
2671 /* Use table for ratios 1:1 - 99:1 */
2672 return (int)ratio2dB[sig_ratio];
2673}
2674
2675#define PERFECT_RSSI (-20) /* dBm */
2676#define WORST_RSSI (-95) /* dBm */
2677#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
2678
2679/* Calculate an indication of rx signal quality (a percentage, not dBm!).
2680 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
2681 * about formulas used below. */
bb8c093b 2682int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
b481de9c
ZY
2683{
2684 int sig_qual;
2685 int degradation = PERFECT_RSSI - rssi_dbm;
2686
2687 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
2688 * as indicator; formula is (signal dbm - noise dbm).
2689 * SNR at or above 40 is a great signal (100%).
2690 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
2691 * Weakest usable signal is usually 10 - 15 dB SNR. */
2692 if (noise_dbm) {
2693 if (rssi_dbm - noise_dbm >= 40)
2694 return 100;
2695 else if (rssi_dbm < noise_dbm)
2696 return 0;
2697 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
2698
2699 /* Else use just the signal level.
2700 * This formula is a least squares fit of data points collected and
2701 * compared with a reference system that had a percentage (%) display
2702 * for signal quality. */
2703 } else
2704 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
2705 (15 * RSSI_RANGE + 62 * degradation)) /
2706 (RSSI_RANGE * RSSI_RANGE);
2707
2708 if (sig_qual > 100)
2709 sig_qual = 100;
2710 else if (sig_qual < 1)
2711 sig_qual = 0;
2712
2713 return sig_qual;
2714}
2715
2716/**
9fbab516 2717 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
b481de9c
ZY
2718 *
2719 * Uses the priv->rx_handlers callback function array to invoke
2720 * the appropriate handlers, including command responses,
2721 * frame-received notifications, and other notifications.
2722 */
4a8a4322 2723static void iwl3945_rx_handle(struct iwl_priv *priv)
b481de9c 2724{
6100b588 2725 struct iwl_rx_mem_buffer *rxb;
3d24a9f7 2726 struct iwl_rx_packet *pkt;
cc2f362c 2727 struct iwl_rx_queue *rxq = &priv->rxq;
b481de9c
ZY
2728 u32 r, i;
2729 int reclaim;
2730 unsigned long flags;
5c0eef96 2731 u8 fill_rx = 0;
d68ab680 2732 u32 count = 8;
b481de9c 2733
6440adb5
CB
2734 /* uCode's read index (stored in shared DRAM) indicates the last Rx
2735 * buffer that the driver may process (last buffer filled by ucode). */
8cd812bc 2736 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
b481de9c
ZY
2737 i = rxq->read;
2738
37d68317 2739 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
5c0eef96 2740 fill_rx = 1;
b481de9c
ZY
2741 /* Rx interrupt, but nothing sent from uCode */
2742 if (i == r)
2743 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
2744
2745 while (i != r) {
2746 rxb = rxq->queue[i];
2747
9fbab516 2748 /* If an RXB doesn't have a Rx queue slot associated with it,
b481de9c
ZY
2749 * then a bug has been introduced in the queue refilling
2750 * routines -- catch it here */
2751 BUG_ON(rxb == NULL);
2752
2753 rxq->queue[i] = NULL;
2754
6100b588 2755 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
1e33dc64 2756 priv->hw_params.rx_buf_size,
b481de9c 2757 PCI_DMA_FROMDEVICE);
3d24a9f7 2758 pkt = (struct iwl_rx_packet *)rxb->skb->data;
b481de9c
ZY
2759
2760 /* Reclaim a command buffer only if this packet is a response
2761 * to a (driver-originated) command.
2762 * If the packet (e.g. Rx frame) originated from uCode,
2763 * there is no command buffer to reclaim.
2764 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
2765 * but apparently a few don't get set; catch them here. */
2766 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
2767 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
2768 (pkt->hdr.cmd != REPLY_TX);
2769
2770 /* Based on type of command response or notification,
2771 * handle those that need handling via function in
bb8c093b 2772 * rx_handlers table. See iwl3945_setup_rx_handlers() */
b481de9c 2773 if (priv->rx_handlers[pkt->hdr.cmd]) {
40b8ec0b 2774 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
b481de9c
ZY
2775 "r = %d, i = %d, %s, 0x%02x\n", r, i,
2776 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
2777 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
2778 } else {
2779 /* No handling needed */
40b8ec0b 2780 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
b481de9c
ZY
2781 "r %d i %d No handler needed for %s, 0x%02x\n",
2782 r, i, get_cmd_string(pkt->hdr.cmd),
2783 pkt->hdr.cmd);
2784 }
2785
2786 if (reclaim) {
9fbab516 2787 /* Invoke any callbacks, transfer the skb to caller, and
518099a8 2788 * fire off the (possibly) blocking iwl_send_cmd()
b481de9c
ZY
2789 * as we reclaim the driver command queue */
2790 if (rxb && rxb->skb)
bb8c093b 2791 iwl3945_tx_cmd_complete(priv, rxb);
b481de9c 2792 else
39aadf8c 2793 IWL_WARN(priv, "Claim null rxb?\n");
b481de9c
ZY
2794 }
2795
2796 /* For now we just don't re-use anything. We can tweak this
2797 * later to try and re-use notification packets and SKBs that
2798 * fail to Rx correctly */
2799 if (rxb->skb != NULL) {
2800 priv->alloc_rxb_skb--;
2801 dev_kfree_skb_any(rxb->skb);
2802 rxb->skb = NULL;
2803 }
2804
6100b588 2805 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1e33dc64
WT
2806 priv->hw_params.rx_buf_size,
2807 PCI_DMA_FROMDEVICE);
b481de9c
ZY
2808 spin_lock_irqsave(&rxq->lock, flags);
2809 list_add_tail(&rxb->list, &priv->rxq.rx_used);
2810 spin_unlock_irqrestore(&rxq->lock, flags);
2811 i = (i + 1) & RX_QUEUE_MASK;
5c0eef96
MA
2812 /* If there are a lot of unused frames,
2813 * restock the Rx queue so ucode won't assert. */
2814 if (fill_rx) {
2815 count++;
2816 if (count >= 8) {
2817 priv->rxq.read = i;
2818 __iwl3945_rx_replenish(priv);
2819 count = 0;
2820 }
2821 }
b481de9c
ZY
2822 }
2823
2824 /* Backtrack one entry */
2825 priv->rxq.read = i;
bb8c093b 2826 iwl3945_rx_queue_restock(priv);
b481de9c
ZY
2827}
2828
d08853a3 2829#ifdef CONFIG_IWLWIFI_DEBUG
4a8a4322 2830static void iwl3945_print_rx_config_cmd(struct iwl_priv *priv,
40b8ec0b 2831 struct iwl3945_rxon_cmd *rxon)
b481de9c
ZY
2832{
2833 IWL_DEBUG_RADIO("RX CONFIG:\n");
40b8ec0b 2834 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
b481de9c
ZY
2835 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
2836 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
2837 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
2838 le32_to_cpu(rxon->filter_flags));
2839 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
2840 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
2841 rxon->ofdm_basic_rates);
2842 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
e174961c
JB
2843 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
2844 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
b481de9c
ZY
2845 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
2846}
2847#endif
2848
4a8a4322 2849static void iwl3945_enable_interrupts(struct iwl_priv *priv)
b481de9c
ZY
2850{
2851 IWL_DEBUG_ISR("Enabling interrupts\n");
2852 set_bit(STATUS_INT_ENABLED, &priv->status);
5d49f498 2853 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
b481de9c
ZY
2854}
2855
0359facc
MA
2856
2857/* call this function to flush any scheduled tasklet */
4a8a4322 2858static inline void iwl_synchronize_irq(struct iwl_priv *priv)
0359facc 2859{
a96a27f9 2860 /* wait to make sure we flush pending tasklet*/
0359facc
MA
2861 synchronize_irq(priv->pci_dev->irq);
2862 tasklet_kill(&priv->irq_tasklet);
2863}
2864
2865
4a8a4322 2866static inline void iwl3945_disable_interrupts(struct iwl_priv *priv)
b481de9c
ZY
2867{
2868 clear_bit(STATUS_INT_ENABLED, &priv->status);
2869
2870 /* disable interrupts from uCode/NIC to host */
5d49f498 2871 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
b481de9c
ZY
2872
2873 /* acknowledge/clear/reset any interrupts still pending
2874 * from uCode or flow handler (Rx/Tx DMA) */
5d49f498
AK
2875 iwl_write32(priv, CSR_INT, 0xffffffff);
2876 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
b481de9c
ZY
2877 IWL_DEBUG_ISR("Disabled interrupts\n");
2878}
2879
2880static const char *desc_lookup(int i)
2881{
2882 switch (i) {
2883 case 1:
2884 return "FAIL";
2885 case 2:
2886 return "BAD_PARAM";
2887 case 3:
2888 return "BAD_CHECKSUM";
2889 case 4:
2890 return "NMI_INTERRUPT";
2891 case 5:
2892 return "SYSASSERT";
2893 case 6:
2894 return "FATAL_ERROR";
2895 }
2896
2897 return "UNKNOWN";
2898}
2899
2900#define ERROR_START_OFFSET (1 * sizeof(u32))
2901#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2902
4a8a4322 2903static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
b481de9c
ZY
2904{
2905 u32 i;
2906 u32 desc, time, count, base, data1;
2907 u32 blink1, blink2, ilink1, ilink2;
2908 int rc;
2909
2910 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
2911
bb8c093b 2912 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
15b1687c 2913 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
b481de9c
ZY
2914 return;
2915 }
2916
5d49f498 2917 rc = iwl_grab_nic_access(priv);
b481de9c 2918 if (rc) {
39aadf8c 2919 IWL_WARN(priv, "Can not read from adapter at this time.\n");
b481de9c
ZY
2920 return;
2921 }
2922
5d49f498 2923 count = iwl_read_targ_mem(priv, base);
b481de9c
ZY
2924
2925 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
15b1687c
WT
2926 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2927 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2928 priv->status, count);
b481de9c
ZY
2929 }
2930
15b1687c 2931 IWL_ERR(priv, "Desc Time asrtPC blink2 "
b481de9c
ZY
2932 "ilink1 nmiPC Line\n");
2933 for (i = ERROR_START_OFFSET;
2934 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
2935 i += ERROR_ELEM_SIZE) {
5d49f498 2936 desc = iwl_read_targ_mem(priv, base + i);
b481de9c 2937 time =
5d49f498 2938 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
b481de9c 2939 blink1 =
5d49f498 2940 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
b481de9c 2941 blink2 =
5d49f498 2942 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
b481de9c 2943 ilink1 =
5d49f498 2944 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
b481de9c 2945 ilink2 =
5d49f498 2946 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
b481de9c 2947 data1 =
5d49f498 2948 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
b481de9c 2949
15b1687c
WT
2950 IWL_ERR(priv,
2951 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
2952 desc_lookup(desc), desc, time, blink1, blink2,
2953 ilink1, ilink2, data1);
b481de9c
ZY
2954 }
2955
5d49f498 2956 iwl_release_nic_access(priv);
b481de9c
ZY
2957
2958}
2959
f58177b9 2960#define EVENT_START_OFFSET (6 * sizeof(u32))
b481de9c
ZY
2961
2962/**
bb8c093b 2963 * iwl3945_print_event_log - Dump error event log to syslog
b481de9c 2964 *
5d49f498 2965 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
b481de9c 2966 */
4a8a4322 2967static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
b481de9c
ZY
2968 u32 num_events, u32 mode)
2969{
2970 u32 i;
2971 u32 base; /* SRAM byte address of event log header */
2972 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2973 u32 ptr; /* SRAM byte address of log data */
2974 u32 ev, time, data; /* event log data */
2975
2976 if (num_events == 0)
2977 return;
2978
2979 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2980
2981 if (mode == 0)
2982 event_size = 2 * sizeof(u32);
2983 else
2984 event_size = 3 * sizeof(u32);
2985
2986 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2987
2988 /* "time" is actually "data" for mode 0 (no timestamp).
2989 * place event id # at far right for easier visual parsing. */
2990 for (i = 0; i < num_events; i++) {
5d49f498 2991 ev = iwl_read_targ_mem(priv, ptr);
b481de9c 2992 ptr += sizeof(u32);
5d49f498 2993 time = iwl_read_targ_mem(priv, ptr);
b481de9c 2994 ptr += sizeof(u32);
15b1687c
WT
2995 if (mode == 0) {
2996 /* data, ev */
2997 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
2998 } else {
5d49f498 2999 data = iwl_read_targ_mem(priv, ptr);
b481de9c 3000 ptr += sizeof(u32);
15b1687c 3001 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
b481de9c
ZY
3002 }
3003 }
3004}
3005
4a8a4322 3006static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
b481de9c
ZY
3007{
3008 int rc;
3009 u32 base; /* SRAM byte address of event log header */
3010 u32 capacity; /* event log capacity in # entries */
3011 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3012 u32 num_wraps; /* # times uCode wrapped to top of log */
3013 u32 next_entry; /* index of next entry to be written by uCode */
3014 u32 size; /* # entries that we'll print */
3015
3016 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
bb8c093b 3017 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
15b1687c 3018 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
b481de9c
ZY
3019 return;
3020 }
3021
5d49f498 3022 rc = iwl_grab_nic_access(priv);
b481de9c 3023 if (rc) {
39aadf8c 3024 IWL_WARN(priv, "Can not read from adapter at this time.\n");
b481de9c
ZY
3025 return;
3026 }
3027
3028 /* event log header */
5d49f498
AK
3029 capacity = iwl_read_targ_mem(priv, base);
3030 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3031 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3032 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
b481de9c
ZY
3033
3034 size = num_wraps ? capacity : next_entry;
3035
3036 /* bail out if nothing in log */
3037 if (size == 0) {
15b1687c 3038 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
5d49f498 3039 iwl_release_nic_access(priv);
b481de9c
ZY
3040 return;
3041 }
3042
15b1687c 3043 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
b481de9c
ZY
3044 size, num_wraps);
3045
3046 /* if uCode has wrapped back to top of log, start at the oldest entry,
3047 * i.e the next one that uCode would fill. */
3048 if (num_wraps)
bb8c093b 3049 iwl3945_print_event_log(priv, next_entry,
b481de9c
ZY
3050 capacity - next_entry, mode);
3051
3052 /* (then/else) start at top of log */
bb8c093b 3053 iwl3945_print_event_log(priv, 0, next_entry, mode);
b481de9c 3054
5d49f498 3055 iwl_release_nic_access(priv);
b481de9c
ZY
3056}
3057
3058/**
bb8c093b 3059 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
b481de9c 3060 */
4a8a4322 3061static void iwl3945_irq_handle_error(struct iwl_priv *priv)
b481de9c 3062{
bb8c093b 3063 /* Set the FW error flag -- cleared on iwl3945_down */
b481de9c
ZY
3064 set_bit(STATUS_FW_ERROR, &priv->status);
3065
3066 /* Cancel currently queued command. */
3067 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3068
d08853a3 3069#ifdef CONFIG_IWLWIFI_DEBUG
40b8ec0b 3070 if (priv->debug_level & IWL_DL_FW_ERRORS) {
bb8c093b
CH
3071 iwl3945_dump_nic_error_log(priv);
3072 iwl3945_dump_nic_event_log(priv);
f2c7e521 3073 iwl3945_print_rx_config_cmd(priv, &priv->staging39_rxon);
b481de9c
ZY
3074 }
3075#endif
3076
3077 wake_up_interruptible(&priv->wait_command_queue);
3078
3079 /* Keep the restart process from trying to send host
3080 * commands by clearing the INIT status bit */
3081 clear_bit(STATUS_READY, &priv->status);
3082
3083 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3084 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
3085 "Restarting adapter due to uCode error.\n");
3086
bb8c093b 3087 if (iwl3945_is_associated(priv)) {
f2c7e521
AK
3088 memcpy(&priv->recovery39_rxon, &priv->active39_rxon,
3089 sizeof(priv->recovery39_rxon));
b481de9c
ZY
3090 priv->error_recovering = 1;
3091 }
af48d048
SO
3092 if (priv->cfg->mod_params->restart_fw)
3093 queue_work(priv->workqueue, &priv->restart);
b481de9c
ZY
3094 }
3095}
3096
4a8a4322 3097static void iwl3945_error_recovery(struct iwl_priv *priv)
b481de9c
ZY
3098{
3099 unsigned long flags;
3100
f2c7e521
AK
3101 memcpy(&priv->staging39_rxon, &priv->recovery39_rxon,
3102 sizeof(priv->staging39_rxon));
3103 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 3104 iwl3945_commit_rxon(priv);
b481de9c 3105
bb8c093b 3106 iwl3945_add_station(priv, priv->bssid, 1, 0);
b481de9c
ZY
3107
3108 spin_lock_irqsave(&priv->lock, flags);
f2c7e521 3109 priv->assoc_id = le16_to_cpu(priv->staging39_rxon.assoc_id);
b481de9c
ZY
3110 priv->error_recovering = 0;
3111 spin_unlock_irqrestore(&priv->lock, flags);
3112}
3113
4a8a4322 3114static void iwl3945_irq_tasklet(struct iwl_priv *priv)
b481de9c
ZY
3115{
3116 u32 inta, handled = 0;
3117 u32 inta_fh;
3118 unsigned long flags;
d08853a3 3119#ifdef CONFIG_IWLWIFI_DEBUG
b481de9c
ZY
3120 u32 inta_mask;
3121#endif
3122
3123 spin_lock_irqsave(&priv->lock, flags);
3124
3125 /* Ack/clear/reset pending uCode interrupts.
3126 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
3127 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
5d49f498
AK
3128 inta = iwl_read32(priv, CSR_INT);
3129 iwl_write32(priv, CSR_INT, inta);
b481de9c
ZY
3130
3131 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
3132 * Any new interrupts that happen after this, either while we're
3133 * in this tasklet, or later, will show up in next ISR/tasklet. */
5d49f498
AK
3134 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
3135 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
b481de9c 3136
d08853a3 3137#ifdef CONFIG_IWLWIFI_DEBUG
40b8ec0b 3138 if (priv->debug_level & IWL_DL_ISR) {
9fbab516 3139 /* just for debug */
5d49f498 3140 inta_mask = iwl_read32(priv, CSR_INT_MASK);
b481de9c
ZY
3141 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3142 inta, inta_mask, inta_fh);
3143 }
3144#endif
3145
3146 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
3147 * atomic, make sure that inta covers all the interrupts that
3148 * we've discovered, even if FH interrupt came in just after
3149 * reading CSR_INT. */
6f83eaa1 3150 if (inta_fh & CSR39_FH_INT_RX_MASK)
b481de9c 3151 inta |= CSR_INT_BIT_FH_RX;
6f83eaa1 3152 if (inta_fh & CSR39_FH_INT_TX_MASK)
b481de9c
ZY
3153 inta |= CSR_INT_BIT_FH_TX;
3154
3155 /* Now service all interrupt bits discovered above. */
3156 if (inta & CSR_INT_BIT_HW_ERR) {
15b1687c 3157 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
b481de9c
ZY
3158
3159 /* Tell the device to stop sending interrupts */
bb8c093b 3160 iwl3945_disable_interrupts(priv);
b481de9c 3161
bb8c093b 3162 iwl3945_irq_handle_error(priv);
b481de9c
ZY
3163
3164 handled |= CSR_INT_BIT_HW_ERR;
3165
3166 spin_unlock_irqrestore(&priv->lock, flags);
3167
3168 return;
3169 }
3170
d08853a3 3171#ifdef CONFIG_IWLWIFI_DEBUG
40b8ec0b 3172 if (priv->debug_level & (IWL_DL_ISR)) {
b481de9c 3173 /* NIC fires this, but we don't use it, redundant with WAKEUP */
25c03d8e
JP
3174 if (inta & CSR_INT_BIT_SCD)
3175 IWL_DEBUG_ISR("Scheduler finished to transmit "
3176 "the frame/frames.\n");
b481de9c
ZY
3177
3178 /* Alive notification via Rx interrupt will do the real work */
3179 if (inta & CSR_INT_BIT_ALIVE)
3180 IWL_DEBUG_ISR("Alive interrupt\n");
3181 }
3182#endif
3183 /* Safely ignore these bits for debug checks below */
25c03d8e 3184 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
b481de9c 3185
b481de9c
ZY
3186 /* Error detected by uCode */
3187 if (inta & CSR_INT_BIT_SW_ERR) {
15b1687c
WT
3188 IWL_ERR(priv, "Microcode SW error detected. "
3189 "Restarting 0x%X.\n", inta);
bb8c093b 3190 iwl3945_irq_handle_error(priv);
b481de9c
ZY
3191 handled |= CSR_INT_BIT_SW_ERR;
3192 }
3193
3194 /* uCode wakes up after power-down sleep */
3195 if (inta & CSR_INT_BIT_WAKEUP) {
3196 IWL_DEBUG_ISR("Wakeup interrupt\n");
141c43a3 3197 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
4f3602c8
SO
3198 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
3199 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
3200 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
3201 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
3202 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
3203 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
b481de9c
ZY
3204
3205 handled |= CSR_INT_BIT_WAKEUP;
3206 }
3207
3208 /* All uCode command responses, including Tx command responses,
3209 * Rx "responses" (frame-received notification), and other
3210 * notifications from uCode come through here*/
3211 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
bb8c093b 3212 iwl3945_rx_handle(priv);
b481de9c
ZY
3213 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
3214 }
3215
3216 if (inta & CSR_INT_BIT_FH_TX) {
3217 IWL_DEBUG_ISR("Tx interrupt\n");
3218
5d49f498
AK
3219 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
3220 if (!iwl_grab_nic_access(priv)) {
3221 iwl_write_direct32(priv, FH39_TCSR_CREDIT
bddadf86 3222 (FH39_SRVC_CHNL), 0x0);
5d49f498 3223 iwl_release_nic_access(priv);
b481de9c
ZY
3224 }
3225 handled |= CSR_INT_BIT_FH_TX;
3226 }
3227
3228 if (inta & ~handled)
15b1687c 3229 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
b481de9c
ZY
3230
3231 if (inta & ~CSR_INI_SET_MASK) {
39aadf8c 3232 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
b481de9c 3233 inta & ~CSR_INI_SET_MASK);
39aadf8c 3234 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
b481de9c
ZY
3235 }
3236
3237 /* Re-enable all interrupts */
0359facc
MA
3238 /* only Re-enable if disabled by irq */
3239 if (test_bit(STATUS_INT_ENABLED, &priv->status))
3240 iwl3945_enable_interrupts(priv);
b481de9c 3241
d08853a3 3242#ifdef CONFIG_IWLWIFI_DEBUG
40b8ec0b 3243 if (priv->debug_level & (IWL_DL_ISR)) {
5d49f498
AK
3244 inta = iwl_read32(priv, CSR_INT);
3245 inta_mask = iwl_read32(priv, CSR_INT_MASK);
3246 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
b481de9c
ZY
3247 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
3248 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
3249 }
3250#endif
3251 spin_unlock_irqrestore(&priv->lock, flags);
3252}
3253
bb8c093b 3254static irqreturn_t iwl3945_isr(int irq, void *data)
b481de9c 3255{
4a8a4322 3256 struct iwl_priv *priv = data;
b481de9c
ZY
3257 u32 inta, inta_mask;
3258 u32 inta_fh;
3259 if (!priv)
3260 return IRQ_NONE;
3261
3262 spin_lock(&priv->lock);
3263
3264 /* Disable (but don't clear!) interrupts here to avoid
3265 * back-to-back ISRs and sporadic interrupts from our NIC.
3266 * If we have something to service, the tasklet will re-enable ints.
3267 * If we *don't* have something, we'll re-enable before leaving here. */
5d49f498
AK
3268 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
3269 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
b481de9c
ZY
3270
3271 /* Discover which interrupts are active/pending */
5d49f498
AK
3272 inta = iwl_read32(priv, CSR_INT);
3273 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
b481de9c
ZY
3274
3275 /* Ignore interrupt if there's nothing in NIC to service.
3276 * This may be due to IRQ shared with another device,
3277 * or due to sporadic interrupts thrown from our NIC. */
3278 if (!inta && !inta_fh) {
3279 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
3280 goto none;
3281 }
3282
3283 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
3284 /* Hardware disappeared */
39aadf8c 3285 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
cb4da1a3 3286 goto unplugged;
b481de9c
ZY
3287 }
3288
3289 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3290 inta, inta_mask, inta_fh);
3291
25c03d8e
JP
3292 inta &= ~CSR_INT_BIT_SCD;
3293
bb8c093b 3294 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
25c03d8e
JP
3295 if (likely(inta || inta_fh))
3296 tasklet_schedule(&priv->irq_tasklet);
cb4da1a3 3297unplugged:
b481de9c
ZY
3298 spin_unlock(&priv->lock);
3299
3300 return IRQ_HANDLED;
3301
3302 none:
3303 /* re-enable interrupts here since we don't have anything to service. */
0359facc
MA
3304 /* only Re-enable if disabled by irq */
3305 if (test_bit(STATUS_INT_ENABLED, &priv->status))
3306 iwl3945_enable_interrupts(priv);
b481de9c
ZY
3307 spin_unlock(&priv->lock);
3308 return IRQ_NONE;
3309}
3310
4a8a4322 3311static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
8318d78a 3312 enum ieee80211_band band,
f9340520 3313 u8 is_active, u8 n_probes,
bb8c093b 3314 struct iwl3945_scan_channel *scan_ch)
b481de9c
ZY
3315{
3316 const struct ieee80211_channel *channels = NULL;
8318d78a 3317 const struct ieee80211_supported_band *sband;
d20b3c65 3318 const struct iwl_channel_info *ch_info;
b481de9c
ZY
3319 u16 passive_dwell = 0;
3320 u16 active_dwell = 0;
3321 int added, i;
3322
cbba18c6 3323 sband = iwl_get_hw_mode(priv, band);
8318d78a 3324 if (!sband)
b481de9c
ZY
3325 return 0;
3326
8318d78a 3327 channels = sband->channels;
b481de9c 3328
77fecfb8
SO
3329 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
3330 passive_dwell = iwl_get_passive_dwell_time(priv, band);
b481de9c 3331
8f4807a1
AK
3332 if (passive_dwell <= active_dwell)
3333 passive_dwell = active_dwell + 1;
3334
8318d78a 3335 for (i = 0, added = 0; i < sband->n_channels; i++) {
182e2e66
JB
3336 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
3337 continue;
3338
8318d78a 3339 scan_ch->channel = channels[i].hw_value;
b481de9c 3340
e6148917 3341 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
b481de9c 3342 if (!is_channel_valid(ch_info)) {
66b5004d 3343 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
b481de9c
ZY
3344 scan_ch->channel);
3345 continue;
3346 }
3347
011a0330
AK
3348 scan_ch->active_dwell = cpu_to_le16(active_dwell);
3349 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
3350 /* If passive , set up for auto-switch
3351 * and use long active_dwell time.
3352 */
b481de9c 3353 if (!is_active || is_channel_passive(ch_info) ||
011a0330 3354 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
b481de9c 3355 scan_ch->type = 0; /* passive */
011a0330
AK
3356 if (IWL_UCODE_API(priv->ucode_ver) == 1)
3357 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
3358 } else {
b481de9c 3359 scan_ch->type = 1; /* active */
011a0330 3360 }
b481de9c 3361
011a0330
AK
3362 /* Set direct probe bits. These may be used both for active
3363 * scan channels (probes gets sent right away),
3364 * or for passive channels (probes get se sent only after
3365 * hearing clear Rx packet).*/
3366 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
3367 if (n_probes)
3368 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
3369 } else {
3370 /* uCode v1 does not allow setting direct probe bits on
3371 * passive channel. */
3372 if ((scan_ch->type & 1) && n_probes)
3373 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
3374 }
b481de9c 3375
9fbab516 3376 /* Set txpower levels to defaults */
b481de9c
ZY
3377 scan_ch->tpc.dsp_atten = 110;
3378 /* scan_pwr_info->tpc.dsp_atten; */
3379
3380 /*scan_pwr_info->tpc.tx_gain; */
8318d78a 3381 if (band == IEEE80211_BAND_5GHZ)
b481de9c
ZY
3382 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
3383 else {
3384 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
3385 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
9fbab516 3386 * power level:
8a1b0245 3387 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
b481de9c
ZY
3388 */
3389 }
3390
3391 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
3392 scan_ch->channel,
3393 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
3394 (scan_ch->type & 1) ?
3395 active_dwell : passive_dwell);
3396
3397 scan_ch++;
3398 added++;
3399 }
3400
3401 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
3402 return added;
3403}
3404
4a8a4322 3405static void iwl3945_init_hw_rates(struct iwl_priv *priv,
b481de9c
ZY
3406 struct ieee80211_rate *rates)
3407{
3408 int i;
3409
3410 for (i = 0; i < IWL_RATE_COUNT; i++) {
8318d78a
JB
3411 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
3412 rates[i].hw_value = i; /* Rate scaling will work on indexes */
3413 rates[i].hw_value_short = i;
3414 rates[i].flags = 0;
d9829a67 3415 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
b481de9c 3416 /*
8318d78a 3417 * If CCK != 1M then set short preamble rate flag.
b481de9c 3418 */
bb8c093b 3419 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
8318d78a 3420 0 : IEEE80211_RATE_SHORT_PREAMBLE;
b481de9c 3421 }
b481de9c
ZY
3422 }
3423}
3424
b481de9c
ZY
3425/******************************************************************************
3426 *
3427 * uCode download functions
3428 *
3429 ******************************************************************************/
3430
4a8a4322 3431static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
b481de9c 3432{
98c92211
TW
3433 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
3434 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
3435 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
3436 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
3437 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
3438 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
b481de9c
ZY
3439}
3440
3441/**
bb8c093b 3442 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
b481de9c
ZY
3443 * looking at all data.
3444 */
4a8a4322 3445static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
b481de9c
ZY
3446{
3447 u32 val;
3448 u32 save_len = len;
3449 int rc = 0;
3450 u32 errcnt;
3451
3452 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
3453
5d49f498 3454 rc = iwl_grab_nic_access(priv);
b481de9c
ZY
3455 if (rc)
3456 return rc;
3457
5d49f498 3458 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
250bdd21 3459 IWL39_RTC_INST_LOWER_BOUND);
b481de9c
ZY
3460
3461 errcnt = 0;
3462 for (; len > 0; len -= sizeof(u32), image++) {
3463 /* read data comes through single port, auto-incr addr */
3464 /* NOTE: Use the debugless read so we don't flood kernel log
3465 * if IWL_DL_IO is set */
5d49f498 3466 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
b481de9c 3467 if (val != le32_to_cpu(*image)) {
15b1687c 3468 IWL_ERR(priv, "uCode INST section is invalid at "
b481de9c
ZY
3469 "offset 0x%x, is 0x%x, s/b 0x%x\n",
3470 save_len - len, val, le32_to_cpu(*image));
3471 rc = -EIO;
3472 errcnt++;
3473 if (errcnt >= 20)
3474 break;
3475 }
3476 }
3477
5d49f498 3478 iwl_release_nic_access(priv);
b481de9c
ZY
3479
3480 if (!errcnt)
bc434dd2 3481 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
b481de9c
ZY
3482
3483 return rc;
3484}
3485
3486
3487/**
bb8c093b 3488 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
b481de9c
ZY
3489 * using sample data 100 bytes apart. If these sample points are good,
3490 * it's a pretty good bet that everything between them is good, too.
3491 */
4a8a4322 3492static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
b481de9c
ZY
3493{
3494 u32 val;
3495 int rc = 0;
3496 u32 errcnt = 0;
3497 u32 i;
3498
3499 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
3500
5d49f498 3501 rc = iwl_grab_nic_access(priv);
b481de9c
ZY
3502 if (rc)
3503 return rc;
3504
3505 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
3506 /* read data comes through single port, auto-incr addr */
3507 /* NOTE: Use the debugless read so we don't flood kernel log
3508 * if IWL_DL_IO is set */
5d49f498 3509 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
250bdd21 3510 i + IWL39_RTC_INST_LOWER_BOUND);
5d49f498 3511 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
b481de9c
ZY
3512 if (val != le32_to_cpu(*image)) {
3513#if 0 /* Enable this if you want to see details */
15b1687c 3514 IWL_ERR(priv, "uCode INST section is invalid at "
b481de9c
ZY
3515 "offset 0x%x, is 0x%x, s/b 0x%x\n",
3516 i, val, *image);
3517#endif
3518 rc = -EIO;
3519 errcnt++;
3520 if (errcnt >= 3)
3521 break;
3522 }
3523 }
3524
5d49f498 3525 iwl_release_nic_access(priv);
b481de9c
ZY
3526
3527 return rc;
3528}
3529
3530
3531/**
bb8c093b 3532 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
b481de9c
ZY
3533 * and verify its contents
3534 */
4a8a4322 3535static int iwl3945_verify_ucode(struct iwl_priv *priv)
b481de9c
ZY
3536{
3537 __le32 *image;
3538 u32 len;
3539 int rc = 0;
3540
3541 /* Try bootstrap */
3542 image = (__le32 *)priv->ucode_boot.v_addr;
3543 len = priv->ucode_boot.len;
bb8c093b 3544 rc = iwl3945_verify_inst_sparse(priv, image, len);
b481de9c
ZY
3545 if (rc == 0) {
3546 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
3547 return 0;
3548 }
3549
3550 /* Try initialize */
3551 image = (__le32 *)priv->ucode_init.v_addr;
3552 len = priv->ucode_init.len;
bb8c093b 3553 rc = iwl3945_verify_inst_sparse(priv, image, len);
b481de9c
ZY
3554 if (rc == 0) {
3555 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
3556 return 0;
3557 }
3558
3559 /* Try runtime/protocol */
3560 image = (__le32 *)priv->ucode_code.v_addr;
3561 len = priv->ucode_code.len;
bb8c093b 3562 rc = iwl3945_verify_inst_sparse(priv, image, len);
b481de9c
ZY
3563 if (rc == 0) {
3564 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
3565 return 0;
3566 }
3567
15b1687c 3568 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
b481de9c 3569
9fbab516
BC
3570 /* Since nothing seems to match, show first several data entries in
3571 * instruction SRAM, so maybe visual inspection will give a clue.
3572 * Selection of bootstrap image (vs. other images) is arbitrary. */
b481de9c
ZY
3573 image = (__le32 *)priv->ucode_boot.v_addr;
3574 len = priv->ucode_boot.len;
bb8c093b 3575 rc = iwl3945_verify_inst_full(priv, image, len);
b481de9c
ZY
3576
3577 return rc;
3578}
3579
4a8a4322 3580static void iwl3945_nic_start(struct iwl_priv *priv)
b481de9c
ZY
3581{
3582 /* Remove all resets to allow NIC to operate */
5d49f498 3583 iwl_write32(priv, CSR_RESET, 0);
b481de9c
ZY
3584}
3585
3586/**
bb8c093b 3587 * iwl3945_read_ucode - Read uCode images from disk file.
b481de9c
ZY
3588 *
3589 * Copy into buffers for card to fetch via bus-mastering
3590 */
4a8a4322 3591static int iwl3945_read_ucode(struct iwl_priv *priv)
b481de9c 3592{
a78fe754 3593 struct iwl_ucode *ucode;
a0987a8d 3594 int ret = -EINVAL, index;
b481de9c
ZY
3595 const struct firmware *ucode_raw;
3596 /* firmware file name contains uCode/driver compatibility version */
a0987a8d
RC
3597 const char *name_pre = priv->cfg->fw_name_pre;
3598 const unsigned int api_max = priv->cfg->ucode_api_max;
3599 const unsigned int api_min = priv->cfg->ucode_api_min;
3600 char buf[25];
b481de9c
ZY
3601 u8 *src;
3602 size_t len;
a0987a8d 3603 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
b481de9c
ZY
3604
3605 /* Ask kernel firmware_class module to get the boot firmware off disk.
3606 * request_firmware() is synchronous, file is in memory on return. */
a0987a8d
RC
3607 for (index = api_max; index >= api_min; index--) {
3608 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
3609 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
3610 if (ret < 0) {
15b1687c 3611 IWL_ERR(priv, "%s firmware file req failed: %d\n",
a0987a8d
RC
3612 buf, ret);
3613 if (ret == -ENOENT)
3614 continue;
3615 else
3616 goto error;
3617 } else {
3618 if (index < api_max)
15b1687c
WT
3619 IWL_ERR(priv, "Loaded firmware %s, "
3620 "which is deprecated. "
3621 " Please use API v%u instead.\n",
a0987a8d
RC
3622 buf, api_max);
3623 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
3624 buf, ucode_raw->size);
3625 break;
3626 }
b481de9c
ZY
3627 }
3628
a0987a8d
RC
3629 if (ret < 0)
3630 goto error;
b481de9c
ZY
3631
3632 /* Make sure that we got at least our header! */
3633 if (ucode_raw->size < sizeof(*ucode)) {
15b1687c 3634 IWL_ERR(priv, "File size way too small!\n");
90e759d1 3635 ret = -EINVAL;
b481de9c
ZY
3636 goto err_release;
3637 }
3638
3639 /* Data from ucode file: header followed by uCode images */
3640 ucode = (void *)ucode_raw->data;
3641
c02b3acd 3642 priv->ucode_ver = le32_to_cpu(ucode->ver);
a0987a8d 3643 api_ver = IWL_UCODE_API(priv->ucode_ver);
b481de9c
ZY
3644 inst_size = le32_to_cpu(ucode->inst_size);
3645 data_size = le32_to_cpu(ucode->data_size);
3646 init_size = le32_to_cpu(ucode->init_size);
3647 init_data_size = le32_to_cpu(ucode->init_data_size);
3648 boot_size = le32_to_cpu(ucode->boot_size);
3649
a0987a8d
RC
3650 /* api_ver should match the api version forming part of the
3651 * firmware filename ... but we don't check for that and only rely
3652 * on the API version read from firware header from here on forward */
3653
3654 if (api_ver < api_min || api_ver > api_max) {
15b1687c 3655 IWL_ERR(priv, "Driver unable to support your firmware API. "
a0987a8d
RC
3656 "Driver supports v%u, firmware is v%u.\n",
3657 api_max, api_ver);
3658 priv->ucode_ver = 0;
3659 ret = -EINVAL;
3660 goto err_release;
3661 }
3662 if (api_ver != api_max)
15b1687c 3663 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
a0987a8d
RC
3664 "got %u. New firmware can be obtained "
3665 "from http://www.intellinuxwireless.org.\n",
3666 api_max, api_ver);
3667
978785a3
TW
3668 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
3669 IWL_UCODE_MAJOR(priv->ucode_ver),
3670 IWL_UCODE_MINOR(priv->ucode_ver),
3671 IWL_UCODE_API(priv->ucode_ver),
3672 IWL_UCODE_SERIAL(priv->ucode_ver));
3673
a0987a8d
RC
3674 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
3675 priv->ucode_ver);
bc434dd2
IS
3676 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
3677 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
3678 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
3679 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
3680 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
b481de9c 3681
a0987a8d 3682
b481de9c
ZY
3683 /* Verify size of file vs. image size info in file's header */
3684 if (ucode_raw->size < sizeof(*ucode) +
3685 inst_size + data_size + init_size +
3686 init_data_size + boot_size) {
3687
3688 IWL_DEBUG_INFO("uCode file size %d too small\n",
3689 (int)ucode_raw->size);
90e759d1 3690 ret = -EINVAL;
b481de9c
ZY
3691 goto err_release;
3692 }
3693
3694 /* Verify that uCode images will fit in card's SRAM */
250bdd21 3695 if (inst_size > IWL39_MAX_INST_SIZE) {
90e759d1
TW
3696 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
3697 inst_size);
3698 ret = -EINVAL;
b481de9c
ZY
3699 goto err_release;
3700 }
3701
250bdd21 3702 if (data_size > IWL39_MAX_DATA_SIZE) {
90e759d1
TW
3703 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
3704 data_size);
3705 ret = -EINVAL;
b481de9c
ZY
3706 goto err_release;
3707 }
250bdd21 3708 if (init_size > IWL39_MAX_INST_SIZE) {
90e759d1
TW
3709 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
3710 init_size);
3711 ret = -EINVAL;
b481de9c
ZY
3712 goto err_release;
3713 }
250bdd21 3714 if (init_data_size > IWL39_MAX_DATA_SIZE) {
90e759d1
TW
3715 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
3716 init_data_size);
3717 ret = -EINVAL;
b481de9c
ZY
3718 goto err_release;
3719 }
250bdd21 3720 if (boot_size > IWL39_MAX_BSM_SIZE) {
90e759d1
TW
3721 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
3722 boot_size);
3723 ret = -EINVAL;
b481de9c
ZY
3724 goto err_release;
3725 }
3726
3727 /* Allocate ucode buffers for card's bus-master loading ... */
3728
3729 /* Runtime instructions and 2 copies of data:
3730 * 1) unmodified from disk
3731 * 2) backup cache for save/restore during power-downs */
3732 priv->ucode_code.len = inst_size;
98c92211 3733 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
b481de9c
ZY
3734
3735 priv->ucode_data.len = data_size;
98c92211 3736 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
b481de9c
ZY
3737
3738 priv->ucode_data_backup.len = data_size;
98c92211 3739 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
b481de9c 3740
90e759d1
TW
3741 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
3742 !priv->ucode_data_backup.v_addr)
3743 goto err_pci_alloc;
b481de9c
ZY
3744
3745 /* Initialization instructions and data */
90e759d1
TW
3746 if (init_size && init_data_size) {
3747 priv->ucode_init.len = init_size;
98c92211 3748 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
90e759d1
TW
3749
3750 priv->ucode_init_data.len = init_data_size;
98c92211 3751 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
90e759d1
TW
3752
3753 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
3754 goto err_pci_alloc;
3755 }
b481de9c
ZY
3756
3757 /* Bootstrap (instructions only, no data) */
90e759d1
TW
3758 if (boot_size) {
3759 priv->ucode_boot.len = boot_size;
98c92211 3760 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
b481de9c 3761
90e759d1
TW
3762 if (!priv->ucode_boot.v_addr)
3763 goto err_pci_alloc;
3764 }
b481de9c
ZY
3765
3766 /* Copy images into buffers for card's bus-master reads ... */
3767
3768 /* Runtime instructions (first block of data in file) */
3769 src = &ucode->data[0];
3770 len = priv->ucode_code.len;
90e759d1 3771 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
b481de9c
ZY
3772 memcpy(priv->ucode_code.v_addr, src, len);
3773 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
3774 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
3775
3776 /* Runtime data (2nd block)
bb8c093b 3777 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
b481de9c
ZY
3778 src = &ucode->data[inst_size];
3779 len = priv->ucode_data.len;
90e759d1 3780 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
b481de9c
ZY
3781 memcpy(priv->ucode_data.v_addr, src, len);
3782 memcpy(priv->ucode_data_backup.v_addr, src, len);
3783
3784 /* Initialization instructions (3rd block) */
3785 if (init_size) {
3786 src = &ucode->data[inst_size + data_size];
3787 len = priv->ucode_init.len;
90e759d1
TW
3788 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
3789 len);
b481de9c
ZY
3790 memcpy(priv->ucode_init.v_addr, src, len);
3791 }
3792
3793 /* Initialization data (4th block) */
3794 if (init_data_size) {
3795 src = &ucode->data[inst_size + data_size + init_size];
3796 len = priv->ucode_init_data.len;
3797 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
3798 (int)len);
3799 memcpy(priv->ucode_init_data.v_addr, src, len);
3800 }
3801
3802 /* Bootstrap instructions (5th block) */
3803 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
3804 len = priv->ucode_boot.len;
3805 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
3806 (int)len);
3807 memcpy(priv->ucode_boot.v_addr, src, len);
3808
3809 /* We have our copies now, allow OS release its copies */
3810 release_firmware(ucode_raw);
3811 return 0;
3812
3813 err_pci_alloc:
15b1687c 3814 IWL_ERR(priv, "failed to allocate pci memory\n");
90e759d1 3815 ret = -ENOMEM;
bb8c093b 3816 iwl3945_dealloc_ucode_pci(priv);
b481de9c
ZY
3817
3818 err_release:
3819 release_firmware(ucode_raw);
3820
3821 error:
90e759d1 3822 return ret;
b481de9c
ZY
3823}
3824
3825
3826/**
bb8c093b 3827 * iwl3945_set_ucode_ptrs - Set uCode address location
b481de9c
ZY
3828 *
3829 * Tell initialization uCode where to find runtime uCode.
3830 *
3831 * BSM registers initially contain pointers to initialization uCode.
3832 * We need to replace them to load runtime uCode inst and data,
3833 * and to save runtime data when powering down.
3834 */
4a8a4322 3835static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
b481de9c
ZY
3836{
3837 dma_addr_t pinst;
3838 dma_addr_t pdata;
3839 int rc = 0;
3840 unsigned long flags;
3841
3842 /* bits 31:0 for 3945 */
3843 pinst = priv->ucode_code.p_addr;
3844 pdata = priv->ucode_data_backup.p_addr;
3845
3846 spin_lock_irqsave(&priv->lock, flags);
5d49f498 3847 rc = iwl_grab_nic_access(priv);
b481de9c
ZY
3848 if (rc) {
3849 spin_unlock_irqrestore(&priv->lock, flags);
3850 return rc;
3851 }
3852
3853 /* Tell bootstrap uCode where to find image to load */
5d49f498
AK
3854 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
3855 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
3856 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
b481de9c
ZY
3857 priv->ucode_data.len);
3858
a96a27f9 3859 /* Inst byte count must be last to set up, bit 31 signals uCode
b481de9c 3860 * that all new ptr/size info is in place */
5d49f498 3861 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
b481de9c
ZY
3862 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
3863
5d49f498 3864 iwl_release_nic_access(priv);
b481de9c
ZY
3865
3866 spin_unlock_irqrestore(&priv->lock, flags);
3867
3868 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
3869
3870 return rc;
3871}
3872
3873/**
bb8c093b 3874 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
b481de9c
ZY
3875 *
3876 * Called after REPLY_ALIVE notification received from "initialize" uCode.
3877 *
b481de9c 3878 * Tell "initialize" uCode to go ahead and load the runtime uCode.
9fbab516 3879 */
4a8a4322 3880static void iwl3945_init_alive_start(struct iwl_priv *priv)
b481de9c
ZY
3881{
3882 /* Check alive response for "valid" sign from uCode */
3883 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
3884 /* We had an error bringing up the hardware, so take it
3885 * all the way back down so we can try again */
3886 IWL_DEBUG_INFO("Initialize Alive failed.\n");
3887 goto restart;
3888 }
3889
3890 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
3891 * This is a paranoid check, because we would not have gotten the
3892 * "initialize" alive if code weren't properly loaded. */
bb8c093b 3893 if (iwl3945_verify_ucode(priv)) {
b481de9c
ZY
3894 /* Runtime instruction load was bad;
3895 * take it all the way back down so we can try again */
3896 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
3897 goto restart;
3898 }
3899
3900 /* Send pointers to protocol/runtime uCode image ... init code will
3901 * load and launch runtime uCode, which will send us another "Alive"
3902 * notification. */
3903 IWL_DEBUG_INFO("Initialization Alive received.\n");
bb8c093b 3904 if (iwl3945_set_ucode_ptrs(priv)) {
b481de9c
ZY
3905 /* Runtime instruction load won't happen;
3906 * take it all the way back down so we can try again */
3907 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
3908 goto restart;
3909 }
3910 return;
3911
3912 restart:
3913 queue_work(priv->workqueue, &priv->restart);
3914}
3915
3916
9bdf5eca
MA
3917/* temporary */
3918static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
3919 struct sk_buff *skb);
3920
b481de9c 3921/**
bb8c093b 3922 * iwl3945_alive_start - called after REPLY_ALIVE notification received
b481de9c 3923 * from protocol/runtime uCode (initialization uCode's
bb8c093b 3924 * Alive gets handled by iwl3945_init_alive_start()).
b481de9c 3925 */
4a8a4322 3926static void iwl3945_alive_start(struct iwl_priv *priv)
b481de9c
ZY
3927{
3928 int rc = 0;
3929 int thermal_spin = 0;
3930 u32 rfkill;
3931
3932 IWL_DEBUG_INFO("Runtime Alive received.\n");
3933
3934 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
3935 /* We had an error bringing up the hardware, so take it
3936 * all the way back down so we can try again */
3937 IWL_DEBUG_INFO("Alive failed.\n");
3938 goto restart;
3939 }
3940
3941 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
3942 * This is a paranoid check, because we would not have gotten the
3943 * "runtime" alive if code weren't properly loaded. */
bb8c093b 3944 if (iwl3945_verify_ucode(priv)) {
b481de9c
ZY
3945 /* Runtime instruction load was bad;
3946 * take it all the way back down so we can try again */
3947 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
3948 goto restart;
3949 }
3950
bb8c093b 3951 iwl3945_clear_stations_table(priv);
b481de9c 3952
5d49f498 3953 rc = iwl_grab_nic_access(priv);
b481de9c 3954 if (rc) {
39aadf8c 3955 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
b481de9c
ZY
3956 return;
3957 }
3958
5d49f498 3959 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
b481de9c 3960 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
5d49f498 3961 iwl_release_nic_access(priv);
b481de9c
ZY
3962
3963 if (rfkill & 0x1) {
3964 clear_bit(STATUS_RF_KILL_HW, &priv->status);
a96a27f9 3965 /* if RFKILL is not on, then wait for thermal
b481de9c 3966 * sensor in adapter to kick in */
bb8c093b 3967 while (iwl3945_hw_get_temperature(priv) == 0) {
b481de9c
ZY
3968 thermal_spin++;
3969 udelay(10);
3970 }
3971
3972 if (thermal_spin)
3973 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
3974 thermal_spin * 10);
3975 } else
3976 set_bit(STATUS_RF_KILL_HW, &priv->status);
3977
9fbab516 3978 /* After the ALIVE response, we can send commands to 3945 uCode */
b481de9c
ZY
3979 set_bit(STATUS_ALIVE, &priv->status);
3980
3981 /* Clear out the uCode error bit if it is set */
3982 clear_bit(STATUS_FW_ERROR, &priv->status);
3983
775a6e27 3984 if (iwl_is_rfkill(priv))
b481de9c
ZY
3985 return;
3986
36d6825b 3987 ieee80211_wake_queues(priv->hw);
b481de9c
ZY
3988
3989 priv->active_rate = priv->rates_mask;
3990 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
3991
bb8c093b 3992 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
b481de9c 3993
bb8c093b
CH
3994 if (iwl3945_is_associated(priv)) {
3995 struct iwl3945_rxon_cmd *active_rxon =
f2c7e521 3996 (struct iwl3945_rxon_cmd *)(&priv->active39_rxon);
b481de9c 3997
f2c7e521
AK
3998 memcpy(&priv->staging39_rxon, &priv->active39_rxon,
3999 sizeof(priv->staging39_rxon));
b481de9c
ZY
4000 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
4001 } else {
4002 /* Initialize our rx_config data */
60294de3 4003 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
f2c7e521 4004 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
b481de9c
ZY
4005 }
4006
9fbab516 4007 /* Configure Bluetooth device coexistence support */
bb8c093b 4008 iwl3945_send_bt_config(priv);
b481de9c
ZY
4009
4010 /* Configure the adapter for unassociated operation */
bb8c093b 4011 iwl3945_commit_rxon(priv);
b481de9c 4012
b481de9c
ZY
4013 iwl3945_reg_txpower_periodic(priv);
4014
fe00b5a5
RC
4015 iwl3945_led_register(priv);
4016
b481de9c 4017 IWL_DEBUG_INFO("ALIVE processing complete.\n");
a9f46786 4018 set_bit(STATUS_READY, &priv->status);
5a66926a 4019 wake_up_interruptible(&priv->wait_command_queue);
b481de9c
ZY
4020
4021 if (priv->error_recovering)
bb8c093b 4022 iwl3945_error_recovery(priv);
b481de9c 4023
9bdf5eca
MA
4024 /* reassociate for ADHOC mode */
4025 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
4026 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
4027 priv->vif);
4028 if (beacon)
4029 iwl3945_mac_beacon_update(priv->hw, beacon);
4030 }
4031
b481de9c
ZY
4032 return;
4033
4034 restart:
4035 queue_work(priv->workqueue, &priv->restart);
4036}
4037
4a8a4322 4038static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
b481de9c 4039
4a8a4322 4040static void __iwl3945_down(struct iwl_priv *priv)
b481de9c
ZY
4041{
4042 unsigned long flags;
4043 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
4044 struct ieee80211_conf *conf = NULL;
4045
4046 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
4047
4048 conf = ieee80211_get_hw_conf(priv->hw);
4049
4050 if (!exit_pending)
4051 set_bit(STATUS_EXIT_PENDING, &priv->status);
4052
ab53d8af 4053 iwl3945_led_unregister(priv);
bb8c093b 4054 iwl3945_clear_stations_table(priv);
b481de9c
ZY
4055
4056 /* Unblock any waiting calls */
4057 wake_up_interruptible_all(&priv->wait_command_queue);
4058
b481de9c
ZY
4059 /* Wipe out the EXIT_PENDING status bit if we are not actually
4060 * exiting the module */
4061 if (!exit_pending)
4062 clear_bit(STATUS_EXIT_PENDING, &priv->status);
4063
4064 /* stop and reset the on-board processor */
5d49f498 4065 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
b481de9c
ZY
4066
4067 /* tell the device to stop sending interrupts */
0359facc 4068 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 4069 iwl3945_disable_interrupts(priv);
0359facc
MA
4070 spin_unlock_irqrestore(&priv->lock, flags);
4071 iwl_synchronize_irq(priv);
b481de9c
ZY
4072
4073 if (priv->mac80211_registered)
4074 ieee80211_stop_queues(priv->hw);
4075
bb8c093b 4076 /* If we have not previously called iwl3945_init() then
b481de9c 4077 * clear all bits but the RF Kill and SUSPEND bits and return */
775a6e27 4078 if (!iwl_is_init(priv)) {
b481de9c
ZY
4079 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
4080 STATUS_RF_KILL_HW |
4081 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
4082 STATUS_RF_KILL_SW |
9788864e
RC
4083 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
4084 STATUS_GEO_CONFIGURED |
b481de9c 4085 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
ebef2008
AK
4086 STATUS_IN_SUSPEND |
4087 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
4088 STATUS_EXIT_PENDING;
b481de9c
ZY
4089 goto exit;
4090 }
4091
4092 /* ...otherwise clear out all the status bits but the RF Kill and
4093 * SUSPEND bits and continue taking the NIC down. */
4094 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
4095 STATUS_RF_KILL_HW |
4096 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
4097 STATUS_RF_KILL_SW |
9788864e
RC
4098 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
4099 STATUS_GEO_CONFIGURED |
b481de9c
ZY
4100 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
4101 STATUS_IN_SUSPEND |
4102 test_bit(STATUS_FW_ERROR, &priv->status) <<
ebef2008
AK
4103 STATUS_FW_ERROR |
4104 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
4105 STATUS_EXIT_PENDING;
b481de9c 4106
e9414b6b 4107 priv->cfg->ops->lib->apm_ops.reset(priv);
b481de9c 4108 spin_lock_irqsave(&priv->lock, flags);
5d49f498 4109 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
b481de9c
ZY
4110 spin_unlock_irqrestore(&priv->lock, flags);
4111
bb8c093b
CH
4112 iwl3945_hw_txq_ctx_stop(priv);
4113 iwl3945_hw_rxq_stop(priv);
b481de9c
ZY
4114
4115 spin_lock_irqsave(&priv->lock, flags);
5d49f498
AK
4116 if (!iwl_grab_nic_access(priv)) {
4117 iwl_write_prph(priv, APMG_CLK_DIS_REG,
b481de9c 4118 APMG_CLK_VAL_DMA_CLK_RQT);
5d49f498 4119 iwl_release_nic_access(priv);
b481de9c
ZY
4120 }
4121 spin_unlock_irqrestore(&priv->lock, flags);
4122
4123 udelay(5);
4124
e9414b6b
AM
4125 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
4126 priv->cfg->ops->lib->apm_ops.stop(priv);
4127 else
4128 priv->cfg->ops->lib->apm_ops.reset(priv);
4129
b481de9c 4130 exit:
3d24a9f7 4131 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
b481de9c
ZY
4132
4133 if (priv->ibss_beacon)
4134 dev_kfree_skb(priv->ibss_beacon);
4135 priv->ibss_beacon = NULL;
4136
4137 /* clear out any free frames */
bb8c093b 4138 iwl3945_clear_free_frames(priv);
b481de9c
ZY
4139}
4140
4a8a4322 4141static void iwl3945_down(struct iwl_priv *priv)
b481de9c
ZY
4142{
4143 mutex_lock(&priv->mutex);
bb8c093b 4144 __iwl3945_down(priv);
b481de9c 4145 mutex_unlock(&priv->mutex);
b24d22b1 4146
bb8c093b 4147 iwl3945_cancel_deferred_work(priv);
b481de9c
ZY
4148}
4149
4150#define MAX_HW_RESTARTS 5
4151
4a8a4322 4152static int __iwl3945_up(struct iwl_priv *priv)
b481de9c
ZY
4153{
4154 int rc, i;
4155
4156 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
39aadf8c 4157 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
b481de9c
ZY
4158 return -EIO;
4159 }
4160
4161 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
39aadf8c 4162 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
b481de9c 4163 "parameter)\n");
e655b9f0
ZY
4164 return -ENODEV;
4165 }
4166
e903fbd4 4167 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
15b1687c 4168 IWL_ERR(priv, "ucode not available for device bring up\n");
e903fbd4
RC
4169 return -EIO;
4170 }
4171
e655b9f0 4172 /* If platform's RF_KILL switch is NOT set to KILL */
5d49f498 4173 if (iwl_read32(priv, CSR_GP_CNTRL) &
e655b9f0
ZY
4174 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4175 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4176 else {
4177 set_bit(STATUS_RF_KILL_HW, &priv->status);
4178 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
39aadf8c 4179 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
e655b9f0
ZY
4180 return -ENODEV;
4181 }
b481de9c 4182 }
80fcc9e2 4183
5d49f498 4184 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
b481de9c 4185
bb8c093b 4186 rc = iwl3945_hw_nic_init(priv);
b481de9c 4187 if (rc) {
15b1687c 4188 IWL_ERR(priv, "Unable to int nic\n");
b481de9c
ZY
4189 return rc;
4190 }
4191
4192 /* make sure rfkill handshake bits are cleared */
5d49f498
AK
4193 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
4194 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
b481de9c
ZY
4195 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
4196
4197 /* clear (again), then enable host interrupts */
5d49f498 4198 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
bb8c093b 4199 iwl3945_enable_interrupts(priv);
b481de9c
ZY
4200
4201 /* really make sure rfkill handshake bits are cleared */
5d49f498
AK
4202 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
4203 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
b481de9c
ZY
4204
4205 /* Copy original ucode data image from disk into backup cache.
4206 * This will be used to initialize the on-board processor's
4207 * data SRAM for a clean start when the runtime program first loads. */
4208 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
5a66926a 4209 priv->ucode_data.len);
b481de9c 4210
e655b9f0
ZY
4211 /* We return success when we resume from suspend and rf_kill is on. */
4212 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
4213 return 0;
4214
b481de9c
ZY
4215 for (i = 0; i < MAX_HW_RESTARTS; i++) {
4216
bb8c093b 4217 iwl3945_clear_stations_table(priv);
b481de9c
ZY
4218
4219 /* load bootstrap state machine,
4220 * load bootstrap program into processor's memory,
4221 * prepare to load the "initialize" uCode */
0164b9b4 4222 priv->cfg->ops->lib->load_ucode(priv);
b481de9c
ZY
4223
4224 if (rc) {
15b1687c
WT
4225 IWL_ERR(priv,
4226 "Unable to set up bootstrap uCode: %d\n", rc);
b481de9c
ZY
4227 continue;
4228 }
4229
4230 /* start card; "initialize" will load runtime ucode */
bb8c093b 4231 iwl3945_nic_start(priv);
b481de9c 4232
b481de9c
ZY
4233 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
4234
4235 return 0;
4236 }
4237
4238 set_bit(STATUS_EXIT_PENDING, &priv->status);
bb8c093b 4239 __iwl3945_down(priv);
ebef2008 4240 clear_bit(STATUS_EXIT_PENDING, &priv->status);
b481de9c
ZY
4241
4242 /* tried to restart and config the device for as long as our
4243 * patience could withstand */
15b1687c 4244 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
b481de9c
ZY
4245 return -EIO;
4246}
4247
4248
4249/*****************************************************************************
4250 *
4251 * Workqueue callbacks
4252 *
4253 *****************************************************************************/
4254
bb8c093b 4255static void iwl3945_bg_init_alive_start(struct work_struct *data)
b481de9c 4256{
4a8a4322
AK
4257 struct iwl_priv *priv =
4258 container_of(data, struct iwl_priv, init_alive_start.work);
b481de9c
ZY
4259
4260 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4261 return;
4262
4263 mutex_lock(&priv->mutex);
bb8c093b 4264 iwl3945_init_alive_start(priv);
b481de9c
ZY
4265 mutex_unlock(&priv->mutex);
4266}
4267
bb8c093b 4268static void iwl3945_bg_alive_start(struct work_struct *data)
b481de9c 4269{
4a8a4322
AK
4270 struct iwl_priv *priv =
4271 container_of(data, struct iwl_priv, alive_start.work);
b481de9c
ZY
4272
4273 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4274 return;
4275
4276 mutex_lock(&priv->mutex);
bb8c093b 4277 iwl3945_alive_start(priv);
b481de9c
ZY
4278 mutex_unlock(&priv->mutex);
4279}
4280
2663516d
HS
4281static void iwl3945_rfkill_poll(struct work_struct *data)
4282{
4283 struct iwl_priv *priv =
4284 container_of(data, struct iwl_priv, rfkill_poll.work);
4285 unsigned long status = priv->status;
4286
4287 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4288 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4289 else
4290 set_bit(STATUS_RF_KILL_HW, &priv->status);
4291
4292 if (test_bit(STATUS_RF_KILL_HW, &status) != test_bit(STATUS_RF_KILL_HW, &priv->status))
4293 queue_work(priv->workqueue, &priv->rf_kill);
4294
4295 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4296 round_jiffies_relative(2 * HZ));
4297
4298}
4299
b481de9c 4300#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
bb8c093b 4301static void iwl3945_bg_request_scan(struct work_struct *data)
b481de9c 4302{
4a8a4322
AK
4303 struct iwl_priv *priv =
4304 container_of(data, struct iwl_priv, request_scan);
c2d79b48 4305 struct iwl_host_cmd cmd = {
b481de9c 4306 .id = REPLY_SCAN_CMD,
bb8c093b 4307 .len = sizeof(struct iwl3945_scan_cmd),
b481de9c
ZY
4308 .meta.flags = CMD_SIZE_HUGE,
4309 };
4310 int rc = 0;
bb8c093b 4311 struct iwl3945_scan_cmd *scan;
b481de9c 4312 struct ieee80211_conf *conf = NULL;
f9340520 4313 u8 n_probes = 2;
8318d78a 4314 enum ieee80211_band band;
9387b7ca 4315 DECLARE_SSID_BUF(ssid);
b481de9c
ZY
4316
4317 conf = ieee80211_get_hw_conf(priv->hw);
4318
4319 mutex_lock(&priv->mutex);
4320
775a6e27 4321 if (!iwl_is_ready(priv)) {
39aadf8c 4322 IWL_WARN(priv, "request scan called when driver not ready.\n");
b481de9c
ZY
4323 goto done;
4324 }
4325
a96a27f9 4326 /* Make sure the scan wasn't canceled before this queued work
b481de9c
ZY
4327 * was given the chance to run... */
4328 if (!test_bit(STATUS_SCANNING, &priv->status))
4329 goto done;
4330
4331 /* This should never be called or scheduled if there is currently
4332 * a scan active in the hardware. */
4333 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
4334 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
4335 "Ignoring second request.\n");
4336 rc = -EIO;
4337 goto done;
4338 }
4339
4340 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4341 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
4342 goto done;
4343 }
4344
4345 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
4346 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
4347 goto done;
4348 }
4349
775a6e27 4350 if (iwl_is_rfkill(priv)) {
b481de9c
ZY
4351 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
4352 goto done;
4353 }
4354
4355 if (!test_bit(STATUS_READY, &priv->status)) {
4356 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
4357 goto done;
4358 }
4359
4360 if (!priv->scan_bands) {
4361 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
4362 goto done;
4363 }
4364
805cee5b
WT
4365 if (!priv->scan) {
4366 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
b481de9c 4367 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
805cee5b 4368 if (!priv->scan) {
b481de9c
ZY
4369 rc = -ENOMEM;
4370 goto done;
4371 }
4372 }
805cee5b 4373 scan = priv->scan;
bb8c093b 4374 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
b481de9c
ZY
4375
4376 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
4377 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
4378
bb8c093b 4379 if (iwl3945_is_associated(priv)) {
b481de9c
ZY
4380 u16 interval = 0;
4381 u32 extra;
4382 u32 suspend_time = 100;
4383 u32 scan_suspend_time = 100;
4384 unsigned long flags;
4385
4386 IWL_DEBUG_INFO("Scanning while associated...\n");
4387
4388 spin_lock_irqsave(&priv->lock, flags);
4389 interval = priv->beacon_int;
4390 spin_unlock_irqrestore(&priv->lock, flags);
4391
4392 scan->suspend_time = 0;
15e869d8 4393 scan->max_out_time = cpu_to_le32(200 * 1024);
b481de9c
ZY
4394 if (!interval)
4395 interval = suspend_time;
4396 /*
4397 * suspend time format:
4398 * 0-19: beacon interval in usec (time before exec.)
4399 * 20-23: 0
4400 * 24-31: number of beacons (suspend between channels)
4401 */
4402
4403 extra = (suspend_time / interval) << 24;
4404 scan_suspend_time = 0xFF0FFFFF &
4405 (extra | ((suspend_time % interval) * 1024));
4406
4407 scan->suspend_time = cpu_to_le32(scan_suspend_time);
4408 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
4409 scan_suspend_time, interval);
4410 }
4411
4412 /* We should add the ability for user to lock to PASSIVE ONLY */
4413 if (priv->one_direct_scan) {
4414 IWL_DEBUG_SCAN
4415 ("Kicking off one direct scan for '%s'\n",
9387b7ca
JL
4416 print_ssid(ssid, priv->direct_ssid,
4417 priv->direct_ssid_len));
b481de9c
ZY
4418 scan->direct_scan[0].id = WLAN_EID_SSID;
4419 scan->direct_scan[0].len = priv->direct_ssid_len;
4420 memcpy(scan->direct_scan[0].ssid,
4421 priv->direct_ssid, priv->direct_ssid_len);
f9340520 4422 n_probes++;
f9340520 4423 } else
786b4557 4424 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
b481de9c
ZY
4425
4426 /* We don't build a direct scan probe request; the uCode will do
4427 * that based on the direct_mask added to each channel entry */
b481de9c 4428 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
3832ec9d 4429 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
b481de9c
ZY
4430 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
4431
4432 /* flags + rate selection */
4433
66b5004d 4434 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
b481de9c
ZY
4435 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
4436 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
4437 scan->good_CRC_th = 0;
8318d78a 4438 band = IEEE80211_BAND_2GHZ;
66b5004d 4439 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
b481de9c
ZY
4440 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
4441 scan->good_CRC_th = IWL_GOOD_CRC_TH;
8318d78a 4442 band = IEEE80211_BAND_5GHZ;
66b5004d 4443 } else {
39aadf8c 4444 IWL_WARN(priv, "Invalid scan band count\n");
b481de9c
ZY
4445 goto done;
4446 }
4447
77fecfb8
SO
4448 scan->tx_cmd.len = cpu_to_le16(
4449 iwl_fill_probe_req(priv, band,
4450 (struct ieee80211_mgmt *)scan->data,
4451 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
4452
b481de9c
ZY
4453 /* select Rx antennas */
4454 scan->flags |= iwl3945_get_antenna_flags(priv);
4455
05c914fe 4456 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
b481de9c
ZY
4457 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
4458
f9340520
AK
4459 scan->channel_count =
4460 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
4461 n_probes,
4462 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
b481de9c 4463
14b54336
RC
4464 if (scan->channel_count == 0) {
4465 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
4466 goto done;
4467 }
4468
b481de9c 4469 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
bb8c093b 4470 scan->channel_count * sizeof(struct iwl3945_scan_channel);
b481de9c
ZY
4471 cmd.data = scan;
4472 scan->len = cpu_to_le16(cmd.len);
4473
4474 set_bit(STATUS_SCAN_HW, &priv->status);
518099a8 4475 rc = iwl_send_cmd_sync(priv, &cmd);
b481de9c
ZY
4476 if (rc)
4477 goto done;
4478
4479 queue_delayed_work(priv->workqueue, &priv->scan_check,
4480 IWL_SCAN_CHECK_WATCHDOG);
4481
4482 mutex_unlock(&priv->mutex);
4483 return;
4484
4485 done:
2420ebc1
MA
4486 /* can not perform scan make sure we clear scanning
4487 * bits from status so next scan request can be performed.
4488 * if we dont clear scanning status bit here all next scan
4489 * will fail
4490 */
4491 clear_bit(STATUS_SCAN_HW, &priv->status);
4492 clear_bit(STATUS_SCANNING, &priv->status);
4493
01ebd063 4494 /* inform mac80211 scan aborted */
b481de9c
ZY
4495 queue_work(priv->workqueue, &priv->scan_completed);
4496 mutex_unlock(&priv->mutex);
4497}
4498
bb8c093b 4499static void iwl3945_bg_up(struct work_struct *data)
b481de9c 4500{
4a8a4322 4501 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
b481de9c
ZY
4502
4503 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4504 return;
4505
4506 mutex_lock(&priv->mutex);
bb8c093b 4507 __iwl3945_up(priv);
b481de9c 4508 mutex_unlock(&priv->mutex);
c0af96a6 4509 iwl_rfkill_set_hw_state(priv);
b481de9c
ZY
4510}
4511
bb8c093b 4512static void iwl3945_bg_restart(struct work_struct *data)
b481de9c 4513{
4a8a4322 4514 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
b481de9c
ZY
4515
4516 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4517 return;
4518
bb8c093b 4519 iwl3945_down(priv);
b481de9c
ZY
4520 queue_work(priv->workqueue, &priv->up);
4521}
4522
bb8c093b 4523static void iwl3945_bg_rx_replenish(struct work_struct *data)
b481de9c 4524{
4a8a4322
AK
4525 struct iwl_priv *priv =
4526 container_of(data, struct iwl_priv, rx_replenish);
b481de9c
ZY
4527
4528 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4529 return;
4530
4531 mutex_lock(&priv->mutex);
bb8c093b 4532 iwl3945_rx_replenish(priv);
b481de9c
ZY
4533 mutex_unlock(&priv->mutex);
4534}
4535
7878a5a4
MA
4536#define IWL_DELAY_NEXT_SCAN (HZ*2)
4537
4a8a4322 4538static void iwl3945_post_associate(struct iwl_priv *priv)
b481de9c 4539{
b481de9c
ZY
4540 int rc = 0;
4541 struct ieee80211_conf *conf = NULL;
4542
05c914fe 4543 if (priv->iw_mode == NL80211_IFTYPE_AP) {
15b1687c 4544 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
b481de9c
ZY
4545 return;
4546 }
4547
4548
e174961c 4549 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
f2c7e521 4550 priv->assoc_id, priv->active39_rxon.bssid_addr);
b481de9c
ZY
4551
4552 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4553 return;
4554
322a9811 4555 if (!priv->vif || !priv->is_open)
6ef89d0a 4556 return;
322a9811 4557
af0053d6 4558 iwl_scan_cancel_timeout(priv, 200);
15e869d8 4559
b481de9c
ZY
4560 conf = ieee80211_get_hw_conf(priv->hw);
4561
f2c7e521 4562 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 4563 iwl3945_commit_rxon(priv);
b481de9c 4564
28afaf91 4565 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
bb8c093b 4566 iwl3945_setup_rxon_timing(priv);
518099a8 4567 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
b481de9c
ZY
4568 sizeof(priv->rxon_timing), &priv->rxon_timing);
4569 if (rc)
39aadf8c 4570 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
b481de9c
ZY
4571 "Attempting to continue.\n");
4572
f2c7e521 4573 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
b481de9c 4574
f2c7e521 4575 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
b481de9c
ZY
4576
4577 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
4578 priv->assoc_id, priv->beacon_int);
4579
4580 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
f2c7e521 4581 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
b481de9c 4582 else
f2c7e521 4583 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
b481de9c 4584
f2c7e521 4585 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
b481de9c 4586 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
f2c7e521 4587 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
b481de9c 4588 else
f2c7e521 4589 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
b481de9c 4590
05c914fe 4591 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
f2c7e521 4592 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
b481de9c
ZY
4593
4594 }
4595
bb8c093b 4596 iwl3945_commit_rxon(priv);
b481de9c
ZY
4597
4598 switch (priv->iw_mode) {
05c914fe 4599 case NL80211_IFTYPE_STATION:
bb8c093b 4600 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
b481de9c
ZY
4601 break;
4602
05c914fe 4603 case NL80211_IFTYPE_ADHOC:
b481de9c 4604
ce546fd2 4605 priv->assoc_id = 1;
bb8c093b 4606 iwl3945_add_station(priv, priv->bssid, 0, 0);
b481de9c 4607 iwl3945_sync_sta(priv, IWL_STA_ID,
8318d78a 4608 (priv->band == IEEE80211_BAND_5GHZ) ?
b481de9c
ZY
4609 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
4610 CMD_ASYNC);
bb8c093b
CH
4611 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
4612 iwl3945_send_beacon_cmd(priv);
b481de9c
ZY
4613
4614 break;
4615
4616 default:
15b1687c 4617 IWL_ERR(priv, "%s Should not be called in %d mode\n",
3ac7f146 4618 __func__, priv->iw_mode);
b481de9c
ZY
4619 break;
4620 }
4621
bb8c093b 4622 iwl3945_activate_qos(priv, 0);
292ae174 4623
7878a5a4
MA
4624 /* we have just associated, don't start scan too early */
4625 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
cd56d331
AK
4626}
4627
e8975581 4628static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
76bb77e0 4629
b481de9c
ZY
4630/*****************************************************************************
4631 *
4632 * mac80211 entry point functions
4633 *
4634 *****************************************************************************/
4635
5a66926a
ZY
4636#define UCODE_READY_TIMEOUT (2 * HZ)
4637
bb8c093b 4638static int iwl3945_mac_start(struct ieee80211_hw *hw)
b481de9c 4639{
4a8a4322 4640 struct iwl_priv *priv = hw->priv;
5a66926a 4641 int ret;
b481de9c
ZY
4642
4643 IWL_DEBUG_MAC80211("enter\n");
4644
4645 /* we should be verifying the device is ready to be opened */
4646 mutex_lock(&priv->mutex);
4647
f2c7e521 4648 memset(&priv->staging39_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
5a66926a
ZY
4649 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
4650 * ucode filename and max sizes are card-specific. */
4651
4652 if (!priv->ucode_code.len) {
4653 ret = iwl3945_read_ucode(priv);
4654 if (ret) {
15b1687c 4655 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
5a66926a
ZY
4656 mutex_unlock(&priv->mutex);
4657 goto out_release_irq;
4658 }
4659 }
b481de9c 4660
e655b9f0 4661 ret = __iwl3945_up(priv);
b481de9c
ZY
4662
4663 mutex_unlock(&priv->mutex);
5a66926a 4664
c0af96a6 4665 iwl_rfkill_set_hw_state(priv);
80fcc9e2 4666
e655b9f0
ZY
4667 if (ret)
4668 goto out_release_irq;
4669
4670 IWL_DEBUG_INFO("Start UP work.\n");
4671
4672 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
4673 return 0;
4674
5a66926a
ZY
4675 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
4676 * mac80211 will not be run successfully. */
4677 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
4678 test_bit(STATUS_READY, &priv->status),
4679 UCODE_READY_TIMEOUT);
4680 if (!ret) {
4681 if (!test_bit(STATUS_READY, &priv->status)) {
15b1687c
WT
4682 IWL_ERR(priv,
4683 "Wait for START_ALIVE timeout after %dms.\n",
4684 jiffies_to_msecs(UCODE_READY_TIMEOUT));
5a66926a
ZY
4685 ret = -ETIMEDOUT;
4686 goto out_release_irq;
4687 }
4688 }
4689
2663516d
HS
4690 /* ucode is running and will send rfkill notifications,
4691 * no need to poll the killswitch state anymore */
4692 cancel_delayed_work(&priv->rfkill_poll);
4693
e655b9f0 4694 priv->is_open = 1;
b481de9c
ZY
4695 IWL_DEBUG_MAC80211("leave\n");
4696 return 0;
5a66926a
ZY
4697
4698out_release_irq:
e655b9f0
ZY
4699 priv->is_open = 0;
4700 IWL_DEBUG_MAC80211("leave - failed\n");
5a66926a 4701 return ret;
b481de9c
ZY
4702}
4703
bb8c093b 4704static void iwl3945_mac_stop(struct ieee80211_hw *hw)
b481de9c 4705{
4a8a4322 4706 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
4707
4708 IWL_DEBUG_MAC80211("enter\n");
6ef89d0a 4709
e655b9f0
ZY
4710 if (!priv->is_open) {
4711 IWL_DEBUG_MAC80211("leave - skip\n");
4712 return;
4713 }
4714
b481de9c 4715 priv->is_open = 0;
5a66926a 4716
775a6e27 4717 if (iwl_is_ready_rf(priv)) {
e655b9f0
ZY
4718 /* stop mac, cancel any scan request and clear
4719 * RXON_FILTER_ASSOC_MSK BIT
4720 */
5a66926a 4721 mutex_lock(&priv->mutex);
af0053d6 4722 iwl_scan_cancel_timeout(priv, 100);
fde3571f 4723 mutex_unlock(&priv->mutex);
fde3571f
MA
4724 }
4725
5a66926a
ZY
4726 iwl3945_down(priv);
4727
4728 flush_workqueue(priv->workqueue);
2663516d
HS
4729
4730 /* start polling the killswitch state again */
4731 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
4732 round_jiffies_relative(2 * HZ));
6ef89d0a 4733
b481de9c 4734 IWL_DEBUG_MAC80211("leave\n");
b481de9c
ZY
4735}
4736
e039fa4a 4737static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
b481de9c 4738{
4a8a4322 4739 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
4740
4741 IWL_DEBUG_MAC80211("enter\n");
4742
b481de9c 4743 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
e039fa4a 4744 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
b481de9c 4745
e039fa4a 4746 if (iwl3945_tx_skb(priv, skb))
b481de9c
ZY
4747 dev_kfree_skb_any(skb);
4748
4749 IWL_DEBUG_MAC80211("leave\n");
637f8837 4750 return NETDEV_TX_OK;
b481de9c
ZY
4751}
4752
bb8c093b 4753static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
b481de9c
ZY
4754 struct ieee80211_if_init_conf *conf)
4755{
4a8a4322 4756 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
4757 unsigned long flags;
4758
32bfd35d 4759 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
b481de9c 4760
32bfd35d
JB
4761 if (priv->vif) {
4762 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
864792e3 4763 return -EOPNOTSUPP;
b481de9c
ZY
4764 }
4765
4766 spin_lock_irqsave(&priv->lock, flags);
32bfd35d 4767 priv->vif = conf->vif;
60294de3 4768 priv->iw_mode = conf->type;
b481de9c
ZY
4769
4770 spin_unlock_irqrestore(&priv->lock, flags);
4771
4772 mutex_lock(&priv->mutex);
864792e3
TW
4773
4774 if (conf->mac_addr) {
e174961c 4775 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
864792e3
TW
4776 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
4777 }
4778
775a6e27 4779 if (iwl_is_ready(priv))
5a66926a 4780 iwl3945_set_mode(priv, conf->type);
b481de9c 4781
b481de9c
ZY
4782 mutex_unlock(&priv->mutex);
4783
5a66926a 4784 IWL_DEBUG_MAC80211("leave\n");
b481de9c
ZY
4785 return 0;
4786}
4787
4788/**
bb8c093b 4789 * iwl3945_mac_config - mac80211 config callback
b481de9c
ZY
4790 *
4791 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
4792 * be set inappropriately and the driver currently sets the hardware up to
4793 * use it whenever needed.
4794 */
e8975581 4795static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
b481de9c 4796{
4a8a4322 4797 struct iwl_priv *priv = hw->priv;
d20b3c65 4798 const struct iwl_channel_info *ch_info;
e8975581 4799 struct ieee80211_conf *conf = &hw->conf;
b481de9c 4800 unsigned long flags;
76bb77e0 4801 int ret = 0;
b481de9c
ZY
4802
4803 mutex_lock(&priv->mutex);
8318d78a 4804 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
b481de9c 4805
775a6e27 4806 if (!iwl_is_ready(priv)) {
b481de9c 4807 IWL_DEBUG_MAC80211("leave - not ready\n");
76bb77e0
ZY
4808 ret = -EIO;
4809 goto out;
b481de9c
ZY
4810 }
4811
df878d8f 4812 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
b481de9c 4813 test_bit(STATUS_SCANNING, &priv->status))) {
a0646470
ZY
4814 IWL_DEBUG_MAC80211("leave - scanning\n");
4815 set_bit(STATUS_CONF_PENDING, &priv->status);
b481de9c 4816 mutex_unlock(&priv->mutex);
a0646470 4817 return 0;
b481de9c
ZY
4818 }
4819
4820 spin_lock_irqsave(&priv->lock, flags);
4821
e6148917
SO
4822 ch_info = iwl_get_channel_info(priv, conf->channel->band,
4823 conf->channel->hw_value);
b481de9c 4824 if (!is_channel_valid(ch_info)) {
66b5004d 4825 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
8318d78a 4826 conf->channel->hw_value, conf->channel->band);
b481de9c
ZY
4827 IWL_DEBUG_MAC80211("leave - invalid channel\n");
4828 spin_unlock_irqrestore(&priv->lock, flags);
76bb77e0
ZY
4829 ret = -EINVAL;
4830 goto out;
b481de9c
ZY
4831 }
4832
8318d78a 4833 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
b481de9c 4834
8318d78a 4835 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
b481de9c
ZY
4836
4837 /* The list of supported rates and rate mask can be different
4838 * for each phymode; since the phymode may have changed, reset
4839 * the rate mask to what mac80211 lists */
bb8c093b 4840 iwl3945_set_rate(priv);
b481de9c
ZY
4841
4842 spin_unlock_irqrestore(&priv->lock, flags);
4843
4844#ifdef IEEE80211_CONF_CHANNEL_SWITCH
4845 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
bb8c093b 4846 iwl3945_hw_channel_switch(priv, conf->channel);
76bb77e0 4847 goto out;
b481de9c
ZY
4848 }
4849#endif
4850
bb8c093b 4851 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
b481de9c
ZY
4852
4853 if (!conf->radio_enabled) {
4854 IWL_DEBUG_MAC80211("leave - radio disabled\n");
76bb77e0 4855 goto out;
b481de9c
ZY
4856 }
4857
775a6e27 4858 if (iwl_is_rfkill(priv)) {
b481de9c 4859 IWL_DEBUG_MAC80211("leave - RF kill\n");
76bb77e0
ZY
4860 ret = -EIO;
4861 goto out;
b481de9c
ZY
4862 }
4863
bb8c093b 4864 iwl3945_set_rate(priv);
b481de9c 4865
f2c7e521
AK
4866 if (memcmp(&priv->active39_rxon,
4867 &priv->staging39_rxon, sizeof(priv->staging39_rxon)))
bb8c093b 4868 iwl3945_commit_rxon(priv);
b481de9c
ZY
4869 else
4870 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
4871
4872 IWL_DEBUG_MAC80211("leave\n");
4873
76bb77e0 4874out:
a0646470 4875 clear_bit(STATUS_CONF_PENDING, &priv->status);
b481de9c 4876 mutex_unlock(&priv->mutex);
76bb77e0 4877 return ret;
b481de9c
ZY
4878}
4879
4a8a4322 4880static void iwl3945_config_ap(struct iwl_priv *priv)
b481de9c
ZY
4881{
4882 int rc = 0;
4883
d986bcd1 4884 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
b481de9c
ZY
4885 return;
4886
4887 /* The following should be done only at AP bring up */
5d1e2325 4888 if (!(iwl3945_is_associated(priv))) {
b481de9c
ZY
4889
4890 /* RXON - unassoc (to set timing command) */
f2c7e521 4891 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 4892 iwl3945_commit_rxon(priv);
b481de9c
ZY
4893
4894 /* RXON Timing */
28afaf91 4895 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
bb8c093b 4896 iwl3945_setup_rxon_timing(priv);
518099a8
SO
4897 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
4898 sizeof(priv->rxon_timing),
4899 &priv->rxon_timing);
b481de9c 4900 if (rc)
39aadf8c 4901 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
b481de9c
ZY
4902 "Attempting to continue.\n");
4903
4904 /* FIXME: what should be the assoc_id for AP? */
f2c7e521 4905 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
b481de9c 4906 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
f2c7e521 4907 priv->staging39_rxon.flags |=
b481de9c
ZY
4908 RXON_FLG_SHORT_PREAMBLE_MSK;
4909 else
f2c7e521 4910 priv->staging39_rxon.flags &=
b481de9c
ZY
4911 ~RXON_FLG_SHORT_PREAMBLE_MSK;
4912
f2c7e521 4913 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
b481de9c
ZY
4914 if (priv->assoc_capability &
4915 WLAN_CAPABILITY_SHORT_SLOT_TIME)
f2c7e521 4916 priv->staging39_rxon.flags |=
b481de9c
ZY
4917 RXON_FLG_SHORT_SLOT_MSK;
4918 else
f2c7e521 4919 priv->staging39_rxon.flags &=
b481de9c
ZY
4920 ~RXON_FLG_SHORT_SLOT_MSK;
4921
05c914fe 4922 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
f2c7e521 4923 priv->staging39_rxon.flags &=
b481de9c
ZY
4924 ~RXON_FLG_SHORT_SLOT_MSK;
4925 }
4926 /* restore RXON assoc */
f2c7e521 4927 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
bb8c093b 4928 iwl3945_commit_rxon(priv);
b5323d36 4929 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
556f8db7 4930 }
bb8c093b 4931 iwl3945_send_beacon_cmd(priv);
b481de9c
ZY
4932
4933 /* FIXME - we need to add code here to detect a totally new
4934 * configuration, reset the AP, unassoc, rxon timing, assoc,
4935 * clear sta table, add BCAST sta... */
4936}
4937
32bfd35d
JB
4938static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
4939 struct ieee80211_vif *vif,
4a8a4322 4940 struct ieee80211_if_conf *conf)
b481de9c 4941{
4a8a4322 4942 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
4943 int rc;
4944
4945 if (conf == NULL)
4946 return -EIO;
4947
b716bb91
EG
4948 if (priv->vif != vif) {
4949 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
b716bb91
EG
4950 return 0;
4951 }
4952
9d139c81 4953 /* handle this temporarily here */
05c914fe 4954 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
9d139c81
JB
4955 conf->changed & IEEE80211_IFCC_BEACON) {
4956 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
4957 if (!beacon)
4958 return -ENOMEM;
9bdf5eca 4959 mutex_lock(&priv->mutex);
9d139c81 4960 rc = iwl3945_mac_beacon_update(hw, beacon);
9bdf5eca 4961 mutex_unlock(&priv->mutex);
9d139c81
JB
4962 if (rc)
4963 return rc;
4964 }
4965
775a6e27 4966 if (!iwl_is_alive(priv))
5a66926a
ZY
4967 return -EAGAIN;
4968
b481de9c
ZY
4969 mutex_lock(&priv->mutex);
4970
b481de9c 4971 if (conf->bssid)
e174961c 4972 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
b481de9c 4973
4150c572
JB
4974/*
4975 * very dubious code was here; the probe filtering flag is never set:
4976 *
b481de9c
ZY
4977 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
4978 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
4150c572 4979 */
b481de9c 4980
05c914fe 4981 if (priv->iw_mode == NL80211_IFTYPE_AP) {
b481de9c
ZY
4982 if (!conf->bssid) {
4983 conf->bssid = priv->mac_addr;
4984 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
e174961c
JB
4985 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
4986 conf->bssid);
b481de9c
ZY
4987 }
4988 if (priv->ibss_beacon)
4989 dev_kfree_skb(priv->ibss_beacon);
4990
9d139c81 4991 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
b481de9c
ZY
4992 }
4993
775a6e27 4994 if (iwl_is_rfkill(priv))
fde3571f
MA
4995 goto done;
4996
b481de9c
ZY
4997 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
4998 !is_multicast_ether_addr(conf->bssid)) {
4999 /* If there is currently a HW scan going on in the background
5000 * then we need to cancel it else the RXON below will fail. */
af0053d6 5001 if (iwl_scan_cancel_timeout(priv, 100)) {
39aadf8c 5002 IWL_WARN(priv, "Aborted scan still in progress "
b481de9c
ZY
5003 "after 100ms\n");
5004 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
5005 mutex_unlock(&priv->mutex);
5006 return -EAGAIN;
5007 }
f2c7e521 5008 memcpy(priv->staging39_rxon.bssid_addr, conf->bssid, ETH_ALEN);
b481de9c
ZY
5009
5010 /* TODO: Audit driver for usage of these members and see
5011 * if mac80211 deprecates them (priv->bssid looks like it
5012 * shouldn't be there, but I haven't scanned the IBSS code
5013 * to verify) - jpk */
5014 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
5015
05c914fe 5016 if (priv->iw_mode == NL80211_IFTYPE_AP)
bb8c093b 5017 iwl3945_config_ap(priv);
b481de9c 5018 else {
bb8c093b 5019 rc = iwl3945_commit_rxon(priv);
05c914fe 5020 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
bb8c093b 5021 iwl3945_add_station(priv,
f2c7e521 5022 priv->active39_rxon.bssid_addr, 1, 0);
b481de9c
ZY
5023 }
5024
5025 } else {
af0053d6 5026 iwl_scan_cancel_timeout(priv, 100);
f2c7e521 5027 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 5028 iwl3945_commit_rxon(priv);
b481de9c
ZY
5029 }
5030
fde3571f 5031 done:
b481de9c
ZY
5032 IWL_DEBUG_MAC80211("leave\n");
5033 mutex_unlock(&priv->mutex);
5034
5035 return 0;
5036}
5037
bb8c093b 5038static void iwl3945_configure_filter(struct ieee80211_hw *hw,
4150c572
JB
5039 unsigned int changed_flags,
5040 unsigned int *total_flags,
5041 int mc_count, struct dev_addr_list *mc_list)
5042{
4a8a4322 5043 struct iwl_priv *priv = hw->priv;
f2c7e521 5044 __le32 *filter_flags = &priv->staging39_rxon.filter_flags;
25b3f57c 5045
352bc8de
ZY
5046 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
5047 changed_flags, *total_flags);
5048
5049 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
5050 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
5051 *filter_flags |= RXON_FILTER_PROMISC_MSK;
5052 else
5053 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
5054 }
5055 if (changed_flags & FIF_ALLMULTI) {
5056 if (*total_flags & FIF_ALLMULTI)
5057 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
5058 else
5059 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
5060 }
5061 if (changed_flags & FIF_CONTROL) {
5062 if (*total_flags & FIF_CONTROL)
5063 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
5064 else
5065 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
5ec03976 5066 }
352bc8de
ZY
5067 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
5068 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
5069 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
5070 else
5071 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
5072 }
5073
5074 /* We avoid iwl_commit_rxon here to commit the new filter flags
5075 * since mac80211 will call ieee80211_hw_config immediately.
5076 * (mc_list is not supported at this time). Otherwise, we need to
5077 * queue a background iwl_commit_rxon work.
5078 */
5079
5080 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
25b3f57c 5081 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
4150c572
JB
5082}
5083
bb8c093b 5084static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
b481de9c
ZY
5085 struct ieee80211_if_init_conf *conf)
5086{
4a8a4322 5087 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
5088
5089 IWL_DEBUG_MAC80211("enter\n");
5090
5091 mutex_lock(&priv->mutex);
6ef89d0a 5092
775a6e27 5093 if (iwl_is_ready_rf(priv)) {
af0053d6 5094 iwl_scan_cancel_timeout(priv, 100);
f2c7e521 5095 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
fde3571f
MA
5096 iwl3945_commit_rxon(priv);
5097 }
32bfd35d
JB
5098 if (priv->vif == conf->vif) {
5099 priv->vif = NULL;
b481de9c 5100 memset(priv->bssid, 0, ETH_ALEN);
b481de9c
ZY
5101 }
5102 mutex_unlock(&priv->mutex);
5103
5104 IWL_DEBUG_MAC80211("leave\n");
b481de9c
ZY
5105}
5106
cd56d331
AK
5107#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
5108
5109static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
5110 struct ieee80211_vif *vif,
5111 struct ieee80211_bss_conf *bss_conf,
5112 u32 changes)
5113{
4a8a4322 5114 struct iwl_priv *priv = hw->priv;
cd56d331
AK
5115
5116 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
5117
5118 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
5119 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
5120 bss_conf->use_short_preamble);
5121 if (bss_conf->use_short_preamble)
f2c7e521 5122 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
cd56d331 5123 else
f2c7e521 5124 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
cd56d331
AK
5125 }
5126
5127 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
5128 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
5129 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
f2c7e521 5130 priv->staging39_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
cd56d331 5131 else
f2c7e521 5132 priv->staging39_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
cd56d331
AK
5133 }
5134
5135 if (changes & BSS_CHANGED_ASSOC) {
5136 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
5137 /* This should never happen as this function should
5138 * never be called from interrupt context. */
5139 if (WARN_ON_ONCE(in_interrupt()))
5140 return;
5141 if (bss_conf->assoc) {
5142 priv->assoc_id = bss_conf->aid;
5143 priv->beacon_int = bss_conf->beacon_int;
28afaf91 5144 priv->timestamp = bss_conf->timestamp;
cd56d331 5145 priv->assoc_capability = bss_conf->assoc_capability;
3dae0c42 5146 priv->power_data.dtim_period = bss_conf->dtim_period;
cd56d331
AK
5147 priv->next_scan_jiffies = jiffies +
5148 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
5149 mutex_lock(&priv->mutex);
5150 iwl3945_post_associate(priv);
5151 mutex_unlock(&priv->mutex);
5152 } else {
5153 priv->assoc_id = 0;
5154 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
5155 }
5156 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
5157 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
5158 iwl3945_send_rxon_assoc(priv);
5159 }
5160
5161}
5162
bb8c093b 5163static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
b481de9c
ZY
5164{
5165 int rc = 0;
5166 unsigned long flags;
4a8a4322 5167 struct iwl_priv *priv = hw->priv;
9387b7ca 5168 DECLARE_SSID_BUF(ssid_buf);
b481de9c
ZY
5169
5170 IWL_DEBUG_MAC80211("enter\n");
5171
15e869d8 5172 mutex_lock(&priv->mutex);
b481de9c
ZY
5173 spin_lock_irqsave(&priv->lock, flags);
5174
775a6e27 5175 if (!iwl_is_ready_rf(priv)) {
b481de9c
ZY
5176 rc = -EIO;
5177 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
5178 goto out_unlock;
5179 }
5180
7878a5a4
MA
5181 /* we don't schedule scan within next_scan_jiffies period */
5182 if (priv->next_scan_jiffies &&
5183 time_after(priv->next_scan_jiffies, jiffies)) {
5184 rc = -EAGAIN;
5185 goto out_unlock;
5186 }
15dbf1b7
BM
5187 /* if we just finished scan ask for delay for a broadcast scan */
5188 if ((len == 0) && priv->last_scan_jiffies &&
5189 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
5190 jiffies)) {
b481de9c
ZY
5191 rc = -EAGAIN;
5192 goto out_unlock;
5193 }
5194 if (len) {
7878a5a4 5195 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
9387b7ca 5196 print_ssid(ssid_buf, ssid, len), (int)len);
b481de9c
ZY
5197
5198 priv->one_direct_scan = 1;
5199 priv->direct_ssid_len = (u8)
5200 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
5201 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
6ef89d0a
MA
5202 } else
5203 priv->one_direct_scan = 0;
b481de9c 5204
bb8c093b 5205 rc = iwl3945_scan_initiate(priv);
b481de9c
ZY
5206
5207 IWL_DEBUG_MAC80211("leave\n");
5208
5209out_unlock:
5210 spin_unlock_irqrestore(&priv->lock, flags);
15e869d8 5211 mutex_unlock(&priv->mutex);
b481de9c
ZY
5212
5213 return rc;
5214}
5215
bb8c093b 5216static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
dc822b5d
JB
5217 struct ieee80211_vif *vif,
5218 struct ieee80211_sta *sta,
5219 struct ieee80211_key_conf *key)
b481de9c 5220{
4a8a4322 5221 struct iwl_priv *priv = hw->priv;
dc822b5d 5222 const u8 *addr;
42986796 5223 int ret;
b481de9c
ZY
5224 u8 sta_id;
5225
5226 IWL_DEBUG_MAC80211("enter\n");
5227
df878d8f 5228 if (iwl3945_mod_params.sw_crypto) {
b481de9c
ZY
5229 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
5230 return -EOPNOTSUPP;
5231 }
5232
42986796 5233 addr = sta ? sta->addr : iwl_bcast_addr;
bb8c093b 5234 sta_id = iwl3945_hw_find_station(priv, addr);
b481de9c 5235 if (sta_id == IWL_INVALID_STATION) {
e174961c
JB
5236 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
5237 addr);
b481de9c
ZY
5238 return -EINVAL;
5239 }
5240
5241 mutex_lock(&priv->mutex);
5242
af0053d6 5243 iwl_scan_cancel_timeout(priv, 100);
15e869d8 5244
b481de9c
ZY
5245 switch (cmd) {
5246 case SET_KEY:
42986796
WT
5247 ret = iwl3945_update_sta_key_info(priv, key, sta_id);
5248 if (!ret) {
bb8c093b
CH
5249 iwl3945_set_rxon_hwcrypto(priv, 1);
5250 iwl3945_commit_rxon(priv);
b481de9c
ZY
5251 key->hw_key_idx = sta_id;
5252 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
5253 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
5254 }
5255 break;
5256 case DISABLE_KEY:
42986796
WT
5257 ret = iwl3945_clear_sta_key_info(priv, sta_id);
5258 if (!ret) {
bb8c093b
CH
5259 iwl3945_set_rxon_hwcrypto(priv, 0);
5260 iwl3945_commit_rxon(priv);
b481de9c
ZY
5261 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
5262 }
5263 break;
5264 default:
42986796 5265 ret = -EINVAL;
b481de9c
ZY
5266 }
5267
5268 IWL_DEBUG_MAC80211("leave\n");
5269 mutex_unlock(&priv->mutex);
5270
42986796 5271 return ret;
b481de9c
ZY
5272}
5273
e100bb64 5274static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
b481de9c
ZY
5275 const struct ieee80211_tx_queue_params *params)
5276{
4a8a4322 5277 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
5278 unsigned long flags;
5279 int q;
b481de9c
ZY
5280
5281 IWL_DEBUG_MAC80211("enter\n");
5282
775a6e27 5283 if (!iwl_is_ready_rf(priv)) {
b481de9c
ZY
5284 IWL_DEBUG_MAC80211("leave - RF not ready\n");
5285 return -EIO;
5286 }
5287
5288 if (queue >= AC_NUM) {
5289 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
5290 return 0;
5291 }
5292
b481de9c
ZY
5293 q = AC_NUM - 1 - queue;
5294
5295 spin_lock_irqsave(&priv->lock, flags);
5296
5297 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
5298 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
5299 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
5300 priv->qos_data.def_qos_parm.ac[q].edca_txop =
3330d7be 5301 cpu_to_le16((params->txop * 32));
b481de9c
ZY
5302
5303 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
5304 priv->qos_data.qos_active = 1;
5305
5306 spin_unlock_irqrestore(&priv->lock, flags);
5307
5308 mutex_lock(&priv->mutex);
05c914fe 5309 if (priv->iw_mode == NL80211_IFTYPE_AP)
bb8c093b
CH
5310 iwl3945_activate_qos(priv, 1);
5311 else if (priv->assoc_id && iwl3945_is_associated(priv))
5312 iwl3945_activate_qos(priv, 0);
b481de9c
ZY
5313
5314 mutex_unlock(&priv->mutex);
5315
b481de9c
ZY
5316 IWL_DEBUG_MAC80211("leave\n");
5317 return 0;
5318}
5319
bb8c093b 5320static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
b481de9c
ZY
5321 struct ieee80211_tx_queue_stats *stats)
5322{
4a8a4322 5323 struct iwl_priv *priv = hw->priv;
b481de9c 5324 int i, avail;
188cf6c7 5325 struct iwl_tx_queue *txq;
d20b3c65 5326 struct iwl_queue *q;
b481de9c
ZY
5327 unsigned long flags;
5328
5329 IWL_DEBUG_MAC80211("enter\n");
5330
775a6e27 5331 if (!iwl_is_ready_rf(priv)) {
b481de9c
ZY
5332 IWL_DEBUG_MAC80211("leave - RF not ready\n");
5333 return -EIO;
5334 }
5335
5336 spin_lock_irqsave(&priv->lock, flags);
5337
5338 for (i = 0; i < AC_NUM; i++) {
188cf6c7 5339 txq = &priv->txq[i];
b481de9c 5340 q = &txq->q;
d20b3c65 5341 avail = iwl_queue_space(q);
b481de9c 5342
57ffc589
JB
5343 stats[i].len = q->n_window - avail;
5344 stats[i].limit = q->n_window - q->high_mark;
5345 stats[i].count = q->n_window;
b481de9c
ZY
5346
5347 }
5348 spin_unlock_irqrestore(&priv->lock, flags);
5349
5350 IWL_DEBUG_MAC80211("leave\n");
5351
5352 return 0;
5353}
5354
bb8c093b 5355static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
b481de9c 5356{
4a8a4322 5357 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
5358 unsigned long flags;
5359
5360 mutex_lock(&priv->mutex);
5361 IWL_DEBUG_MAC80211("enter\n");
5362
775a6e27 5363 iwl_reset_qos(priv);
292ae174 5364
b481de9c
ZY
5365 spin_lock_irqsave(&priv->lock, flags);
5366 priv->assoc_id = 0;
5367 priv->assoc_capability = 0;
b481de9c
ZY
5368
5369 /* new association get rid of ibss beacon skb */
5370 if (priv->ibss_beacon)
5371 dev_kfree_skb(priv->ibss_beacon);
5372
5373 priv->ibss_beacon = NULL;
5374
5375 priv->beacon_int = priv->hw->conf.beacon_int;
28afaf91 5376 priv->timestamp = 0;
05c914fe 5377 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
b481de9c
ZY
5378 priv->beacon_int = 0;
5379
5380 spin_unlock_irqrestore(&priv->lock, flags);
5381
775a6e27 5382 if (!iwl_is_ready_rf(priv)) {
fde3571f
MA
5383 IWL_DEBUG_MAC80211("leave - not ready\n");
5384 mutex_unlock(&priv->mutex);
5385 return;
5386 }
5387
15e869d8
MA
5388 /* we are restarting association process
5389 * clear RXON_FILTER_ASSOC_MSK bit
5390 */
05c914fe 5391 if (priv->iw_mode != NL80211_IFTYPE_AP) {
af0053d6 5392 iwl_scan_cancel_timeout(priv, 100);
f2c7e521 5393 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 5394 iwl3945_commit_rxon(priv);
15e869d8
MA
5395 }
5396
b481de9c 5397 /* Per mac80211.h: This is only used in IBSS mode... */
05c914fe 5398 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
15e869d8 5399
b481de9c
ZY
5400 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
5401 mutex_unlock(&priv->mutex);
5402 return;
b481de9c
ZY
5403 }
5404
bb8c093b 5405 iwl3945_set_rate(priv);
b481de9c
ZY
5406
5407 mutex_unlock(&priv->mutex);
5408
5409 IWL_DEBUG_MAC80211("leave\n");
5410
5411}
5412
e039fa4a 5413static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
b481de9c 5414{
4a8a4322 5415 struct iwl_priv *priv = hw->priv;
b481de9c
ZY
5416 unsigned long flags;
5417
b481de9c
ZY
5418 IWL_DEBUG_MAC80211("enter\n");
5419
775a6e27 5420 if (!iwl_is_ready_rf(priv)) {
b481de9c 5421 IWL_DEBUG_MAC80211("leave - RF not ready\n");
b481de9c
ZY
5422 return -EIO;
5423 }
5424
05c914fe 5425 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
b481de9c 5426 IWL_DEBUG_MAC80211("leave - not IBSS\n");
b481de9c
ZY
5427 return -EIO;
5428 }
5429
5430 spin_lock_irqsave(&priv->lock, flags);
5431
5432 if (priv->ibss_beacon)
5433 dev_kfree_skb(priv->ibss_beacon);
5434
5435 priv->ibss_beacon = skb;
5436
5437 priv->assoc_id = 0;
5438
5439 IWL_DEBUG_MAC80211("leave\n");
5440 spin_unlock_irqrestore(&priv->lock, flags);
5441
775a6e27 5442 iwl_reset_qos(priv);
b481de9c 5443
dc4b1e7d 5444 iwl3945_post_associate(priv);
b481de9c 5445
b481de9c
ZY
5446
5447 return 0;
5448}
5449
5450/*****************************************************************************
5451 *
5452 * sysfs attributes
5453 *
5454 *****************************************************************************/
5455
d08853a3 5456#ifdef CONFIG_IWLWIFI_DEBUG
b481de9c
ZY
5457
5458/*
5459 * The following adds a new attribute to the sysfs representation
5460 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
5461 * used for controlling the debug level.
5462 *
5463 * See the level definitions in iwl for details.
5464 */
40b8ec0b
SO
5465static ssize_t show_debug_level(struct device *d,
5466 struct device_attribute *attr, char *buf)
b481de9c 5467{
4a8a4322 5468 struct iwl_priv *priv = d->driver_data;
40b8ec0b
SO
5469
5470 return sprintf(buf, "0x%08X\n", priv->debug_level);
b481de9c 5471}
40b8ec0b
SO
5472static ssize_t store_debug_level(struct device *d,
5473 struct device_attribute *attr,
b481de9c
ZY
5474 const char *buf, size_t count)
5475{
4a8a4322 5476 struct iwl_priv *priv = d->driver_data;
40b8ec0b
SO
5477 unsigned long val;
5478 int ret;
b481de9c 5479
40b8ec0b
SO
5480 ret = strict_strtoul(buf, 0, &val);
5481 if (ret)
978785a3 5482 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
b481de9c 5483 else
40b8ec0b 5484 priv->debug_level = val;
b481de9c
ZY
5485
5486 return strnlen(buf, count);
5487}
5488
40b8ec0b
SO
5489static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
5490 show_debug_level, store_debug_level);
b481de9c 5491
d08853a3 5492#endif /* CONFIG_IWLWIFI_DEBUG */
b481de9c 5493
b481de9c
ZY
5494static ssize_t show_temperature(struct device *d,
5495 struct device_attribute *attr, char *buf)
5496{
4a8a4322 5497 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
b481de9c 5498
775a6e27 5499 if (!iwl_is_alive(priv))
b481de9c
ZY
5500 return -EAGAIN;
5501
bb8c093b 5502 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
b481de9c
ZY
5503}
5504
5505static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
5506
b481de9c
ZY
5507static ssize_t show_tx_power(struct device *d,
5508 struct device_attribute *attr, char *buf)
5509{
4a8a4322 5510 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
62ea9c5b 5511 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
b481de9c
ZY
5512}
5513
5514static ssize_t store_tx_power(struct device *d,
5515 struct device_attribute *attr,
5516 const char *buf, size_t count)
5517{
4a8a4322 5518 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
b481de9c
ZY
5519 char *p = (char *)buf;
5520 u32 val;
5521
5522 val = simple_strtoul(p, &p, 10);
5523 if (p == buf)
978785a3 5524 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
b481de9c 5525 else
bb8c093b 5526 iwl3945_hw_reg_set_txpower(priv, val);
b481de9c
ZY
5527
5528 return count;
5529}
5530
5531static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
5532
5533static ssize_t show_flags(struct device *d,
5534 struct device_attribute *attr, char *buf)
5535{
4a8a4322 5536 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
b481de9c 5537
f2c7e521 5538 return sprintf(buf, "0x%04X\n", priv->active39_rxon.flags);
b481de9c
ZY
5539}
5540
5541static ssize_t store_flags(struct device *d,
5542 struct device_attribute *attr,
5543 const char *buf, size_t count)
5544{
4a8a4322 5545 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
b481de9c
ZY
5546 u32 flags = simple_strtoul(buf, NULL, 0);
5547
5548 mutex_lock(&priv->mutex);
f2c7e521 5549 if (le32_to_cpu(priv->staging39_rxon.flags) != flags) {
b481de9c 5550 /* Cancel any currently running scans... */
af0053d6 5551 if (iwl_scan_cancel_timeout(priv, 100))
39aadf8c 5552 IWL_WARN(priv, "Could not cancel scan.\n");
b481de9c
ZY
5553 else {
5554 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
5555 flags);
f2c7e521 5556 priv->staging39_rxon.flags = cpu_to_le32(flags);
bb8c093b 5557 iwl3945_commit_rxon(priv);
b481de9c
ZY
5558 }
5559 }
5560 mutex_unlock(&priv->mutex);
5561
5562 return count;
5563}
5564
5565static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
5566
5567static ssize_t show_filter_flags(struct device *d,
5568 struct device_attribute *attr, char *buf)
5569{
4a8a4322 5570 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
b481de9c
ZY
5571
5572 return sprintf(buf, "0x%04X\n",
f2c7e521 5573 le32_to_cpu(priv->active39_rxon.filter_flags));
b481de9c
ZY
5574}
5575
5576static ssize_t store_filter_flags(struct device *d,
5577 struct device_attribute *attr,
5578 const char *buf, size_t count)
5579{
4a8a4322 5580 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
b481de9c
ZY
5581 u32 filter_flags = simple_strtoul(buf, NULL, 0);
5582
5583 mutex_lock(&priv->mutex);
f2c7e521 5584 if (le32_to_cpu(priv->staging39_rxon.filter_flags) != filter_flags) {
b481de9c 5585 /* Cancel any currently running scans... */
af0053d6 5586 if (iwl_scan_cancel_timeout(priv, 100))
39aadf8c 5587 IWL_WARN(priv, "Could not cancel scan.\n");
b481de9c
ZY
5588 else {
5589 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
5590 "0x%04X\n", filter_flags);
f2c7e521 5591 priv->staging39_rxon.filter_flags =
b481de9c 5592 cpu_to_le32(filter_flags);
bb8c093b 5593 iwl3945_commit_rxon(priv);
b481de9c
ZY
5594 }
5595 }
5596 mutex_unlock(&priv->mutex);
5597
5598 return count;
5599}
5600
5601static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
5602 store_filter_flags);
5603
c8b0e6e1 5604#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
5605
5606static ssize_t show_measurement(struct device *d,
5607 struct device_attribute *attr, char *buf)
5608{
4a8a4322 5609 struct iwl_priv *priv = dev_get_drvdata(d);
600c0e11 5610 struct iwl_spectrum_notification measure_report;
b481de9c 5611 u32 size = sizeof(measure_report), len = 0, ofs = 0;
3ac7f146 5612 u8 *data = (u8 *)&measure_report;
b481de9c
ZY
5613 unsigned long flags;
5614
5615 spin_lock_irqsave(&priv->lock, flags);
5616 if (!(priv->measurement_status & MEASUREMENT_READY)) {
5617 spin_unlock_irqrestore(&priv->lock, flags);
5618 return 0;
5619 }
5620 memcpy(&measure_report, &priv->measure_report, size);
5621 priv->measurement_status = 0;
5622 spin_unlock_irqrestore(&priv->lock, flags);
5623
5624 while (size && (PAGE_SIZE - len)) {
5625 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
5626 PAGE_SIZE - len, 1);
5627 len = strlen(buf);
5628 if (PAGE_SIZE - len)
5629 buf[len++] = '\n';
5630
5631 ofs += 16;
5632 size -= min(size, 16U);
5633 }
5634
5635 return len;
5636}
5637
5638static ssize_t store_measurement(struct device *d,
5639 struct device_attribute *attr,
5640 const char *buf, size_t count)
5641{
4a8a4322 5642 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c 5643 struct ieee80211_measurement_params params = {
f2c7e521 5644 .channel = le16_to_cpu(priv->active39_rxon.channel),
b481de9c
ZY
5645 .start_time = cpu_to_le64(priv->last_tsf),
5646 .duration = cpu_to_le16(1),
5647 };
5648 u8 type = IWL_MEASURE_BASIC;
5649 u8 buffer[32];
5650 u8 channel;
5651
5652 if (count) {
5653 char *p = buffer;
5654 strncpy(buffer, buf, min(sizeof(buffer), count));
5655 channel = simple_strtoul(p, NULL, 0);
5656 if (channel)
5657 params.channel = channel;
5658
5659 p = buffer;
5660 while (*p && *p != ' ')
5661 p++;
5662 if (*p)
5663 type = simple_strtoul(p + 1, NULL, 0);
5664 }
5665
5666 IWL_DEBUG_INFO("Invoking measurement of type %d on "
5667 "channel %d (for '%s')\n", type, params.channel, buf);
bb8c093b 5668 iwl3945_get_measurement(priv, &params, type);
b481de9c
ZY
5669
5670 return count;
5671}
5672
5673static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
5674 show_measurement, store_measurement);
c8b0e6e1 5675#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
b481de9c 5676
b481de9c
ZY
5677static ssize_t store_retry_rate(struct device *d,
5678 struct device_attribute *attr,
5679 const char *buf, size_t count)
5680{
4a8a4322 5681 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
5682
5683 priv->retry_rate = simple_strtoul(buf, NULL, 0);
5684 if (priv->retry_rate <= 0)
5685 priv->retry_rate = 1;
5686
5687 return count;
5688}
5689
5690static ssize_t show_retry_rate(struct device *d,
5691 struct device_attribute *attr, char *buf)
5692{
4a8a4322 5693 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
5694 return sprintf(buf, "%d", priv->retry_rate);
5695}
5696
5697static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
5698 store_retry_rate);
5699
5700static ssize_t store_power_level(struct device *d,
5701 struct device_attribute *attr,
5702 const char *buf, size_t count)
5703{
4a8a4322 5704 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
5705 int rc;
5706 int mode;
5707
5708 mode = simple_strtoul(buf, NULL, 0);
5709 mutex_lock(&priv->mutex);
5710
775a6e27 5711 if (!iwl_is_ready(priv)) {
b481de9c
ZY
5712 rc = -EAGAIN;
5713 goto out;
5714 }
5715
1125eff3
SO
5716 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
5717 (mode == IWL39_POWER_AC))
5718 mode = IWL39_POWER_AC;
b481de9c
ZY
5719 else
5720 mode |= IWL_POWER_ENABLED;
5721
5722 if (mode != priv->power_mode) {
bb8c093b 5723 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
b481de9c
ZY
5724 if (rc) {
5725 IWL_DEBUG_MAC80211("failed setting power mode.\n");
5726 goto out;
5727 }
5728 priv->power_mode = mode;
5729 }
5730
5731 rc = count;
5732
5733 out:
5734 mutex_unlock(&priv->mutex);
5735 return rc;
5736}
5737
5738#define MAX_WX_STRING 80
5739
5740/* Values are in microsecond */
5741static const s32 timeout_duration[] = {
5742 350000,
5743 250000,
5744 75000,
5745 37000,
5746 25000,
5747};
5748static const s32 period_duration[] = {
5749 400000,
5750 700000,
5751 1000000,
5752 1000000,
5753 1000000
5754};
5755
5756static ssize_t show_power_level(struct device *d,
5757 struct device_attribute *attr, char *buf)
5758{
4a8a4322 5759 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
5760 int level = IWL_POWER_LEVEL(priv->power_mode);
5761 char *p = buf;
5762
5763 p += sprintf(p, "%d ", level);
5764 switch (level) {
5765 case IWL_POWER_MODE_CAM:
1125eff3 5766 case IWL39_POWER_AC:
b481de9c
ZY
5767 p += sprintf(p, "(AC)");
5768 break;
1125eff3 5769 case IWL39_POWER_BATTERY:
b481de9c
ZY
5770 p += sprintf(p, "(BATTERY)");
5771 break;
5772 default:
5773 p += sprintf(p,
5774 "(Timeout %dms, Period %dms)",
5775 timeout_duration[level - 1] / 1000,
5776 period_duration[level - 1] / 1000);
5777 }
5778
5779 if (!(priv->power_mode & IWL_POWER_ENABLED))
5780 p += sprintf(p, " OFF\n");
5781 else
5782 p += sprintf(p, " \n");
5783
3ac7f146 5784 return p - buf + 1;
b481de9c
ZY
5785
5786}
5787
5788static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
5789 store_power_level);
5790
5791static ssize_t show_channels(struct device *d,
5792 struct device_attribute *attr, char *buf)
5793{
8318d78a
JB
5794 /* all this shit doesn't belong into sysfs anyway */
5795 return 0;
b481de9c
ZY
5796}
5797
5798static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
5799
5800static ssize_t show_statistics(struct device *d,
5801 struct device_attribute *attr, char *buf)
5802{
4a8a4322 5803 struct iwl_priv *priv = dev_get_drvdata(d);
bb8c093b 5804 u32 size = sizeof(struct iwl3945_notif_statistics);
b481de9c 5805 u32 len = 0, ofs = 0;
f2c7e521 5806 u8 *data = (u8 *)&priv->statistics_39;
b481de9c
ZY
5807 int rc = 0;
5808
775a6e27 5809 if (!iwl_is_alive(priv))
b481de9c
ZY
5810 return -EAGAIN;
5811
5812 mutex_lock(&priv->mutex);
bb8c093b 5813 rc = iwl3945_send_statistics_request(priv);
b481de9c
ZY
5814 mutex_unlock(&priv->mutex);
5815
5816 if (rc) {
5817 len = sprintf(buf,
5818 "Error sending statistics request: 0x%08X\n", rc);
5819 return len;
5820 }
5821
5822 while (size && (PAGE_SIZE - len)) {
5823 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
5824 PAGE_SIZE - len, 1);
5825 len = strlen(buf);
5826 if (PAGE_SIZE - len)
5827 buf[len++] = '\n';
5828
5829 ofs += 16;
5830 size -= min(size, 16U);
5831 }
5832
5833 return len;
5834}
5835
5836static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
5837
5838static ssize_t show_antenna(struct device *d,
5839 struct device_attribute *attr, char *buf)
5840{
4a8a4322 5841 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c 5842
775a6e27 5843 if (!iwl_is_alive(priv))
b481de9c
ZY
5844 return -EAGAIN;
5845
7e4bca5e 5846 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
b481de9c
ZY
5847}
5848
5849static ssize_t store_antenna(struct device *d,
5850 struct device_attribute *attr,
5851 const char *buf, size_t count)
5852{
5853 int ant;
4a8a4322 5854 struct iwl_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
5855
5856 if (count == 0)
5857 return 0;
5858
5859 if (sscanf(buf, "%1i", &ant) != 1) {
5860 IWL_DEBUG_INFO("not in hex or decimal form.\n");
5861 return count;
5862 }
5863
5864 if ((ant >= 0) && (ant <= 2)) {
5865 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
7e4bca5e 5866 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
b481de9c
ZY
5867 } else
5868 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
5869
5870
5871 return count;
5872}
5873
5874static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
5875
5876static ssize_t show_status(struct device *d,
5877 struct device_attribute *attr, char *buf)
5878{
4a8a4322 5879 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
775a6e27 5880 if (!iwl_is_alive(priv))
b481de9c
ZY
5881 return -EAGAIN;
5882 return sprintf(buf, "0x%08x\n", (int)priv->status);
5883}
5884
5885static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
5886
5887static ssize_t dump_error_log(struct device *d,
5888 struct device_attribute *attr,
5889 const char *buf, size_t count)
5890{
5891 char *p = (char *)buf;
5892
5893 if (p[0] == '1')
4a8a4322 5894 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
b481de9c
ZY
5895
5896 return strnlen(buf, count);
5897}
5898
5899static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
5900
5901static ssize_t dump_event_log(struct device *d,
5902 struct device_attribute *attr,
5903 const char *buf, size_t count)
5904{
5905 char *p = (char *)buf;
5906
5907 if (p[0] == '1')
4a8a4322 5908 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
b481de9c
ZY
5909
5910 return strnlen(buf, count);
5911}
5912
5913static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
5914
5915/*****************************************************************************
5916 *
a96a27f9 5917 * driver setup and tear down
b481de9c
ZY
5918 *
5919 *****************************************************************************/
5920
4a8a4322 5921static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
b481de9c
ZY
5922{
5923 priv->workqueue = create_workqueue(DRV_NAME);
5924
5925 init_waitqueue_head(&priv->wait_command_queue);
5926
bb8c093b
CH
5927 INIT_WORK(&priv->up, iwl3945_bg_up);
5928 INIT_WORK(&priv->restart, iwl3945_bg_restart);
5929 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
c0af96a6 5930 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
bb8c093b 5931 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
bb8c093b
CH
5932 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
5933 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
2663516d 5934 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
77fecfb8
SO
5935 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
5936 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
5937 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
5938 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
bb8c093b
CH
5939
5940 iwl3945_hw_setup_deferred_work(priv);
b481de9c
ZY
5941
5942 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
bb8c093b 5943 iwl3945_irq_tasklet, (unsigned long)priv);
b481de9c
ZY
5944}
5945
4a8a4322 5946static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
b481de9c 5947{
bb8c093b 5948 iwl3945_hw_cancel_deferred_work(priv);
b481de9c 5949
e47eb6ad 5950 cancel_delayed_work_sync(&priv->init_alive_start);
b481de9c
ZY
5951 cancel_delayed_work(&priv->scan_check);
5952 cancel_delayed_work(&priv->alive_start);
b481de9c
ZY
5953 cancel_work_sync(&priv->beacon_update);
5954}
5955
bb8c093b 5956static struct attribute *iwl3945_sysfs_entries[] = {
b481de9c
ZY
5957 &dev_attr_antenna.attr,
5958 &dev_attr_channels.attr,
5959 &dev_attr_dump_errors.attr,
5960 &dev_attr_dump_events.attr,
5961 &dev_attr_flags.attr,
5962 &dev_attr_filter_flags.attr,
c8b0e6e1 5963#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
5964 &dev_attr_measurement.attr,
5965#endif
5966 &dev_attr_power_level.attr,
b481de9c 5967 &dev_attr_retry_rate.attr,
b481de9c
ZY
5968 &dev_attr_statistics.attr,
5969 &dev_attr_status.attr,
5970 &dev_attr_temperature.attr,
b481de9c 5971 &dev_attr_tx_power.attr,
d08853a3 5972#ifdef CONFIG_IWLWIFI_DEBUG
40b8ec0b
SO
5973 &dev_attr_debug_level.attr,
5974#endif
b481de9c
ZY
5975 NULL
5976};
5977
bb8c093b 5978static struct attribute_group iwl3945_attribute_group = {
b481de9c 5979 .name = NULL, /* put in device directory */
bb8c093b 5980 .attrs = iwl3945_sysfs_entries,
b481de9c
ZY
5981};
5982
bb8c093b
CH
5983static struct ieee80211_ops iwl3945_hw_ops = {
5984 .tx = iwl3945_mac_tx,
5985 .start = iwl3945_mac_start,
5986 .stop = iwl3945_mac_stop,
5987 .add_interface = iwl3945_mac_add_interface,
5988 .remove_interface = iwl3945_mac_remove_interface,
5989 .config = iwl3945_mac_config,
5990 .config_interface = iwl3945_mac_config_interface,
5991 .configure_filter = iwl3945_configure_filter,
5992 .set_key = iwl3945_mac_set_key,
bb8c093b
CH
5993 .get_tx_stats = iwl3945_mac_get_tx_stats,
5994 .conf_tx = iwl3945_mac_conf_tx,
bb8c093b 5995 .reset_tsf = iwl3945_mac_reset_tsf,
cd56d331 5996 .bss_info_changed = iwl3945_bss_info_changed,
bb8c093b 5997 .hw_scan = iwl3945_mac_hw_scan
b481de9c
ZY
5998};
5999
e52119c5 6000static int iwl3945_init_drv(struct iwl_priv *priv)
90a30a02
KA
6001{
6002 int ret;
e6148917 6003 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
90a30a02
KA
6004
6005 priv->retry_rate = 1;
6006 priv->ibss_beacon = NULL;
6007
6008 spin_lock_init(&priv->lock);
3dae0c42 6009 spin_lock_init(&priv->power_data.lock);
90a30a02
KA
6010 spin_lock_init(&priv->sta_lock);
6011 spin_lock_init(&priv->hcmd_lock);
6012
6013 INIT_LIST_HEAD(&priv->free_frames);
6014
6015 mutex_init(&priv->mutex);
6016
6017 /* Clear the driver's (not device's) station table */
6018 iwl3945_clear_stations_table(priv);
6019
6020 priv->data_retry_limit = -1;
6021 priv->ieee_channels = NULL;
6022 priv->ieee_rates = NULL;
6023 priv->band = IEEE80211_BAND_2GHZ;
6024
6025 priv->iw_mode = NL80211_IFTYPE_STATION;
6026
6027 iwl_reset_qos(priv);
6028
6029 priv->qos_data.qos_active = 0;
6030 priv->qos_data.qos_cap.val = 0;
6031
6032 priv->rates_mask = IWL_RATES_MASK;
6033 /* If power management is turned on, default to AC mode */
c7a7c8ec 6034 priv->power_mode = IWL39_POWER_AC;
62ea9c5b 6035 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
90a30a02 6036
e6148917
SO
6037 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
6038 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
6039 eeprom->version);
6040 ret = -EINVAL;
6041 goto err;
6042 }
6043 ret = iwl_init_channel_map(priv);
90a30a02
KA
6044 if (ret) {
6045 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
6046 goto err;
6047 }
6048
e6148917
SO
6049 /* Set up txpower settings in driver for all channels */
6050 if (iwl3945_txpower_set_from_eeprom(priv)) {
6051 ret = -EIO;
6052 goto err_free_channel_map;
6053 }
6054
534166de 6055 ret = iwlcore_init_geos(priv);
90a30a02
KA
6056 if (ret) {
6057 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
6058 goto err_free_channel_map;
6059 }
534166de
SO
6060 iwl3945_init_hw_rates(priv, priv->ieee_rates);
6061
6062 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
6063 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
6064 &priv->bands[IEEE80211_BAND_2GHZ];
6065 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
6066 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
6067 &priv->bands[IEEE80211_BAND_5GHZ];
90a30a02
KA
6068
6069 return 0;
6070
6071err_free_channel_map:
e6148917 6072 iwl_free_channel_map(priv);
90a30a02
KA
6073err:
6074 return ret;
6075}
6076
bb8c093b 6077static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
b481de9c
ZY
6078{
6079 int err = 0;
4a8a4322 6080 struct iwl_priv *priv;
b481de9c 6081 struct ieee80211_hw *hw;
c0f20d91 6082 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
e6148917 6083 struct iwl3945_eeprom *eeprom;
0359facc 6084 unsigned long flags;
b481de9c 6085
cee53ddb
KA
6086 /***********************
6087 * 1. Allocating HW data
6088 * ********************/
6089
b481de9c
ZY
6090 /* mac80211 allocates memory for this device instance, including
6091 * space for this driver's private structure */
90a30a02 6092 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
b481de9c 6093 if (hw == NULL) {
a3139c59 6094 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
b481de9c
ZY
6095 err = -ENOMEM;
6096 goto out;
6097 }
b481de9c 6098 priv = hw->priv;
90a30a02 6099 SET_IEEE80211_DEV(hw, &pdev->dev);
6440adb5 6100
df878d8f
KA
6101 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
6102 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
15b1687c
WT
6103 IWL_ERR(priv,
6104 "invalid queues_num, should be between %d and %d\n",
6105 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
a3139c59
SO
6106 err = -EINVAL;
6107 goto out;
6108 }
6109
90a30a02
KA
6110 /*
6111 * Disabling hardware scan means that mac80211 will perform scans
6112 * "the hard way", rather than using device's scan.
6113 */
df878d8f 6114 if (iwl3945_mod_params.disable_hw_scan) {
40b8ec0b
SO
6115 IWL_DEBUG_INFO("Disabling hw_scan\n");
6116 iwl3945_hw_ops.hw_scan = NULL;
6117 }
6118
90a30a02 6119
cee53ddb 6120 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
90a30a02
KA
6121 priv->cfg = cfg;
6122 priv->pci_dev = pdev;
cee53ddb 6123
d08853a3 6124#ifdef CONFIG_IWLWIFI_DEBUG
df878d8f 6125 priv->debug_level = iwl3945_mod_params.debug;
b481de9c
ZY
6126 atomic_set(&priv->restrict_refcnt, 0);
6127#endif
90a30a02
KA
6128 hw->rate_control_algorithm = "iwl-3945-rs";
6129 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
6130
566bfe5a 6131 /* Tell mac80211 our characteristics */
605a0bd6 6132 hw->flags = IEEE80211_HW_SIGNAL_DBM |
566bfe5a 6133 IEEE80211_HW_NOISE_DBM;
b481de9c 6134
f59ac048 6135 hw->wiphy->interface_modes =
f59ac048
LR
6136 BIT(NL80211_IFTYPE_STATION) |
6137 BIT(NL80211_IFTYPE_ADHOC);
6138
2a44f911 6139 hw->wiphy->custom_regulatory = true;
ea4a82dc 6140
6440adb5 6141 /* 4 EDCA QOS priorities */
b481de9c
ZY
6142 hw->queues = 4;
6143
cee53ddb
KA
6144 /***************************
6145 * 2. Initializing PCI bus
6146 * *************************/
b481de9c
ZY
6147 if (pci_enable_device(pdev)) {
6148 err = -ENODEV;
6149 goto out_ieee80211_free_hw;
6150 }
6151
6152 pci_set_master(pdev);
6153
b481de9c
ZY
6154 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
6155 if (!err)
6156 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
6157 if (err) {
978785a3 6158 IWL_WARN(priv, "No suitable DMA available.\n");
b481de9c
ZY
6159 goto out_pci_disable_device;
6160 }
6161
6162 pci_set_drvdata(pdev, priv);
6163 err = pci_request_regions(pdev, DRV_NAME);
6164 if (err)
6165 goto out_pci_disable_device;
6440adb5 6166
cee53ddb
KA
6167 /***********************
6168 * 3. Read REV Register
6169 * ********************/
b481de9c
ZY
6170 priv->hw_base = pci_iomap(pdev, 0, 0);
6171 if (!priv->hw_base) {
6172 err = -ENODEV;
6173 goto out_pci_release_regions;
6174 }
6175
6176 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
6177 (unsigned long long) pci_resource_len(pdev, 0));
6178 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
6179
cee53ddb
KA
6180 /* We disable the RETRY_TIMEOUT register (0x41) to keep
6181 * PCI Tx retries from interfering with C3 CPU state */
6182 pci_write_config_byte(pdev, 0x41, 0x00);
b481de9c 6183
90a30a02
KA
6184 /* amp init */
6185 err = priv->cfg->ops->lib->apm_ops.init(priv);
cee53ddb 6186 if (err < 0) {
90a30a02
KA
6187 IWL_DEBUG_INFO("Failed to init APMG\n");
6188 goto out_iounmap;
cee53ddb 6189 }
b481de9c 6190
cee53ddb
KA
6191 /***********************
6192 * 4. Read EEPROM
6193 * ********************/
90a30a02 6194
cee53ddb 6195 /* Read the EEPROM */
e6148917 6196 err = iwl_eeprom_init(priv);
cee53ddb 6197 if (err) {
15b1687c 6198 IWL_ERR(priv, "Unable to init EEPROM\n");
cee53ddb
KA
6199 goto out_remove_sysfs;
6200 }
6201 /* MAC Address location in EEPROM same for 3945/4965 */
e6148917
SO
6202 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
6203 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
cee53ddb
KA
6204 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
6205 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
b481de9c 6206
cee53ddb
KA
6207 /***********************
6208 * 5. Setup HW Constants
6209 * ********************/
b481de9c 6210 /* Device-specific setup */
3832ec9d 6211 if (iwl3945_hw_set_hw_params(priv)) {
15b1687c 6212 IWL_ERR(priv, "failed to set hw settings\n");
b481de9c
ZY
6213 goto out_iounmap;
6214 }
6215
cee53ddb
KA
6216 /***********************
6217 * 6. Setup priv
6218 * ********************/
cee53ddb 6219
90a30a02 6220 err = iwl3945_init_drv(priv);
b481de9c 6221 if (err) {
90a30a02
KA
6222 IWL_ERR(priv, "initializing driver failed\n");
6223 goto out_free_geos;
b481de9c
ZY
6224 }
6225
978785a3
TW
6226 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
6227 priv->cfg->name);
cee53ddb
KA
6228
6229 /***********************************
6230 * 7. Initialize Module Parameters
6231 * **********************************/
6232
6233 /* Initialize module parameter values here */
6234 /* Disable radio (SW RF KILL) via parameter when loading driver */
df878d8f 6235 if (iwl3945_mod_params.disable) {
cee53ddb
KA
6236 set_bit(STATUS_RF_KILL_SW, &priv->status);
6237 IWL_DEBUG_INFO("Radio disabled.\n");
849e0dce
RC
6238 }
6239
cee53ddb
KA
6240
6241 /***********************
6242 * 8. Setup Services
6243 * ********************/
6244
6245 spin_lock_irqsave(&priv->lock, flags);
6246 iwl3945_disable_interrupts(priv);
6247 spin_unlock_irqrestore(&priv->lock, flags);
6248
2663516d
HS
6249 pci_enable_msi(priv->pci_dev);
6250
6251 err = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6252 DRV_NAME, priv);
6253 if (err) {
6254 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
6255 goto out_disable_msi;
6256 }
6257
cee53ddb 6258 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
849e0dce 6259 if (err) {
15b1687c 6260 IWL_ERR(priv, "failed to create sysfs device attributes\n");
90a30a02 6261 goto out_release_irq;
849e0dce 6262 }
849e0dce 6263
cee53ddb
KA
6264 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
6265 iwl3945_setup_deferred_work(priv);
6266 iwl3945_setup_rx_handlers(priv);
6267
cee53ddb 6268 /*********************************
2663516d 6269 * 9. Setup and Register mac80211
cee53ddb
KA
6270 * *******************************/
6271
5a66926a
ZY
6272 err = ieee80211_register_hw(priv->hw);
6273 if (err) {
15b1687c 6274 IWL_ERR(priv, "Failed to register network device: %d\n", err);
cee53ddb 6275 goto out_remove_sysfs;
5a66926a 6276 }
b481de9c 6277
5a66926a
ZY
6278 priv->hw->conf.beacon_int = 100;
6279 priv->mac80211_registered = 1;
cee53ddb 6280
c0af96a6 6281 err = iwl_rfkill_init(priv);
ebef2008 6282 if (err)
15b1687c 6283 IWL_ERR(priv, "Unable to initialize RFKILL system. "
ebef2008
AK
6284 "Ignoring error: %d\n", err);
6285
2663516d
HS
6286 /* Start monitoring the killswitch */
6287 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
6288 2 * HZ);
6289
b481de9c
ZY
6290 return 0;
6291
cee53ddb
KA
6292 out_remove_sysfs:
6293 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
849e0dce 6294 out_free_geos:
534166de 6295 iwlcore_free_geos(priv);
b481de9c
ZY
6296
6297 out_release_irq:
2663516d 6298 free_irq(priv->pci_dev->irq, priv);
b481de9c
ZY
6299 destroy_workqueue(priv->workqueue);
6300 priv->workqueue = NULL;
3832ec9d 6301 iwl3945_unset_hw_params(priv);
2663516d
HS
6302 out_disable_msi:
6303 pci_disable_msi(priv->pci_dev);
b481de9c
ZY
6304 out_iounmap:
6305 pci_iounmap(pdev, priv->hw_base);
6306 out_pci_release_regions:
6307 pci_release_regions(pdev);
6308 out_pci_disable_device:
6309 pci_disable_device(pdev);
6310 pci_set_drvdata(pdev, NULL);
6311 out_ieee80211_free_hw:
6312 ieee80211_free_hw(priv->hw);
6313 out:
6314 return err;
6315}
6316
c83dbf68 6317static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
b481de9c 6318{
4a8a4322 6319 struct iwl_priv *priv = pci_get_drvdata(pdev);
0359facc 6320 unsigned long flags;
b481de9c
ZY
6321
6322 if (!priv)
6323 return;
6324
6325 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
6326
b481de9c 6327 set_bit(STATUS_EXIT_PENDING, &priv->status);
b24d22b1 6328
d552bfb6
KA
6329 if (priv->mac80211_registered) {
6330 ieee80211_unregister_hw(priv->hw);
6331 priv->mac80211_registered = 0;
6332 } else {
6333 iwl3945_down(priv);
6334 }
b481de9c 6335
0359facc
MA
6336 /* make sure we flush any pending irq or
6337 * tasklet for the driver
6338 */
6339 spin_lock_irqsave(&priv->lock, flags);
6340 iwl3945_disable_interrupts(priv);
6341 spin_unlock_irqrestore(&priv->lock, flags);
6342
6343 iwl_synchronize_irq(priv);
6344
bb8c093b 6345 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
b481de9c 6346
c0af96a6 6347 iwl_rfkill_unregister(priv);
2663516d
HS
6348 cancel_delayed_work(&priv->rfkill_poll);
6349
bb8c093b 6350 iwl3945_dealloc_ucode_pci(priv);
b481de9c
ZY
6351
6352 if (priv->rxq.bd)
51af3d3f 6353 iwl_rx_queue_free(priv, &priv->rxq);
bb8c093b 6354 iwl3945_hw_txq_ctx_free(priv);
b481de9c 6355
3832ec9d 6356 iwl3945_unset_hw_params(priv);
bb8c093b 6357 iwl3945_clear_stations_table(priv);
b481de9c 6358
6ef89d0a
MA
6359 /*netif_stop_queue(dev); */
6360 flush_workqueue(priv->workqueue);
6361
bb8c093b 6362 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
b481de9c
ZY
6363 * priv->workqueue... so we can't take down the workqueue
6364 * until now... */
6365 destroy_workqueue(priv->workqueue);
6366 priv->workqueue = NULL;
6367
2663516d
HS
6368 free_irq(pdev->irq, priv);
6369 pci_disable_msi(pdev);
6370
b481de9c
ZY
6371 pci_iounmap(pdev, priv->hw_base);
6372 pci_release_regions(pdev);
6373 pci_disable_device(pdev);
6374 pci_set_drvdata(pdev, NULL);
6375
e6148917 6376 iwl_free_channel_map(priv);
534166de 6377 iwlcore_free_geos(priv);
805cee5b 6378 kfree(priv->scan);
b481de9c
ZY
6379 if (priv->ibss_beacon)
6380 dev_kfree_skb(priv->ibss_beacon);
6381
6382 ieee80211_free_hw(priv->hw);
6383}
6384
6385#ifdef CONFIG_PM
6386
bb8c093b 6387static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
b481de9c 6388{
4a8a4322 6389 struct iwl_priv *priv = pci_get_drvdata(pdev);
b481de9c 6390
e655b9f0
ZY
6391 if (priv->is_open) {
6392 set_bit(STATUS_IN_SUSPEND, &priv->status);
6393 iwl3945_mac_stop(priv->hw);
6394 priv->is_open = 1;
6395 }
2663516d
HS
6396 pci_save_state(pdev);
6397 pci_disable_device(pdev);
b481de9c
ZY
6398 pci_set_power_state(pdev, PCI_D3hot);
6399
b481de9c
ZY
6400 return 0;
6401}
6402
bb8c093b 6403static int iwl3945_pci_resume(struct pci_dev *pdev)
b481de9c 6404{
4a8a4322 6405 struct iwl_priv *priv = pci_get_drvdata(pdev);
b481de9c 6406
b481de9c 6407 pci_set_power_state(pdev, PCI_D0);
2663516d
HS
6408 pci_enable_device(pdev);
6409 pci_restore_state(pdev);
b481de9c 6410
e655b9f0
ZY
6411 if (priv->is_open)
6412 iwl3945_mac_start(priv->hw);
b481de9c 6413
e655b9f0 6414 clear_bit(STATUS_IN_SUSPEND, &priv->status);
b481de9c
ZY
6415 return 0;
6416}
6417
6418#endif /* CONFIG_PM */
6419
6420/*****************************************************************************
6421 *
6422 * driver and module entry point
6423 *
6424 *****************************************************************************/
6425
bb8c093b 6426static struct pci_driver iwl3945_driver = {
b481de9c 6427 .name = DRV_NAME,
bb8c093b
CH
6428 .id_table = iwl3945_hw_card_ids,
6429 .probe = iwl3945_pci_probe,
6430 .remove = __devexit_p(iwl3945_pci_remove),
b481de9c 6431#ifdef CONFIG_PM
bb8c093b
CH
6432 .suspend = iwl3945_pci_suspend,
6433 .resume = iwl3945_pci_resume,
b481de9c
ZY
6434#endif
6435};
6436
bb8c093b 6437static int __init iwl3945_init(void)
b481de9c
ZY
6438{
6439
6440 int ret;
6441 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
6442 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
897e1cf2
RC
6443
6444 ret = iwl3945_rate_control_register();
6445 if (ret) {
a3139c59
SO
6446 printk(KERN_ERR DRV_NAME
6447 "Unable to register rate control algorithm: %d\n", ret);
897e1cf2
RC
6448 return ret;
6449 }
6450
bb8c093b 6451 ret = pci_register_driver(&iwl3945_driver);
b481de9c 6452 if (ret) {
a3139c59 6453 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
897e1cf2 6454 goto error_register;
b481de9c 6455 }
b481de9c
ZY
6456
6457 return ret;
897e1cf2 6458
897e1cf2
RC
6459error_register:
6460 iwl3945_rate_control_unregister();
6461 return ret;
b481de9c
ZY
6462}
6463
bb8c093b 6464static void __exit iwl3945_exit(void)
b481de9c 6465{
bb8c093b 6466 pci_unregister_driver(&iwl3945_driver);
897e1cf2 6467 iwl3945_rate_control_unregister();
b481de9c
ZY
6468}
6469
a0987a8d 6470MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
25cb6cad 6471
df878d8f 6472module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
b481de9c 6473MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
df878d8f 6474module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
b481de9c 6475MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
9c74d9fb
SO
6476module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
6477MODULE_PARM_DESC(swcrypto,
6478 "using software crypto (default 1 [software])\n");
df878d8f 6479module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
b481de9c 6480MODULE_PARM_DESC(debug, "debug output mask");
df878d8f 6481module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
b481de9c
ZY
6482MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
6483
df878d8f 6484module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
b481de9c
ZY
6485MODULE_PARM_DESC(queues_num, "number of hw queues.");
6486
af48d048
SO
6487module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
6488MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
6489
bb8c093b
CH
6490module_exit(iwl3945_exit);
6491module_init(iwl3945_init);
This page took 0.989586 seconds and 5 git commands to generate.