iwlwifi: delay firmware loading from pci_probe to network interface open
[linux-2.6-block.git] / drivers / net / wireless / iwlwifi / iwl3945-base.c
CommitLineData
b481de9c
ZY
1/******************************************************************************
2 *
3 * Copyright(c) 2003 - 2007 Intel Corporation. All rights reserved.
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:
25 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
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>
32#include <linux/version.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/dma-mapping.h>
36#include <linux/delay.h>
37#include <linux/skbuff.h>
38#include <linux/netdevice.h>
39#include <linux/wireless.h>
40#include <linux/firmware.h>
b481de9c
ZY
41#include <linux/etherdevice.h>
42#include <linux/if_arp.h>
43
44#include <net/ieee80211_radiotap.h>
45#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
b481de9c
ZY
49#include "iwl-3945.h"
50#include "iwl-helpers.h"
51
c8b0e6e1 52#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 53u32 iwl3945_debug_level;
b481de9c
ZY
54#endif
55
bb8c093b
CH
56static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
57 struct iwl3945_tx_queue *txq);
416e1438 58
b481de9c
ZY
59/******************************************************************************
60 *
61 * module boiler plate
62 *
63 ******************************************************************************/
64
65/* module parameters */
6440adb5
CB
66static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */
67static int iwl3945_param_debug; /* def: 0 = minimal debug log messages */
68static int iwl3945_param_disable; /* def: 0 = enable radio */
9fbab516 69static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
6440adb5
CB
70int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */
71static int iwl3945_param_qos_enable = 1; /* def: 1 = use quality of service */
72int iwl3945_param_queues_num = IWL_MAX_NUM_QUEUES; /* def: 8 Tx queues */
b481de9c
ZY
73
74/*
75 * module name, copyright, version, etc.
76 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
77 */
78
79#define DRV_DESCRIPTION \
80"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
81
c8b0e6e1 82#ifdef CONFIG_IWL3945_DEBUG
b481de9c
ZY
83#define VD "d"
84#else
85#define VD
86#endif
87
c8b0e6e1 88#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
89#define VS "s"
90#else
91#define VS
92#endif
93
d1283948 94#define IWLWIFI_VERSION "1.2.22k" VD VS
b481de9c
ZY
95#define DRV_COPYRIGHT "Copyright(c) 2003-2007 Intel Corporation"
96#define DRV_VERSION IWLWIFI_VERSION
97
98/* Change firmware file name, using "-" and incrementing number,
99 * *only* when uCode interface or architecture changes so that it
100 * is not compatible with earlier drivers.
101 * This number will also appear in << 8 position of 1st dword of uCode file */
102#define IWL3945_UCODE_API "-1"
103
104MODULE_DESCRIPTION(DRV_DESCRIPTION);
105MODULE_VERSION(DRV_VERSION);
106MODULE_AUTHOR(DRV_COPYRIGHT);
107MODULE_LICENSE("GPL");
108
416e1438 109static __le16 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr)
b481de9c
ZY
110{
111 u16 fc = le16_to_cpu(hdr->frame_control);
112 int hdr_len = ieee80211_get_hdrlen(fc);
113
114 if ((fc & 0x00cc) == (IEEE80211_STYPE_QOS_DATA | IEEE80211_FTYPE_DATA))
115 return (__le16 *) ((u8 *) hdr + hdr_len - QOS_CONTROL_LEN);
116 return NULL;
117}
118
bb8c093b
CH
119static const struct ieee80211_hw_mode *iwl3945_get_hw_mode(
120 struct iwl3945_priv *priv, int mode)
b481de9c
ZY
121{
122 int i;
123
124 for (i = 0; i < 3; i++)
125 if (priv->modes[i].mode == mode)
126 return &priv->modes[i];
127
128 return NULL;
129}
130
bb8c093b 131static int iwl3945_is_empty_essid(const char *essid, int essid_len)
b481de9c
ZY
132{
133 /* Single white space is for Linksys APs */
134 if (essid_len == 1 && essid[0] == ' ')
135 return 1;
136
137 /* Otherwise, if the entire essid is 0, we assume it is hidden */
138 while (essid_len) {
139 essid_len--;
140 if (essid[essid_len] != '\0')
141 return 0;
142 }
143
144 return 1;
145}
146
bb8c093b 147static const char *iwl3945_escape_essid(const char *essid, u8 essid_len)
b481de9c
ZY
148{
149 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
150 const char *s = essid;
151 char *d = escaped;
152
bb8c093b 153 if (iwl3945_is_empty_essid(essid, essid_len)) {
b481de9c
ZY
154 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
155 return escaped;
156 }
157
158 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
159 while (essid_len--) {
160 if (*s == '\0') {
161 *d++ = '\\';
162 *d++ = '0';
163 s++;
164 } else
165 *d++ = *s++;
166 }
167 *d = '\0';
168 return escaped;
169}
170
bb8c093b 171static void iwl3945_print_hex_dump(int level, void *p, u32 len)
b481de9c 172{
c8b0e6e1 173#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 174 if (!(iwl3945_debug_level & level))
b481de9c
ZY
175 return;
176
177 print_hex_dump(KERN_DEBUG, "iwl data: ", DUMP_PREFIX_OFFSET, 16, 1,
178 p, len, 1);
179#endif
180}
181
182/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
183 * DMA services
184 *
185 * Theory of operation
186 *
6440adb5
CB
187 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
188 * of buffer descriptors, each of which points to one or more data buffers for
189 * the device to read from or fill. Driver and device exchange status of each
190 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
191 * entries in each circular buffer, to protect against confusing empty and full
192 * queue states.
193 *
194 * The device reads or writes the data in the queues via the device's several
195 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
b481de9c
ZY
196 *
197 * For Tx queue, there are low mark and high mark limits. If, after queuing
198 * the packet for Tx, free space become < low mark, Tx queue stopped. When
199 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
200 * Tx queue resumed.
201 *
6440adb5
CB
202 * The 3945 operates with six queues: One receive queue, one transmit queue
203 * (#4) for sending commands to the device firmware, and four transmit queues
204 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
b481de9c
ZY
205 ***************************************************/
206
bb8c093b 207static int iwl3945_queue_space(const struct iwl3945_queue *q)
b481de9c 208{
fc4b6853 209 int s = q->read_ptr - q->write_ptr;
b481de9c 210
fc4b6853 211 if (q->read_ptr > q->write_ptr)
b481de9c
ZY
212 s -= q->n_bd;
213
214 if (s <= 0)
215 s += q->n_window;
216 /* keep some reserve to not confuse empty and full situations */
217 s -= 2;
218 if (s < 0)
219 s = 0;
220 return s;
221}
222
6440adb5
CB
223/**
224 * iwl3945_queue_inc_wrap - increment queue index, wrap back to beginning
225 * @index -- current index
226 * @n_bd -- total number of entries in queue (must be power of 2)
227 */
bb8c093b 228static inline int iwl3945_queue_inc_wrap(int index, int n_bd)
b481de9c
ZY
229{
230 return ++index & (n_bd - 1);
231}
232
6440adb5
CB
233/**
234 * iwl3945_queue_dec_wrap - increment queue index, wrap back to end
235 * @index -- current index
236 * @n_bd -- total number of entries in queue (must be power of 2)
237 */
bb8c093b 238static inline int iwl3945_queue_dec_wrap(int index, int n_bd)
b481de9c
ZY
239{
240 return --index & (n_bd - 1);
241}
242
bb8c093b 243static inline int x2_queue_used(const struct iwl3945_queue *q, int i)
b481de9c 244{
fc4b6853
TW
245 return q->write_ptr > q->read_ptr ?
246 (i >= q->read_ptr && i < q->write_ptr) :
247 !(i < q->read_ptr && i >= q->write_ptr);
b481de9c
ZY
248}
249
bb8c093b 250static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
b481de9c 251{
6440adb5 252 /* This is for scan command, the big buffer at end of command array */
b481de9c 253 if (is_huge)
6440adb5 254 return q->n_window; /* must be power of 2 */
b481de9c 255
6440adb5 256 /* Otherwise, use normal size buffers */
b481de9c
ZY
257 return index & (q->n_window - 1);
258}
259
6440adb5
CB
260/**
261 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
262 */
bb8c093b 263static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
b481de9c
ZY
264 int count, int slots_num, u32 id)
265{
266 q->n_bd = count;
267 q->n_window = slots_num;
268 q->id = id;
269
bb8c093b
CH
270 /* count must be power-of-two size, otherwise iwl3945_queue_inc_wrap
271 * and iwl3945_queue_dec_wrap are broken. */
b481de9c
ZY
272 BUG_ON(!is_power_of_2(count));
273
274 /* slots_num must be power-of-two size, otherwise
275 * get_cmd_index is broken. */
276 BUG_ON(!is_power_of_2(slots_num));
277
278 q->low_mark = q->n_window / 4;
279 if (q->low_mark < 4)
280 q->low_mark = 4;
281
282 q->high_mark = q->n_window / 8;
283 if (q->high_mark < 2)
284 q->high_mark = 2;
285
fc4b6853 286 q->write_ptr = q->read_ptr = 0;
b481de9c
ZY
287
288 return 0;
289}
290
6440adb5
CB
291/**
292 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
293 */
bb8c093b
CH
294static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
295 struct iwl3945_tx_queue *txq, u32 id)
b481de9c
ZY
296{
297 struct pci_dev *dev = priv->pci_dev;
298
6440adb5
CB
299 /* Driver private data, only for Tx (not command) queues,
300 * not shared with device. */
b481de9c
ZY
301 if (id != IWL_CMD_QUEUE_NUM) {
302 txq->txb = kmalloc(sizeof(txq->txb[0]) *
303 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
304 if (!txq->txb) {
01ebd063 305 IWL_ERROR("kmalloc for auxiliary BD "
b481de9c
ZY
306 "structures failed\n");
307 goto error;
308 }
309 } else
310 txq->txb = NULL;
311
6440adb5
CB
312 /* Circular buffer of transmit frame descriptors (TFDs),
313 * shared with device */
b481de9c
ZY
314 txq->bd = pci_alloc_consistent(dev,
315 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
316 &txq->q.dma_addr);
317
318 if (!txq->bd) {
319 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
320 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
321 goto error;
322 }
323 txq->q.id = id;
324
325 return 0;
326
327 error:
328 if (txq->txb) {
329 kfree(txq->txb);
330 txq->txb = NULL;
331 }
332
333 return -ENOMEM;
334}
335
6440adb5
CB
336/**
337 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
338 */
bb8c093b
CH
339int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
340 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
b481de9c
ZY
341{
342 struct pci_dev *dev = priv->pci_dev;
343 int len;
344 int rc = 0;
345
6440adb5
CB
346 /*
347 * Alloc buffer array for commands (Tx or other types of commands).
348 * For the command queue (#4), allocate command space + one big
349 * command for scan, since scan command is very huge; the system will
350 * not have two scans at the same time, so only one is needed.
351 * For data Tx queues (all other queues), no super-size command
352 * space is needed.
353 */
bb8c093b 354 len = sizeof(struct iwl3945_cmd) * slots_num;
b481de9c
ZY
355 if (txq_id == IWL_CMD_QUEUE_NUM)
356 len += IWL_MAX_SCAN_SIZE;
357 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
358 if (!txq->cmd)
359 return -ENOMEM;
360
6440adb5 361 /* Alloc driver data array and TFD circular buffer */
bb8c093b 362 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
b481de9c
ZY
363 if (rc) {
364 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
365
366 return -ENOMEM;
367 }
368 txq->need_update = 0;
369
370 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
bb8c093b 371 * iwl3945_queue_inc_wrap and iwl3945_queue_dec_wrap are broken. */
b481de9c 372 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
6440adb5
CB
373
374 /* Initialize queue high/low-water, head/tail indexes */
bb8c093b 375 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
b481de9c 376
6440adb5 377 /* Tell device where to find queue, enable DMA channel. */
bb8c093b 378 iwl3945_hw_tx_queue_init(priv, txq);
b481de9c
ZY
379
380 return 0;
381}
382
383/**
bb8c093b 384 * iwl3945_tx_queue_free - Deallocate DMA queue.
b481de9c
ZY
385 * @txq: Transmit queue to deallocate.
386 *
387 * Empty queue by removing and destroying all BD's.
6440adb5
CB
388 * Free all buffers.
389 * 0-fill, but do not free "txq" descriptor structure.
b481de9c 390 */
bb8c093b 391void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
b481de9c 392{
bb8c093b 393 struct iwl3945_queue *q = &txq->q;
b481de9c
ZY
394 struct pci_dev *dev = priv->pci_dev;
395 int len;
396
397 if (q->n_bd == 0)
398 return;
399
400 /* first, empty all BD's */
fc4b6853 401 for (; q->write_ptr != q->read_ptr;
bb8c093b
CH
402 q->read_ptr = iwl3945_queue_inc_wrap(q->read_ptr, q->n_bd))
403 iwl3945_hw_txq_free_tfd(priv, txq);
b481de9c 404
bb8c093b 405 len = sizeof(struct iwl3945_cmd) * q->n_window;
b481de9c
ZY
406 if (q->id == IWL_CMD_QUEUE_NUM)
407 len += IWL_MAX_SCAN_SIZE;
408
6440adb5 409 /* De-alloc array of command/tx buffers */
b481de9c
ZY
410 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
411
6440adb5 412 /* De-alloc circular buffer of TFDs */
b481de9c 413 if (txq->q.n_bd)
bb8c093b 414 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
b481de9c
ZY
415 txq->q.n_bd, txq->bd, txq->q.dma_addr);
416
6440adb5 417 /* De-alloc array of per-TFD driver data */
b481de9c
ZY
418 if (txq->txb) {
419 kfree(txq->txb);
420 txq->txb = NULL;
421 }
422
6440adb5 423 /* 0-fill queue descriptor structure */
b481de9c
ZY
424 memset(txq, 0, sizeof(*txq));
425}
426
bb8c093b 427const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
b481de9c
ZY
428
429/*************** STATION TABLE MANAGEMENT ****
9fbab516 430 * mac80211 should be examined to determine if sta_info is duplicating
b481de9c
ZY
431 * the functionality provided here
432 */
433
434/**************************************************************/
01ebd063 435#if 0 /* temporary disable till we add real remove station */
6440adb5
CB
436/**
437 * iwl3945_remove_station - Remove driver's knowledge of station.
438 *
439 * NOTE: This does not remove station from device's station table.
440 */
bb8c093b 441static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
b481de9c
ZY
442{
443 int index = IWL_INVALID_STATION;
444 int i;
445 unsigned long flags;
446
447 spin_lock_irqsave(&priv->sta_lock, flags);
448
449 if (is_ap)
450 index = IWL_AP_ID;
451 else if (is_broadcast_ether_addr(addr))
452 index = priv->hw_setting.bcast_sta_id;
453 else
454 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
455 if (priv->stations[i].used &&
456 !compare_ether_addr(priv->stations[i].sta.sta.addr,
457 addr)) {
458 index = i;
459 break;
460 }
461
462 if (unlikely(index == IWL_INVALID_STATION))
463 goto out;
464
465 if (priv->stations[index].used) {
466 priv->stations[index].used = 0;
467 priv->num_stations--;
468 }
469
470 BUG_ON(priv->num_stations < 0);
471
472out:
473 spin_unlock_irqrestore(&priv->sta_lock, flags);
474 return 0;
475}
556f8db7 476#endif
6440adb5
CB
477
478/**
479 * iwl3945_clear_stations_table - Clear the driver's station table
480 *
481 * NOTE: This does not clear or otherwise alter the device's station table.
482 */
bb8c093b 483static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
b481de9c
ZY
484{
485 unsigned long flags;
486
487 spin_lock_irqsave(&priv->sta_lock, flags);
488
489 priv->num_stations = 0;
490 memset(priv->stations, 0, sizeof(priv->stations));
491
492 spin_unlock_irqrestore(&priv->sta_lock, flags);
493}
494
6440adb5
CB
495/**
496 * iwl3945_add_station - Add station to station tables in driver and device
497 */
bb8c093b 498u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
b481de9c
ZY
499{
500 int i;
501 int index = IWL_INVALID_STATION;
bb8c093b 502 struct iwl3945_station_entry *station;
b481de9c 503 unsigned long flags_spin;
0795af57 504 DECLARE_MAC_BUF(mac);
c14c521e 505 u8 rate;
b481de9c
ZY
506
507 spin_lock_irqsave(&priv->sta_lock, flags_spin);
508 if (is_ap)
509 index = IWL_AP_ID;
510 else if (is_broadcast_ether_addr(addr))
511 index = priv->hw_setting.bcast_sta_id;
512 else
513 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
514 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
515 addr)) {
516 index = i;
517 break;
518 }
519
520 if (!priv->stations[i].used &&
521 index == IWL_INVALID_STATION)
522 index = i;
523 }
524
01ebd063 525 /* These two conditions has the same outcome but keep them separate
b481de9c
ZY
526 since they have different meaning */
527 if (unlikely(index == IWL_INVALID_STATION)) {
528 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
529 return index;
530 }
531
532 if (priv->stations[index].used &&
533 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
534 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
535 return index;
536 }
537
0795af57 538 IWL_DEBUG_ASSOC("Add STA ID %d: %s\n", index, print_mac(mac, addr));
b481de9c
ZY
539 station = &priv->stations[index];
540 station->used = 1;
541 priv->num_stations++;
542
6440adb5 543 /* Set up the REPLY_ADD_STA command to send to device */
bb8c093b 544 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
b481de9c
ZY
545 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
546 station->sta.mode = 0;
547 station->sta.sta.sta_id = index;
548 station->sta.station_flags = 0;
549
69946333
TW
550 if (priv->phymode == MODE_IEEE80211A)
551 rate = IWL_RATE_6M_PLCP;
552 else
553 rate = IWL_RATE_1M_PLCP;
c14c521e
ZY
554
555 /* Turn on both antennas for the station... */
556 station->sta.rate_n_flags =
bb8c093b 557 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
c14c521e
ZY
558 station->current_rate.rate_n_flags =
559 le16_to_cpu(station->sta.rate_n_flags);
560
b481de9c 561 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
6440adb5
CB
562
563 /* Add station to device's station table */
bb8c093b 564 iwl3945_send_add_station(priv, &station->sta, flags);
b481de9c
ZY
565 return index;
566
567}
568
569/*************** DRIVER STATUS FUNCTIONS *****/
570
bb8c093b 571static inline int iwl3945_is_ready(struct iwl3945_priv *priv)
b481de9c
ZY
572{
573 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
574 * set but EXIT_PENDING is not */
575 return test_bit(STATUS_READY, &priv->status) &&
576 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
577 !test_bit(STATUS_EXIT_PENDING, &priv->status);
578}
579
bb8c093b 580static inline int iwl3945_is_alive(struct iwl3945_priv *priv)
b481de9c
ZY
581{
582 return test_bit(STATUS_ALIVE, &priv->status);
583}
584
bb8c093b 585static inline int iwl3945_is_init(struct iwl3945_priv *priv)
b481de9c
ZY
586{
587 return test_bit(STATUS_INIT, &priv->status);
588}
589
bb8c093b 590static inline int iwl3945_is_rfkill(struct iwl3945_priv *priv)
b481de9c
ZY
591{
592 return test_bit(STATUS_RF_KILL_HW, &priv->status) ||
593 test_bit(STATUS_RF_KILL_SW, &priv->status);
594}
595
bb8c093b 596static inline int iwl3945_is_ready_rf(struct iwl3945_priv *priv)
b481de9c
ZY
597{
598
bb8c093b 599 if (iwl3945_is_rfkill(priv))
b481de9c
ZY
600 return 0;
601
bb8c093b 602 return iwl3945_is_ready(priv);
b481de9c
ZY
603}
604
605/*************** HOST COMMAND QUEUE FUNCTIONS *****/
606
607#define IWL_CMD(x) case x : return #x
608
609static const char *get_cmd_string(u8 cmd)
610{
611 switch (cmd) {
612 IWL_CMD(REPLY_ALIVE);
613 IWL_CMD(REPLY_ERROR);
614 IWL_CMD(REPLY_RXON);
615 IWL_CMD(REPLY_RXON_ASSOC);
616 IWL_CMD(REPLY_QOS_PARAM);
617 IWL_CMD(REPLY_RXON_TIMING);
618 IWL_CMD(REPLY_ADD_STA);
619 IWL_CMD(REPLY_REMOVE_STA);
620 IWL_CMD(REPLY_REMOVE_ALL_STA);
621 IWL_CMD(REPLY_3945_RX);
622 IWL_CMD(REPLY_TX);
623 IWL_CMD(REPLY_RATE_SCALE);
624 IWL_CMD(REPLY_LEDS_CMD);
625 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
626 IWL_CMD(RADAR_NOTIFICATION);
627 IWL_CMD(REPLY_QUIET_CMD);
628 IWL_CMD(REPLY_CHANNEL_SWITCH);
629 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
630 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
631 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
632 IWL_CMD(POWER_TABLE_CMD);
633 IWL_CMD(PM_SLEEP_NOTIFICATION);
634 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
635 IWL_CMD(REPLY_SCAN_CMD);
636 IWL_CMD(REPLY_SCAN_ABORT_CMD);
637 IWL_CMD(SCAN_START_NOTIFICATION);
638 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
639 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
640 IWL_CMD(BEACON_NOTIFICATION);
641 IWL_CMD(REPLY_TX_BEACON);
642 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
643 IWL_CMD(QUIET_NOTIFICATION);
644 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
645 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
646 IWL_CMD(REPLY_BT_CONFIG);
647 IWL_CMD(REPLY_STATISTICS_CMD);
648 IWL_CMD(STATISTICS_NOTIFICATION);
649 IWL_CMD(REPLY_CARD_STATE_CMD);
650 IWL_CMD(CARD_STATE_NOTIFICATION);
651 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
652 default:
653 return "UNKNOWN";
654
655 }
656}
657
658#define HOST_COMPLETE_TIMEOUT (HZ / 2)
659
660/**
bb8c093b 661 * iwl3945_enqueue_hcmd - enqueue a uCode command
b481de9c
ZY
662 * @priv: device private data point
663 * @cmd: a point to the ucode command structure
664 *
665 * The function returns < 0 values to indicate the operation is
666 * failed. On success, it turns the index (> 0) of command in the
667 * command queue.
668 */
bb8c093b 669static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
b481de9c 670{
bb8c093b
CH
671 struct iwl3945_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
672 struct iwl3945_queue *q = &txq->q;
673 struct iwl3945_tfd_frame *tfd;
b481de9c 674 u32 *control_flags;
bb8c093b 675 struct iwl3945_cmd *out_cmd;
b481de9c
ZY
676 u32 idx;
677 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
678 dma_addr_t phys_addr;
679 int pad;
680 u16 count;
681 int ret;
682 unsigned long flags;
683
684 /* If any of the command structures end up being larger than
685 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
686 * we will need to increase the size of the TFD entries */
687 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
688 !(cmd->meta.flags & CMD_SIZE_HUGE));
689
bb8c093b 690 if (iwl3945_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
b481de9c
ZY
691 IWL_ERROR("No space for Tx\n");
692 return -ENOSPC;
693 }
694
695 spin_lock_irqsave(&priv->hcmd_lock, flags);
696
fc4b6853 697 tfd = &txq->bd[q->write_ptr];
b481de9c
ZY
698 memset(tfd, 0, sizeof(*tfd));
699
700 control_flags = (u32 *) tfd;
701
fc4b6853 702 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
b481de9c
ZY
703 out_cmd = &txq->cmd[idx];
704
705 out_cmd->hdr.cmd = cmd->id;
706 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
707 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
708
709 /* At this point, the out_cmd now has all of the incoming cmd
710 * information */
711
712 out_cmd->hdr.flags = 0;
713 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
fc4b6853 714 INDEX_TO_SEQ(q->write_ptr));
b481de9c
ZY
715 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
716 out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
717
718 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
bb8c093b
CH
719 offsetof(struct iwl3945_cmd, hdr);
720 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
b481de9c
ZY
721
722 pad = U32_PAD(cmd->len);
723 count = TFD_CTL_COUNT_GET(*control_flags);
724 *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad);
725
726 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
727 "%d bytes at %d[%d]:%d\n",
728 get_cmd_string(out_cmd->hdr.cmd),
729 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
fc4b6853 730 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
b481de9c
ZY
731
732 txq->need_update = 1;
6440adb5
CB
733
734 /* Increment and update queue's write index */
bb8c093b
CH
735 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd);
736 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
b481de9c
ZY
737
738 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
739 return ret ? ret : idx;
740}
741
bb8c093b 742static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
b481de9c
ZY
743{
744 int ret;
745
746 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
747
748 /* An asynchronous command can not expect an SKB to be set. */
749 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
750
751 /* An asynchronous command MUST have a callback. */
752 BUG_ON(!cmd->meta.u.callback);
753
754 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
755 return -EBUSY;
756
bb8c093b 757 ret = iwl3945_enqueue_hcmd(priv, cmd);
b481de9c 758 if (ret < 0) {
bb8c093b 759 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
b481de9c
ZY
760 get_cmd_string(cmd->id), ret);
761 return ret;
762 }
763 return 0;
764}
765
bb8c093b 766static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
b481de9c
ZY
767{
768 int cmd_idx;
769 int ret;
770 static atomic_t entry = ATOMIC_INIT(0); /* reentrance protection */
771
772 BUG_ON(cmd->meta.flags & CMD_ASYNC);
773
774 /* A synchronous command can not have a callback set. */
775 BUG_ON(cmd->meta.u.callback != NULL);
776
777 if (atomic_xchg(&entry, 1)) {
778 IWL_ERROR("Error sending %s: Already sending a host command\n",
779 get_cmd_string(cmd->id));
780 return -EBUSY;
781 }
782
783 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
784
785 if (cmd->meta.flags & CMD_WANT_SKB)
786 cmd->meta.source = &cmd->meta;
787
bb8c093b 788 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
b481de9c
ZY
789 if (cmd_idx < 0) {
790 ret = cmd_idx;
bb8c093b 791 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
b481de9c
ZY
792 get_cmd_string(cmd->id), ret);
793 goto out;
794 }
795
796 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
797 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
798 HOST_COMPLETE_TIMEOUT);
799 if (!ret) {
800 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
801 IWL_ERROR("Error sending %s: time out after %dms.\n",
802 get_cmd_string(cmd->id),
803 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
804
805 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
806 ret = -ETIMEDOUT;
807 goto cancel;
808 }
809 }
810
811 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
812 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
813 get_cmd_string(cmd->id));
814 ret = -ECANCELED;
815 goto fail;
816 }
817 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
818 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
819 get_cmd_string(cmd->id));
820 ret = -EIO;
821 goto fail;
822 }
823 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
824 IWL_ERROR("Error: Response NULL in '%s'\n",
825 get_cmd_string(cmd->id));
826 ret = -EIO;
827 goto out;
828 }
829
830 ret = 0;
831 goto out;
832
833cancel:
834 if (cmd->meta.flags & CMD_WANT_SKB) {
bb8c093b 835 struct iwl3945_cmd *qcmd;
b481de9c
ZY
836
837 /* Cancel the CMD_WANT_SKB flag for the cmd in the
838 * TX cmd queue. Otherwise in case the cmd comes
839 * in later, it will possibly set an invalid
840 * address (cmd->meta.source). */
841 qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
842 qcmd->meta.flags &= ~CMD_WANT_SKB;
843 }
844fail:
845 if (cmd->meta.u.skb) {
846 dev_kfree_skb_any(cmd->meta.u.skb);
847 cmd->meta.u.skb = NULL;
848 }
849out:
850 atomic_set(&entry, 0);
851 return ret;
852}
853
bb8c093b 854int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
b481de9c 855{
b481de9c 856 if (cmd->meta.flags & CMD_ASYNC)
bb8c093b 857 return iwl3945_send_cmd_async(priv, cmd);
b481de9c 858
bb8c093b 859 return iwl3945_send_cmd_sync(priv, cmd);
b481de9c
ZY
860}
861
bb8c093b 862int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data)
b481de9c 863{
bb8c093b 864 struct iwl3945_host_cmd cmd = {
b481de9c
ZY
865 .id = id,
866 .len = len,
867 .data = data,
868 };
869
bb8c093b 870 return iwl3945_send_cmd_sync(priv, &cmd);
b481de9c
ZY
871}
872
bb8c093b 873static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val)
b481de9c 874{
bb8c093b 875 struct iwl3945_host_cmd cmd = {
b481de9c
ZY
876 .id = id,
877 .len = sizeof(val),
878 .data = &val,
879 };
880
bb8c093b 881 return iwl3945_send_cmd_sync(priv, &cmd);
b481de9c
ZY
882}
883
bb8c093b 884int iwl3945_send_statistics_request(struct iwl3945_priv *priv)
b481de9c 885{
bb8c093b 886 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
b481de9c
ZY
887}
888
b481de9c 889/**
bb8c093b 890 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
b481de9c
ZY
891 * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
892 * @channel: Any channel valid for the requested phymode
893
894 * In addition to setting the staging RXON, priv->phymode is also set.
895 *
896 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
897 * in the staging RXON flag structure based on the phymode
898 */
bb8c093b 899static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv, u8 phymode, u16 channel)
b481de9c 900{
bb8c093b 901 if (!iwl3945_get_channel_info(priv, phymode, channel)) {
b481de9c
ZY
902 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
903 channel, phymode);
904 return -EINVAL;
905 }
906
907 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
908 (priv->phymode == phymode))
909 return 0;
910
911 priv->staging_rxon.channel = cpu_to_le16(channel);
912 if (phymode == MODE_IEEE80211A)
913 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
914 else
915 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
916
917 priv->phymode = phymode;
918
919 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, phymode);
920
921 return 0;
922}
923
924/**
bb8c093b 925 * iwl3945_check_rxon_cmd - validate RXON structure is valid
b481de9c
ZY
926 *
927 * NOTE: This is really only useful during development and can eventually
928 * be #ifdef'd out once the driver is stable and folks aren't actively
929 * making changes
930 */
bb8c093b 931static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd *rxon)
b481de9c
ZY
932{
933 int error = 0;
934 int counter = 1;
935
936 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
937 error |= le32_to_cpu(rxon->flags &
938 (RXON_FLG_TGJ_NARROW_BAND_MSK |
939 RXON_FLG_RADAR_DETECT_MSK));
940 if (error)
941 IWL_WARNING("check 24G fields %d | %d\n",
942 counter++, error);
943 } else {
944 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
945 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
946 if (error)
947 IWL_WARNING("check 52 fields %d | %d\n",
948 counter++, error);
949 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
950 if (error)
951 IWL_WARNING("check 52 CCK %d | %d\n",
952 counter++, error);
953 }
954 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
955 if (error)
956 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
957
958 /* make sure basic rates 6Mbps and 1Mbps are supported */
959 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
960 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
961 if (error)
962 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
963
964 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
965 if (error)
966 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
967
968 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
969 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
970 if (error)
971 IWL_WARNING("check CCK and short slot %d | %d\n",
972 counter++, error);
973
974 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
975 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
976 if (error)
977 IWL_WARNING("check CCK & auto detect %d | %d\n",
978 counter++, error);
979
980 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
981 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
982 if (error)
983 IWL_WARNING("check TGG and auto detect %d | %d\n",
984 counter++, error);
985
986 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
987 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
988 RXON_FLG_ANT_A_MSK)) == 0);
989 if (error)
990 IWL_WARNING("check antenna %d %d\n", counter++, error);
991
992 if (error)
993 IWL_WARNING("Tuning to channel %d\n",
994 le16_to_cpu(rxon->channel));
995
996 if (error) {
bb8c093b 997 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
b481de9c
ZY
998 return -1;
999 }
1000 return 0;
1001}
1002
1003/**
9fbab516 1004 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
01ebd063 1005 * @priv: staging_rxon is compared to active_rxon
b481de9c 1006 *
9fbab516
BC
1007 * If the RXON structure is changing enough to require a new tune,
1008 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
1009 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
b481de9c 1010 */
bb8c093b 1011static int iwl3945_full_rxon_required(struct iwl3945_priv *priv)
b481de9c
ZY
1012{
1013
1014 /* These items are only settable from the full RXON command */
1015 if (!(priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ||
1016 compare_ether_addr(priv->staging_rxon.bssid_addr,
1017 priv->active_rxon.bssid_addr) ||
1018 compare_ether_addr(priv->staging_rxon.node_addr,
1019 priv->active_rxon.node_addr) ||
1020 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
1021 priv->active_rxon.wlap_bssid_addr) ||
1022 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
1023 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
1024 (priv->staging_rxon.air_propagation !=
1025 priv->active_rxon.air_propagation) ||
1026 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
1027 return 1;
1028
1029 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
1030 * be updated with the RXON_ASSOC command -- however only some
1031 * flag transitions are allowed using RXON_ASSOC */
1032
1033 /* Check if we are not switching bands */
1034 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
1035 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
1036 return 1;
1037
1038 /* Check if we are switching association toggle */
1039 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
1040 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
1041 return 1;
1042
1043 return 0;
1044}
1045
bb8c093b 1046static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv)
b481de9c
ZY
1047{
1048 int rc = 0;
bb8c093b
CH
1049 struct iwl3945_rx_packet *res = NULL;
1050 struct iwl3945_rxon_assoc_cmd rxon_assoc;
1051 struct iwl3945_host_cmd cmd = {
b481de9c
ZY
1052 .id = REPLY_RXON_ASSOC,
1053 .len = sizeof(rxon_assoc),
1054 .meta.flags = CMD_WANT_SKB,
1055 .data = &rxon_assoc,
1056 };
bb8c093b
CH
1057 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon;
1058 const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon;
b481de9c
ZY
1059
1060 if ((rxon1->flags == rxon2->flags) &&
1061 (rxon1->filter_flags == rxon2->filter_flags) &&
1062 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1063 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
1064 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
1065 return 0;
1066 }
1067
1068 rxon_assoc.flags = priv->staging_rxon.flags;
1069 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1070 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1071 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1072 rxon_assoc.reserved = 0;
1073
bb8c093b 1074 rc = iwl3945_send_cmd_sync(priv, &cmd);
b481de9c
ZY
1075 if (rc)
1076 return rc;
1077
bb8c093b 1078 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
b481de9c
ZY
1079 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1080 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1081 rc = -EIO;
1082 }
1083
1084 priv->alloc_rxb_skb--;
1085 dev_kfree_skb_any(cmd.meta.u.skb);
1086
1087 return rc;
1088}
1089
1090/**
bb8c093b 1091 * iwl3945_commit_rxon - commit staging_rxon to hardware
b481de9c 1092 *
01ebd063 1093 * The RXON command in staging_rxon is committed to the hardware and
b481de9c
ZY
1094 * the active_rxon structure is updated with the new data. This
1095 * function correctly transitions out of the RXON_ASSOC_MSK state if
1096 * a HW tune is required based on the RXON structure changes.
1097 */
bb8c093b 1098static int iwl3945_commit_rxon(struct iwl3945_priv *priv)
b481de9c
ZY
1099{
1100 /* cast away the const for active_rxon in this function */
bb8c093b 1101 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
b481de9c 1102 int rc = 0;
0795af57 1103 DECLARE_MAC_BUF(mac);
b481de9c 1104
bb8c093b 1105 if (!iwl3945_is_alive(priv))
b481de9c
ZY
1106 return -1;
1107
1108 /* always get timestamp with Rx frame */
1109 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1110
1111 /* select antenna */
1112 priv->staging_rxon.flags &=
1113 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1114 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1115
bb8c093b 1116 rc = iwl3945_check_rxon_cmd(&priv->staging_rxon);
b481de9c
ZY
1117 if (rc) {
1118 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1119 return -EINVAL;
1120 }
1121
1122 /* If we don't need to send a full RXON, we can use
bb8c093b 1123 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
b481de9c 1124 * and other flags for the current radio configuration. */
bb8c093b
CH
1125 if (!iwl3945_full_rxon_required(priv)) {
1126 rc = iwl3945_send_rxon_assoc(priv);
b481de9c
ZY
1127 if (rc) {
1128 IWL_ERROR("Error setting RXON_ASSOC "
1129 "configuration (%d).\n", rc);
1130 return rc;
1131 }
1132
1133 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1134
1135 return 0;
1136 }
1137
1138 /* If we are currently associated and the new config requires
1139 * an RXON_ASSOC and the new config wants the associated mask enabled,
1140 * we must clear the associated from the active configuration
1141 * before we apply the new config */
bb8c093b 1142 if (iwl3945_is_associated(priv) &&
b481de9c
ZY
1143 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1144 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1145 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1146
bb8c093b
CH
1147 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1148 sizeof(struct iwl3945_rxon_cmd),
b481de9c
ZY
1149 &priv->active_rxon);
1150
1151 /* If the mask clearing failed then we set
1152 * active_rxon back to what it was previously */
1153 if (rc) {
1154 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1155 IWL_ERROR("Error clearing ASSOC_MSK on current "
1156 "configuration (%d).\n", rc);
1157 return rc;
1158 }
b481de9c
ZY
1159 }
1160
1161 IWL_DEBUG_INFO("Sending RXON\n"
1162 "* with%s RXON_FILTER_ASSOC_MSK\n"
1163 "* channel = %d\n"
0795af57 1164 "* bssid = %s\n",
b481de9c
ZY
1165 ((priv->staging_rxon.filter_flags &
1166 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1167 le16_to_cpu(priv->staging_rxon.channel),
0795af57 1168 print_mac(mac, priv->staging_rxon.bssid_addr));
b481de9c
ZY
1169
1170 /* Apply the new configuration */
bb8c093b
CH
1171 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1172 sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon);
b481de9c
ZY
1173 if (rc) {
1174 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1175 return rc;
1176 }
1177
1178 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1179
bb8c093b 1180 iwl3945_clear_stations_table(priv);
556f8db7 1181
b481de9c
ZY
1182 /* If we issue a new RXON command which required a tune then we must
1183 * send a new TXPOWER command or we won't be able to Tx any frames */
bb8c093b 1184 rc = iwl3945_hw_reg_send_txpower(priv);
b481de9c
ZY
1185 if (rc) {
1186 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1187 return rc;
1188 }
1189
1190 /* Add the broadcast address so we can send broadcast frames */
bb8c093b 1191 if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) ==
b481de9c
ZY
1192 IWL_INVALID_STATION) {
1193 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1194 return -EIO;
1195 }
1196
1197 /* If we have set the ASSOC_MSK and we are in BSS mode then
1198 * add the IWL_AP_ID to the station rate table */
bb8c093b 1199 if (iwl3945_is_associated(priv) &&
b481de9c 1200 (priv->iw_mode == IEEE80211_IF_TYPE_STA))
bb8c093b 1201 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
b481de9c
ZY
1202 == IWL_INVALID_STATION) {
1203 IWL_ERROR("Error adding AP address for transmit.\n");
1204 return -EIO;
1205 }
1206
1207 /* Init the hardware's rate fallback order based on the
1208 * phymode */
1209 rc = iwl3945_init_hw_rate_table(priv);
1210 if (rc) {
1211 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1212 return -EIO;
1213 }
1214
1215 return 0;
1216}
1217
bb8c093b 1218static int iwl3945_send_bt_config(struct iwl3945_priv *priv)
b481de9c 1219{
bb8c093b 1220 struct iwl3945_bt_cmd bt_cmd = {
b481de9c
ZY
1221 .flags = 3,
1222 .lead_time = 0xAA,
1223 .max_kill = 1,
1224 .kill_ack_mask = 0,
1225 .kill_cts_mask = 0,
1226 };
1227
bb8c093b
CH
1228 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1229 sizeof(struct iwl3945_bt_cmd), &bt_cmd);
b481de9c
ZY
1230}
1231
bb8c093b 1232static int iwl3945_send_scan_abort(struct iwl3945_priv *priv)
b481de9c
ZY
1233{
1234 int rc = 0;
bb8c093b
CH
1235 struct iwl3945_rx_packet *res;
1236 struct iwl3945_host_cmd cmd = {
b481de9c
ZY
1237 .id = REPLY_SCAN_ABORT_CMD,
1238 .meta.flags = CMD_WANT_SKB,
1239 };
1240
1241 /* If there isn't a scan actively going on in the hardware
1242 * then we are in between scan bands and not actually
1243 * actively scanning, so don't send the abort command */
1244 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1245 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1246 return 0;
1247 }
1248
bb8c093b 1249 rc = iwl3945_send_cmd_sync(priv, &cmd);
b481de9c
ZY
1250 if (rc) {
1251 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1252 return rc;
1253 }
1254
bb8c093b 1255 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
b481de9c
ZY
1256 if (res->u.status != CAN_ABORT_STATUS) {
1257 /* The scan abort will return 1 for success or
1258 * 2 for "failure". A failure condition can be
1259 * due to simply not being in an active scan which
1260 * can occur if we send the scan abort before we
1261 * the microcode has notified us that a scan is
1262 * completed. */
1263 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1264 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1265 clear_bit(STATUS_SCAN_HW, &priv->status);
1266 }
1267
1268 dev_kfree_skb_any(cmd.meta.u.skb);
1269
1270 return rc;
1271}
1272
bb8c093b
CH
1273static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv,
1274 struct iwl3945_cmd *cmd,
b481de9c
ZY
1275 struct sk_buff *skb)
1276{
1277 return 1;
1278}
1279
1280/*
1281 * CARD_STATE_CMD
1282 *
9fbab516 1283 * Use: Sets the device's internal card state to enable, disable, or halt
b481de9c
ZY
1284 *
1285 * When in the 'enable' state the card operates as normal.
1286 * When in the 'disable' state, the card enters into a low power mode.
1287 * When in the 'halt' state, the card is shut down and must be fully
1288 * restarted to come back on.
1289 */
bb8c093b 1290static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag)
b481de9c 1291{
bb8c093b 1292 struct iwl3945_host_cmd cmd = {
b481de9c
ZY
1293 .id = REPLY_CARD_STATE_CMD,
1294 .len = sizeof(u32),
1295 .data = &flags,
1296 .meta.flags = meta_flag,
1297 };
1298
1299 if (meta_flag & CMD_ASYNC)
bb8c093b 1300 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
b481de9c 1301
bb8c093b 1302 return iwl3945_send_cmd(priv, &cmd);
b481de9c
ZY
1303}
1304
bb8c093b
CH
1305static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv,
1306 struct iwl3945_cmd *cmd, struct sk_buff *skb)
b481de9c 1307{
bb8c093b 1308 struct iwl3945_rx_packet *res = NULL;
b481de9c
ZY
1309
1310 if (!skb) {
1311 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1312 return 1;
1313 }
1314
bb8c093b 1315 res = (struct iwl3945_rx_packet *)skb->data;
b481de9c
ZY
1316 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1317 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1318 res->hdr.flags);
1319 return 1;
1320 }
1321
1322 switch (res->u.add_sta.status) {
1323 case ADD_STA_SUCCESS_MSK:
1324 break;
1325 default:
1326 break;
1327 }
1328
1329 /* We didn't cache the SKB; let the caller free it */
1330 return 1;
1331}
1332
bb8c093b
CH
1333int iwl3945_send_add_station(struct iwl3945_priv *priv,
1334 struct iwl3945_addsta_cmd *sta, u8 flags)
b481de9c 1335{
bb8c093b 1336 struct iwl3945_rx_packet *res = NULL;
b481de9c 1337 int rc = 0;
bb8c093b 1338 struct iwl3945_host_cmd cmd = {
b481de9c 1339 .id = REPLY_ADD_STA,
bb8c093b 1340 .len = sizeof(struct iwl3945_addsta_cmd),
b481de9c
ZY
1341 .meta.flags = flags,
1342 .data = sta,
1343 };
1344
1345 if (flags & CMD_ASYNC)
bb8c093b 1346 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
b481de9c
ZY
1347 else
1348 cmd.meta.flags |= CMD_WANT_SKB;
1349
bb8c093b 1350 rc = iwl3945_send_cmd(priv, &cmd);
b481de9c
ZY
1351
1352 if (rc || (flags & CMD_ASYNC))
1353 return rc;
1354
bb8c093b 1355 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
b481de9c
ZY
1356 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1357 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1358 res->hdr.flags);
1359 rc = -EIO;
1360 }
1361
1362 if (rc == 0) {
1363 switch (res->u.add_sta.status) {
1364 case ADD_STA_SUCCESS_MSK:
1365 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1366 break;
1367 default:
1368 rc = -EIO;
1369 IWL_WARNING("REPLY_ADD_STA failed\n");
1370 break;
1371 }
1372 }
1373
1374 priv->alloc_rxb_skb--;
1375 dev_kfree_skb_any(cmd.meta.u.skb);
1376
1377 return rc;
1378}
1379
bb8c093b 1380static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv,
b481de9c
ZY
1381 struct ieee80211_key_conf *keyconf,
1382 u8 sta_id)
1383{
1384 unsigned long flags;
1385 __le16 key_flags = 0;
1386
1387 switch (keyconf->alg) {
1388 case ALG_CCMP:
1389 key_flags |= STA_KEY_FLG_CCMP;
1390 key_flags |= cpu_to_le16(
1391 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1392 key_flags &= ~STA_KEY_FLG_INVALID;
1393 break;
1394 case ALG_TKIP:
1395 case ALG_WEP:
b481de9c
ZY
1396 default:
1397 return -EINVAL;
1398 }
1399 spin_lock_irqsave(&priv->sta_lock, flags);
1400 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1401 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1402 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1403 keyconf->keylen);
1404
1405 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1406 keyconf->keylen);
1407 priv->stations[sta_id].sta.key.key_flags = key_flags;
1408 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1409 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1410
1411 spin_unlock_irqrestore(&priv->sta_lock, flags);
1412
1413 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
bb8c093b 1414 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
b481de9c
ZY
1415 return 0;
1416}
1417
bb8c093b 1418static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id)
b481de9c
ZY
1419{
1420 unsigned long flags;
1421
1422 spin_lock_irqsave(&priv->sta_lock, flags);
bb8c093b
CH
1423 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1424 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl3945_keyinfo));
b481de9c
ZY
1425 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1426 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1427 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1428 spin_unlock_irqrestore(&priv->sta_lock, flags);
1429
1430 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
bb8c093b 1431 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
b481de9c
ZY
1432 return 0;
1433}
1434
bb8c093b 1435static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
b481de9c
ZY
1436{
1437 struct list_head *element;
1438
1439 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1440 priv->frames_count);
1441
1442 while (!list_empty(&priv->free_frames)) {
1443 element = priv->free_frames.next;
1444 list_del(element);
bb8c093b 1445 kfree(list_entry(element, struct iwl3945_frame, list));
b481de9c
ZY
1446 priv->frames_count--;
1447 }
1448
1449 if (priv->frames_count) {
1450 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1451 priv->frames_count);
1452 priv->frames_count = 0;
1453 }
1454}
1455
bb8c093b 1456static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
b481de9c 1457{
bb8c093b 1458 struct iwl3945_frame *frame;
b481de9c
ZY
1459 struct list_head *element;
1460 if (list_empty(&priv->free_frames)) {
1461 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1462 if (!frame) {
1463 IWL_ERROR("Could not allocate frame!\n");
1464 return NULL;
1465 }
1466
1467 priv->frames_count++;
1468 return frame;
1469 }
1470
1471 element = priv->free_frames.next;
1472 list_del(element);
bb8c093b 1473 return list_entry(element, struct iwl3945_frame, list);
b481de9c
ZY
1474}
1475
bb8c093b 1476static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
b481de9c
ZY
1477{
1478 memset(frame, 0, sizeof(*frame));
1479 list_add(&frame->list, &priv->free_frames);
1480}
1481
bb8c093b 1482unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
b481de9c
ZY
1483 struct ieee80211_hdr *hdr,
1484 const u8 *dest, int left)
1485{
1486
bb8c093b 1487 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
b481de9c
ZY
1488 ((priv->iw_mode != IEEE80211_IF_TYPE_IBSS) &&
1489 (priv->iw_mode != IEEE80211_IF_TYPE_AP)))
1490 return 0;
1491
1492 if (priv->ibss_beacon->len > left)
1493 return 0;
1494
1495 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1496
1497 return priv->ibss_beacon->len;
1498}
1499
bb8c093b 1500static u8 iwl3945_rate_get_lowest_plcp(int rate_mask)
b481de9c
ZY
1501{
1502 u8 i;
1503
1504 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
bb8c093b 1505 i = iwl3945_rates[i].next_ieee) {
b481de9c 1506 if (rate_mask & (1 << i))
bb8c093b 1507 return iwl3945_rates[i].plcp;
b481de9c
ZY
1508 }
1509
1510 return IWL_RATE_INVALID;
1511}
1512
bb8c093b 1513static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
b481de9c 1514{
bb8c093b 1515 struct iwl3945_frame *frame;
b481de9c
ZY
1516 unsigned int frame_size;
1517 int rc;
1518 u8 rate;
1519
bb8c093b 1520 frame = iwl3945_get_free_frame(priv);
b481de9c
ZY
1521
1522 if (!frame) {
1523 IWL_ERROR("Could not obtain free frame buffer for beacon "
1524 "command.\n");
1525 return -ENOMEM;
1526 }
1527
1528 if (!(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)) {
bb8c093b 1529 rate = iwl3945_rate_get_lowest_plcp(priv->active_rate_basic &
b481de9c
ZY
1530 0xFF0);
1531 if (rate == IWL_INVALID_RATE)
1532 rate = IWL_RATE_6M_PLCP;
1533 } else {
bb8c093b 1534 rate = iwl3945_rate_get_lowest_plcp(priv->active_rate_basic & 0xF);
b481de9c
ZY
1535 if (rate == IWL_INVALID_RATE)
1536 rate = IWL_RATE_1M_PLCP;
1537 }
1538
bb8c093b 1539 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
b481de9c 1540
bb8c093b 1541 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
b481de9c
ZY
1542 &frame->u.cmd[0]);
1543
bb8c093b 1544 iwl3945_free_frame(priv, frame);
b481de9c
ZY
1545
1546 return rc;
1547}
1548
1549/******************************************************************************
1550 *
1551 * EEPROM related functions
1552 *
1553 ******************************************************************************/
1554
bb8c093b 1555static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
b481de9c
ZY
1556{
1557 memcpy(mac, priv->eeprom.mac_address, 6);
1558}
1559
1560/**
bb8c093b 1561 * iwl3945_eeprom_init - read EEPROM contents
b481de9c 1562 *
6440adb5 1563 * Load the EEPROM contents from adapter into priv->eeprom
b481de9c
ZY
1564 *
1565 * NOTE: This routine uses the non-debug IO access functions.
1566 */
bb8c093b 1567int iwl3945_eeprom_init(struct iwl3945_priv *priv)
b481de9c 1568{
0e5ce1f3 1569 __le16 *e = (__le16 *)&priv->eeprom;
bb8c093b 1570 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
b481de9c
ZY
1571 u32 r;
1572 int sz = sizeof(priv->eeprom);
1573 int rc;
1574 int i;
1575 u16 addr;
1576
1577 /* The EEPROM structure has several padding buffers within it
1578 * and when adding new EEPROM maps is subject to programmer errors
1579 * which may be very difficult to identify without explicitly
1580 * checking the resulting size of the eeprom map. */
1581 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1582
1583 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
1584 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x", gp);
1585 return -ENOENT;
1586 }
1587
6440adb5 1588 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
bb8c093b 1589 rc = iwl3945_eeprom_acquire_semaphore(priv);
b481de9c 1590 if (rc < 0) {
91e17473 1591 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
b481de9c
ZY
1592 return -ENOENT;
1593 }
1594
1595 /* eeprom is an array of 16bit values */
1596 for (addr = 0; addr < sz; addr += sizeof(u16)) {
bb8c093b
CH
1597 _iwl3945_write32(priv, CSR_EEPROM_REG, addr << 1);
1598 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
b481de9c
ZY
1599
1600 for (i = 0; i < IWL_EEPROM_ACCESS_TIMEOUT;
1601 i += IWL_EEPROM_ACCESS_DELAY) {
bb8c093b 1602 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
b481de9c
ZY
1603 if (r & CSR_EEPROM_REG_READ_VALID_MSK)
1604 break;
1605 udelay(IWL_EEPROM_ACCESS_DELAY);
1606 }
1607
1608 if (!(r & CSR_EEPROM_REG_READ_VALID_MSK)) {
1609 IWL_ERROR("Time out reading EEPROM[%d]", addr);
1610 return -ETIMEDOUT;
1611 }
0e5ce1f3 1612 e[addr / 2] = cpu_to_le16(r >> 16);
b481de9c
ZY
1613 }
1614
1615 return 0;
1616}
1617
1618/******************************************************************************
1619 *
1620 * Misc. internal state and helper functions
1621 *
1622 ******************************************************************************/
c8b0e6e1 1623#ifdef CONFIG_IWL3945_DEBUG
b481de9c
ZY
1624
1625/**
bb8c093b 1626 * iwl3945_report_frame - dump frame to syslog during debug sessions
b481de9c 1627 *
9fbab516 1628 * You may hack this function to show different aspects of received frames,
b481de9c
ZY
1629 * including selective frame dumps.
1630 * group100 parameter selects whether to show 1 out of 100 good frames.
b481de9c 1631 */
bb8c093b
CH
1632void iwl3945_report_frame(struct iwl3945_priv *priv,
1633 struct iwl3945_rx_packet *pkt,
b481de9c
ZY
1634 struct ieee80211_hdr *header, int group100)
1635{
1636 u32 to_us;
1637 u32 print_summary = 0;
1638 u32 print_dump = 0; /* set to 1 to dump all frames' contents */
1639 u32 hundred = 0;
1640 u32 dataframe = 0;
1641 u16 fc;
1642 u16 seq_ctl;
1643 u16 channel;
1644 u16 phy_flags;
1645 int rate_sym;
1646 u16 length;
1647 u16 status;
1648 u16 bcn_tmr;
1649 u32 tsf_low;
1650 u64 tsf;
1651 u8 rssi;
1652 u8 agc;
1653 u16 sig_avg;
1654 u16 noise_diff;
bb8c093b
CH
1655 struct iwl3945_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt);
1656 struct iwl3945_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt);
1657 struct iwl3945_rx_frame_end *rx_end = IWL_RX_END(pkt);
b481de9c
ZY
1658 u8 *data = IWL_RX_DATA(pkt);
1659
1660 /* MAC header */
1661 fc = le16_to_cpu(header->frame_control);
1662 seq_ctl = le16_to_cpu(header->seq_ctrl);
1663
1664 /* metadata */
1665 channel = le16_to_cpu(rx_hdr->channel);
1666 phy_flags = le16_to_cpu(rx_hdr->phy_flags);
1667 rate_sym = rx_hdr->rate;
1668 length = le16_to_cpu(rx_hdr->len);
1669
1670 /* end-of-frame status and timestamp */
1671 status = le32_to_cpu(rx_end->status);
1672 bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp);
1673 tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff;
1674 tsf = le64_to_cpu(rx_end->timestamp);
1675
1676 /* signal statistics */
1677 rssi = rx_stats->rssi;
1678 agc = rx_stats->agc;
1679 sig_avg = le16_to_cpu(rx_stats->sig_avg);
1680 noise_diff = le16_to_cpu(rx_stats->noise_diff);
1681
1682 to_us = !compare_ether_addr(header->addr1, priv->mac_addr);
1683
1684 /* if data frame is to us and all is good,
1685 * (optionally) print summary for only 1 out of every 100 */
1686 if (to_us && (fc & ~IEEE80211_FCTL_PROTECTED) ==
1687 (IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) {
1688 dataframe = 1;
1689 if (!group100)
1690 print_summary = 1; /* print each frame */
1691 else if (priv->framecnt_to_us < 100) {
1692 priv->framecnt_to_us++;
1693 print_summary = 0;
1694 } else {
1695 priv->framecnt_to_us = 0;
1696 print_summary = 1;
1697 hundred = 1;
1698 }
1699 } else {
1700 /* print summary for all other frames */
1701 print_summary = 1;
1702 }
1703
1704 if (print_summary) {
1705 char *title;
1706 u32 rate;
1707
1708 if (hundred)
1709 title = "100Frames";
1710 else if (fc & IEEE80211_FCTL_RETRY)
1711 title = "Retry";
1712 else if (ieee80211_is_assoc_response(fc))
1713 title = "AscRsp";
1714 else if (ieee80211_is_reassoc_response(fc))
1715 title = "RasRsp";
1716 else if (ieee80211_is_probe_response(fc)) {
1717 title = "PrbRsp";
1718 print_dump = 1; /* dump frame contents */
1719 } else if (ieee80211_is_beacon(fc)) {
1720 title = "Beacon";
1721 print_dump = 1; /* dump frame contents */
1722 } else if (ieee80211_is_atim(fc))
1723 title = "ATIM";
1724 else if (ieee80211_is_auth(fc))
1725 title = "Auth";
1726 else if (ieee80211_is_deauth(fc))
1727 title = "DeAuth";
1728 else if (ieee80211_is_disassoc(fc))
1729 title = "DisAssoc";
1730 else
1731 title = "Frame";
1732
bb8c093b 1733 rate = iwl3945_rate_index_from_plcp(rate_sym);
b481de9c
ZY
1734 if (rate == -1)
1735 rate = 0;
1736 else
bb8c093b 1737 rate = iwl3945_rates[rate].ieee / 2;
b481de9c
ZY
1738
1739 /* print frame summary.
1740 * MAC addresses show just the last byte (for brevity),
1741 * but you can hack it to show more, if you'd like to. */
1742 if (dataframe)
1743 IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, "
1744 "len=%u, rssi=%d, chnl=%d, rate=%u, \n",
1745 title, fc, header->addr1[5],
1746 length, rssi, channel, rate);
1747 else {
1748 /* src/dst addresses assume managed mode */
1749 IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, "
1750 "src=0x%02x, rssi=%u, tim=%lu usec, "
1751 "phy=0x%02x, chnl=%d\n",
1752 title, fc, header->addr1[5],
1753 header->addr3[5], rssi,
1754 tsf_low - priv->scan_start_tsf,
1755 phy_flags, channel);
1756 }
1757 }
1758 if (print_dump)
bb8c093b 1759 iwl3945_print_hex_dump(IWL_DL_RX, data, length);
b481de9c
ZY
1760}
1761#endif
1762
bb8c093b 1763static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
b481de9c
ZY
1764{
1765 if (priv->hw_setting.shared_virt)
1766 pci_free_consistent(priv->pci_dev,
bb8c093b 1767 sizeof(struct iwl3945_shared),
b481de9c
ZY
1768 priv->hw_setting.shared_virt,
1769 priv->hw_setting.shared_phys);
1770}
1771
1772/**
bb8c093b 1773 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
b481de9c
ZY
1774 *
1775 * return : set the bit for each supported rate insert in ie
1776 */
bb8c093b 1777static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
c7c46676 1778 u16 basic_rate, int *left)
b481de9c
ZY
1779{
1780 u16 ret_rates = 0, bit;
1781 int i;
c7c46676
TW
1782 u8 *cnt = ie;
1783 u8 *rates = ie + 1;
b481de9c
ZY
1784
1785 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1786 if (bit & supported_rate) {
1787 ret_rates |= bit;
bb8c093b 1788 rates[*cnt] = iwl3945_rates[i].ieee |
c7c46676
TW
1789 ((bit & basic_rate) ? 0x80 : 0x00);
1790 (*cnt)++;
1791 (*left)--;
1792 if ((*left <= 0) ||
1793 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
b481de9c
ZY
1794 break;
1795 }
1796 }
1797
1798 return ret_rates;
1799}
1800
1801/**
bb8c093b 1802 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
b481de9c 1803 */
bb8c093b 1804static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
b481de9c
ZY
1805 struct ieee80211_mgmt *frame,
1806 int left, int is_direct)
1807{
1808 int len = 0;
1809 u8 *pos = NULL;
c7c46676 1810 u16 active_rates, ret_rates, cck_rates;
b481de9c
ZY
1811
1812 /* Make sure there is enough space for the probe request,
1813 * two mandatory IEs and the data */
1814 left -= 24;
1815 if (left < 0)
1816 return 0;
1817 len += 24;
1818
1819 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
bb8c093b 1820 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
b481de9c 1821 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
bb8c093b 1822 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
b481de9c
ZY
1823 frame->seq_ctrl = 0;
1824
1825 /* fill in our indirect SSID IE */
1826 /* ...next IE... */
1827
1828 left -= 2;
1829 if (left < 0)
1830 return 0;
1831 len += 2;
1832 pos = &(frame->u.probe_req.variable[0]);
1833 *pos++ = WLAN_EID_SSID;
1834 *pos++ = 0;
1835
1836 /* fill in our direct SSID IE... */
1837 if (is_direct) {
1838 /* ...next IE... */
1839 left -= 2 + priv->essid_len;
1840 if (left < 0)
1841 return 0;
1842 /* ... fill it in... */
1843 *pos++ = WLAN_EID_SSID;
1844 *pos++ = priv->essid_len;
1845 memcpy(pos, priv->essid, priv->essid_len);
1846 pos += priv->essid_len;
1847 len += 2 + priv->essid_len;
1848 }
1849
1850 /* fill in supported rate */
1851 /* ...next IE... */
1852 left -= 2;
1853 if (left < 0)
1854 return 0;
c7c46676 1855
b481de9c
ZY
1856 /* ... fill it in... */
1857 *pos++ = WLAN_EID_SUPP_RATES;
1858 *pos = 0;
c7c46676
TW
1859
1860 priv->active_rate = priv->rates_mask;
1861 active_rates = priv->active_rate;
b481de9c
ZY
1862 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1863
c7c46676 1864 cck_rates = IWL_CCK_RATES_MASK & active_rates;
bb8c093b 1865 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
c7c46676
TW
1866 priv->active_rate_basic, &left);
1867 active_rates &= ~ret_rates;
1868
bb8c093b 1869 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
c7c46676
TW
1870 priv->active_rate_basic, &left);
1871 active_rates &= ~ret_rates;
1872
b481de9c
ZY
1873 len += 2 + *pos;
1874 pos += (*pos) + 1;
c7c46676 1875 if (active_rates == 0)
b481de9c
ZY
1876 goto fill_end;
1877
1878 /* fill in supported extended rate */
1879 /* ...next IE... */
1880 left -= 2;
1881 if (left < 0)
1882 return 0;
1883 /* ... fill it in... */
1884 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1885 *pos = 0;
bb8c093b 1886 iwl3945_supported_rate_to_ie(pos, active_rates,
c7c46676 1887 priv->active_rate_basic, &left);
b481de9c
ZY
1888 if (*pos > 0)
1889 len += 2 + *pos;
1890
1891 fill_end:
1892 return (u16)len;
1893}
1894
1895/*
1896 * QoS support
1897*/
c8b0e6e1 1898#ifdef CONFIG_IWL3945_QOS
bb8c093b
CH
1899static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
1900 struct iwl3945_qosparam_cmd *qos)
b481de9c
ZY
1901{
1902
bb8c093b
CH
1903 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1904 sizeof(struct iwl3945_qosparam_cmd), qos);
b481de9c
ZY
1905}
1906
bb8c093b 1907static void iwl3945_reset_qos(struct iwl3945_priv *priv)
b481de9c
ZY
1908{
1909 u16 cw_min = 15;
1910 u16 cw_max = 1023;
1911 u8 aifs = 2;
1912 u8 is_legacy = 0;
1913 unsigned long flags;
1914 int i;
1915
1916 spin_lock_irqsave(&priv->lock, flags);
1917 priv->qos_data.qos_active = 0;
1918
1919 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS) {
1920 if (priv->qos_data.qos_enable)
1921 priv->qos_data.qos_active = 1;
1922 if (!(priv->active_rate & 0xfff0)) {
1923 cw_min = 31;
1924 is_legacy = 1;
1925 }
1926 } else if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
1927 if (priv->qos_data.qos_enable)
1928 priv->qos_data.qos_active = 1;
1929 } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) {
1930 cw_min = 31;
1931 is_legacy = 1;
1932 }
1933
1934 if (priv->qos_data.qos_active)
1935 aifs = 3;
1936
1937 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1938 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1939 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1940 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1941 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1942
1943 if (priv->qos_data.qos_active) {
1944 i = 1;
1945 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1946 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1947 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1948 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1949 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1950
1951 i = 2;
1952 priv->qos_data.def_qos_parm.ac[i].cw_min =
1953 cpu_to_le16((cw_min + 1) / 2 - 1);
1954 priv->qos_data.def_qos_parm.ac[i].cw_max =
1955 cpu_to_le16(cw_max);
1956 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1957 if (is_legacy)
1958 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1959 cpu_to_le16(6016);
1960 else
1961 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1962 cpu_to_le16(3008);
1963 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1964
1965 i = 3;
1966 priv->qos_data.def_qos_parm.ac[i].cw_min =
1967 cpu_to_le16((cw_min + 1) / 4 - 1);
1968 priv->qos_data.def_qos_parm.ac[i].cw_max =
1969 cpu_to_le16((cw_max + 1) / 2 - 1);
1970 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1971 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1972 if (is_legacy)
1973 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1974 cpu_to_le16(3264);
1975 else
1976 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1977 cpu_to_le16(1504);
1978 } else {
1979 for (i = 1; i < 4; i++) {
1980 priv->qos_data.def_qos_parm.ac[i].cw_min =
1981 cpu_to_le16(cw_min);
1982 priv->qos_data.def_qos_parm.ac[i].cw_max =
1983 cpu_to_le16(cw_max);
1984 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1985 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1986 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1987 }
1988 }
1989 IWL_DEBUG_QOS("set QoS to default \n");
1990
1991 spin_unlock_irqrestore(&priv->lock, flags);
1992}
1993
bb8c093b 1994static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
b481de9c
ZY
1995{
1996 unsigned long flags;
1997
b481de9c
ZY
1998 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1999 return;
2000
2001 if (!priv->qos_data.qos_enable)
2002 return;
2003
2004 spin_lock_irqsave(&priv->lock, flags);
2005 priv->qos_data.def_qos_parm.qos_flags = 0;
2006
2007 if (priv->qos_data.qos_cap.q_AP.queue_request &&
2008 !priv->qos_data.qos_cap.q_AP.txop_request)
2009 priv->qos_data.def_qos_parm.qos_flags |=
2010 QOS_PARAM_FLG_TXOP_TYPE_MSK;
2011
2012 if (priv->qos_data.qos_active)
2013 priv->qos_data.def_qos_parm.qos_flags |=
2014 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
2015
2016 spin_unlock_irqrestore(&priv->lock, flags);
2017
bb8c093b 2018 if (force || iwl3945_is_associated(priv)) {
b481de9c
ZY
2019 IWL_DEBUG_QOS("send QoS cmd with Qos active %d \n",
2020 priv->qos_data.qos_active);
2021
bb8c093b 2022 iwl3945_send_qos_params_command(priv,
b481de9c
ZY
2023 &(priv->qos_data.def_qos_parm));
2024 }
2025}
2026
c8b0e6e1 2027#endif /* CONFIG_IWL3945_QOS */
b481de9c
ZY
2028/*
2029 * Power management (not Tx power!) functions
2030 */
2031#define MSEC_TO_USEC 1024
2032
2033#define NOSLP __constant_cpu_to_le32(0)
2034#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
2035#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
2036#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
2037 __constant_cpu_to_le32(X1), \
2038 __constant_cpu_to_le32(X2), \
2039 __constant_cpu_to_le32(X3), \
2040 __constant_cpu_to_le32(X4)}
2041
2042
2043/* default power management (not Tx power) table values */
2044/* for tim 0-10 */
bb8c093b 2045static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
b481de9c
ZY
2046 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2047 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
2048 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
2049 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
2050 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
2051 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
2052};
2053
2054/* for tim > 10 */
bb8c093b 2055static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
b481de9c
ZY
2056 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2057 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
2058 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
2059 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
2060 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
2061 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
2062 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
2063 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
2064 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
2065 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
2066};
2067
bb8c093b 2068int iwl3945_power_init_handle(struct iwl3945_priv *priv)
b481de9c
ZY
2069{
2070 int rc = 0, i;
bb8c093b
CH
2071 struct iwl3945_power_mgr *pow_data;
2072 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
b481de9c
ZY
2073 u16 pci_pm;
2074
2075 IWL_DEBUG_POWER("Initialize power \n");
2076
2077 pow_data = &(priv->power_data);
2078
2079 memset(pow_data, 0, sizeof(*pow_data));
2080
2081 pow_data->active_index = IWL_POWER_RANGE_0;
2082 pow_data->dtim_val = 0xffff;
2083
2084 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
2085 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
2086
2087 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
2088 if (rc != 0)
2089 return 0;
2090 else {
bb8c093b 2091 struct iwl3945_powertable_cmd *cmd;
b481de9c
ZY
2092
2093 IWL_DEBUG_POWER("adjust power command flags\n");
2094
2095 for (i = 0; i < IWL_POWER_AC; i++) {
2096 cmd = &pow_data->pwr_range_0[i].cmd;
2097
2098 if (pci_pm & 0x1)
2099 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
2100 else
2101 cmd->flags |= IWL_POWER_PCI_PM_MSK;
2102 }
2103 }
2104 return rc;
2105}
2106
bb8c093b
CH
2107static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
2108 struct iwl3945_powertable_cmd *cmd, u32 mode)
b481de9c
ZY
2109{
2110 int rc = 0, i;
2111 u8 skip;
2112 u32 max_sleep = 0;
bb8c093b 2113 struct iwl3945_power_vec_entry *range;
b481de9c 2114 u8 period = 0;
bb8c093b 2115 struct iwl3945_power_mgr *pow_data;
b481de9c
ZY
2116
2117 if (mode > IWL_POWER_INDEX_5) {
2118 IWL_DEBUG_POWER("Error invalid power mode \n");
2119 return -1;
2120 }
2121 pow_data = &(priv->power_data);
2122
2123 if (pow_data->active_index == IWL_POWER_RANGE_0)
2124 range = &pow_data->pwr_range_0[0];
2125 else
2126 range = &pow_data->pwr_range_1[1];
2127
bb8c093b 2128 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
b481de9c
ZY
2129
2130#ifdef IWL_MAC80211_DISABLE
2131 if (priv->assoc_network != NULL) {
2132 unsigned long flags;
2133
2134 period = priv->assoc_network->tim.tim_period;
2135 }
2136#endif /*IWL_MAC80211_DISABLE */
2137 skip = range[mode].no_dtim;
2138
2139 if (period == 0) {
2140 period = 1;
2141 skip = 0;
2142 }
2143
2144 if (skip == 0) {
2145 max_sleep = period;
2146 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
2147 } else {
2148 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
2149 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
2150 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
2151 }
2152
2153 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
2154 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
2155 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
2156 }
2157
2158 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
2159 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
2160 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
2161 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
2162 le32_to_cpu(cmd->sleep_interval[0]),
2163 le32_to_cpu(cmd->sleep_interval[1]),
2164 le32_to_cpu(cmd->sleep_interval[2]),
2165 le32_to_cpu(cmd->sleep_interval[3]),
2166 le32_to_cpu(cmd->sleep_interval[4]));
2167
2168 return rc;
2169}
2170
bb8c093b 2171static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
b481de9c 2172{
9a62f73b 2173 u32 uninitialized_var(final_mode);
b481de9c 2174 int rc;
bb8c093b 2175 struct iwl3945_powertable_cmd cmd;
b481de9c
ZY
2176
2177 /* If on battery, set to 3,
01ebd063 2178 * if plugged into AC power, set to CAM ("continuously aware mode"),
b481de9c
ZY
2179 * else user level */
2180 switch (mode) {
2181 case IWL_POWER_BATTERY:
2182 final_mode = IWL_POWER_INDEX_3;
2183 break;
2184 case IWL_POWER_AC:
2185 final_mode = IWL_POWER_MODE_CAM;
2186 break;
2187 default:
2188 final_mode = mode;
2189 break;
2190 }
2191
bb8c093b 2192 iwl3945_update_power_cmd(priv, &cmd, final_mode);
b481de9c 2193
bb8c093b 2194 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
b481de9c
ZY
2195
2196 if (final_mode == IWL_POWER_MODE_CAM)
2197 clear_bit(STATUS_POWER_PMI, &priv->status);
2198 else
2199 set_bit(STATUS_POWER_PMI, &priv->status);
2200
2201 return rc;
2202}
2203
bb8c093b 2204int iwl3945_is_network_packet(struct iwl3945_priv *priv, struct ieee80211_hdr *header)
b481de9c
ZY
2205{
2206 /* Filter incoming packets to determine if they are targeted toward
2207 * this network, discarding packets coming from ourselves */
2208 switch (priv->iw_mode) {
2209 case IEEE80211_IF_TYPE_IBSS: /* Header: Dest. | Source | BSSID */
2210 /* packets from our adapter are dropped (echo) */
2211 if (!compare_ether_addr(header->addr2, priv->mac_addr))
2212 return 0;
2213 /* {broad,multi}cast packets to our IBSS go through */
2214 if (is_multicast_ether_addr(header->addr1))
2215 return !compare_ether_addr(header->addr3, priv->bssid);
2216 /* packets to our adapter go through */
2217 return !compare_ether_addr(header->addr1, priv->mac_addr);
2218 case IEEE80211_IF_TYPE_STA: /* Header: Dest. | AP{BSSID} | Source */
2219 /* packets from our adapter are dropped (echo) */
2220 if (!compare_ether_addr(header->addr3, priv->mac_addr))
2221 return 0;
2222 /* {broad,multi}cast packets to our BSS go through */
2223 if (is_multicast_ether_addr(header->addr1))
2224 return !compare_ether_addr(header->addr2, priv->bssid);
2225 /* packets to our adapter go through */
2226 return !compare_ether_addr(header->addr1, priv->mac_addr);
2227 }
2228
2229 return 1;
2230}
2231
2232#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2233
bb8c093b 2234static const char *iwl3945_get_tx_fail_reason(u32 status)
b481de9c
ZY
2235{
2236 switch (status & TX_STATUS_MSK) {
2237 case TX_STATUS_SUCCESS:
2238 return "SUCCESS";
2239 TX_STATUS_ENTRY(SHORT_LIMIT);
2240 TX_STATUS_ENTRY(LONG_LIMIT);
2241 TX_STATUS_ENTRY(FIFO_UNDERRUN);
2242 TX_STATUS_ENTRY(MGMNT_ABORT);
2243 TX_STATUS_ENTRY(NEXT_FRAG);
2244 TX_STATUS_ENTRY(LIFE_EXPIRE);
2245 TX_STATUS_ENTRY(DEST_PS);
2246 TX_STATUS_ENTRY(ABORTED);
2247 TX_STATUS_ENTRY(BT_RETRY);
2248 TX_STATUS_ENTRY(STA_INVALID);
2249 TX_STATUS_ENTRY(FRAG_DROPPED);
2250 TX_STATUS_ENTRY(TID_DISABLE);
2251 TX_STATUS_ENTRY(FRAME_FLUSHED);
2252 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
2253 TX_STATUS_ENTRY(TX_LOCKED);
2254 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
2255 }
2256
2257 return "UNKNOWN";
2258}
2259
2260/**
bb8c093b 2261 * iwl3945_scan_cancel - Cancel any currently executing HW scan
b481de9c
ZY
2262 *
2263 * NOTE: priv->mutex is not required before calling this function
2264 */
bb8c093b 2265static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
b481de9c
ZY
2266{
2267 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
2268 clear_bit(STATUS_SCANNING, &priv->status);
2269 return 0;
2270 }
2271
2272 if (test_bit(STATUS_SCANNING, &priv->status)) {
2273 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2274 IWL_DEBUG_SCAN("Queuing scan abort.\n");
2275 set_bit(STATUS_SCAN_ABORTING, &priv->status);
2276 queue_work(priv->workqueue, &priv->abort_scan);
2277
2278 } else
2279 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2280
2281 return test_bit(STATUS_SCANNING, &priv->status);
2282 }
2283
2284 return 0;
2285}
2286
2287/**
bb8c093b 2288 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
b481de9c
ZY
2289 * @ms: amount of time to wait (in milliseconds) for scan to abort
2290 *
2291 * NOTE: priv->mutex must be held before calling this function
2292 */
bb8c093b 2293static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
b481de9c
ZY
2294{
2295 unsigned long now = jiffies;
2296 int ret;
2297
bb8c093b 2298 ret = iwl3945_scan_cancel(priv);
b481de9c
ZY
2299 if (ret && ms) {
2300 mutex_unlock(&priv->mutex);
2301 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2302 test_bit(STATUS_SCANNING, &priv->status))
2303 msleep(1);
2304 mutex_lock(&priv->mutex);
2305
2306 return test_bit(STATUS_SCANNING, &priv->status);
2307 }
2308
2309 return ret;
2310}
2311
bb8c093b 2312static void iwl3945_sequence_reset(struct iwl3945_priv *priv)
b481de9c
ZY
2313{
2314 /* Reset ieee stats */
2315
2316 /* We don't reset the net_device_stats (ieee->stats) on
2317 * re-association */
2318
2319 priv->last_seq_num = -1;
2320 priv->last_frag_num = -1;
2321 priv->last_packet_time = 0;
2322
bb8c093b 2323 iwl3945_scan_cancel(priv);
b481de9c
ZY
2324}
2325
2326#define MAX_UCODE_BEACON_INTERVAL 1024
2327#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2328
bb8c093b 2329static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
b481de9c
ZY
2330{
2331 u16 new_val = 0;
2332 u16 beacon_factor = 0;
2333
2334 beacon_factor =
2335 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2336 / MAX_UCODE_BEACON_INTERVAL;
2337 new_val = beacon_val / beacon_factor;
2338
2339 return cpu_to_le16(new_val);
2340}
2341
bb8c093b 2342static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
b481de9c
ZY
2343{
2344 u64 interval_tm_unit;
2345 u64 tsf, result;
2346 unsigned long flags;
2347 struct ieee80211_conf *conf = NULL;
2348 u16 beacon_int = 0;
2349
2350 conf = ieee80211_get_hw_conf(priv->hw);
2351
2352 spin_lock_irqsave(&priv->lock, flags);
2353 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2354 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2355
2356 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2357
2358 tsf = priv->timestamp1;
2359 tsf = ((tsf << 32) | priv->timestamp0);
2360
2361 beacon_int = priv->beacon_int;
2362 spin_unlock_irqrestore(&priv->lock, flags);
2363
2364 if (priv->iw_mode == IEEE80211_IF_TYPE_STA) {
2365 if (beacon_int == 0) {
2366 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2367 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2368 } else {
2369 priv->rxon_timing.beacon_interval =
2370 cpu_to_le16(beacon_int);
2371 priv->rxon_timing.beacon_interval =
bb8c093b 2372 iwl3945_adjust_beacon_interval(
b481de9c
ZY
2373 le16_to_cpu(priv->rxon_timing.beacon_interval));
2374 }
2375
2376 priv->rxon_timing.atim_window = 0;
2377 } else {
2378 priv->rxon_timing.beacon_interval =
bb8c093b 2379 iwl3945_adjust_beacon_interval(conf->beacon_int);
b481de9c
ZY
2380 /* TODO: we need to get atim_window from upper stack
2381 * for now we set to 0 */
2382 priv->rxon_timing.atim_window = 0;
2383 }
2384
2385 interval_tm_unit =
2386 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2387 result = do_div(tsf, interval_tm_unit);
2388 priv->rxon_timing.beacon_init_val =
2389 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2390
2391 IWL_DEBUG_ASSOC
2392 ("beacon interval %d beacon timer %d beacon tim %d\n",
2393 le16_to_cpu(priv->rxon_timing.beacon_interval),
2394 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2395 le16_to_cpu(priv->rxon_timing.atim_window));
2396}
2397
bb8c093b 2398static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
b481de9c
ZY
2399{
2400 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
2401 IWL_ERROR("APs don't scan.\n");
2402 return 0;
2403 }
2404
bb8c093b 2405 if (!iwl3945_is_ready_rf(priv)) {
b481de9c
ZY
2406 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2407 return -EIO;
2408 }
2409
2410 if (test_bit(STATUS_SCANNING, &priv->status)) {
2411 IWL_DEBUG_SCAN("Scan already in progress.\n");
2412 return -EAGAIN;
2413 }
2414
2415 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2416 IWL_DEBUG_SCAN("Scan request while abort pending. "
2417 "Queuing.\n");
2418 return -EAGAIN;
2419 }
2420
2421 IWL_DEBUG_INFO("Starting scan...\n");
2422 priv->scan_bands = 2;
2423 set_bit(STATUS_SCANNING, &priv->status);
2424 priv->scan_start = jiffies;
2425 priv->scan_pass_start = priv->scan_start;
2426
2427 queue_work(priv->workqueue, &priv->request_scan);
2428
2429 return 0;
2430}
2431
bb8c093b 2432static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
b481de9c 2433{
bb8c093b 2434 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
b481de9c
ZY
2435
2436 if (hw_decrypt)
2437 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2438 else
2439 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2440
2441 return 0;
2442}
2443
bb8c093b 2444static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv, u8 phymode)
b481de9c
ZY
2445{
2446 if (phymode == MODE_IEEE80211A) {
2447 priv->staging_rxon.flags &=
2448 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2449 | RXON_FLG_CCK_MSK);
2450 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2451 } else {
bb8c093b 2452 /* Copied from iwl3945_bg_post_associate() */
b481de9c
ZY
2453 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2454 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2455 else
2456 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2457
2458 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
2459 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2460
2461 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2462 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2463 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2464 }
2465}
2466
2467/*
01ebd063 2468 * initialize rxon structure with default values from eeprom
b481de9c 2469 */
bb8c093b 2470static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv)
b481de9c 2471{
bb8c093b 2472 const struct iwl3945_channel_info *ch_info;
b481de9c
ZY
2473
2474 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2475
2476 switch (priv->iw_mode) {
2477 case IEEE80211_IF_TYPE_AP:
2478 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2479 break;
2480
2481 case IEEE80211_IF_TYPE_STA:
2482 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2483 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2484 break;
2485
2486 case IEEE80211_IF_TYPE_IBSS:
2487 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2488 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2489 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2490 RXON_FILTER_ACCEPT_GRP_MSK;
2491 break;
2492
2493 case IEEE80211_IF_TYPE_MNTR:
2494 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2495 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2496 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2497 break;
2498 }
2499
2500#if 0
2501 /* TODO: Figure out when short_preamble would be set and cache from
2502 * that */
2503 if (!hw_to_local(priv->hw)->short_preamble)
2504 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2505 else
2506 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2507#endif
2508
bb8c093b 2509 ch_info = iwl3945_get_channel_info(priv, priv->phymode,
b481de9c
ZY
2510 le16_to_cpu(priv->staging_rxon.channel));
2511
2512 if (!ch_info)
2513 ch_info = &priv->channel_info[0];
2514
2515 /*
2516 * in some case A channels are all non IBSS
2517 * in this case force B/G channel
2518 */
2519 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
2520 !(is_channel_ibss(ch_info)))
2521 ch_info = &priv->channel_info[0];
2522
2523 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2524 if (is_channel_a_band(ch_info))
2525 priv->phymode = MODE_IEEE80211A;
2526 else
2527 priv->phymode = MODE_IEEE80211G;
2528
bb8c093b 2529 iwl3945_set_flags_for_phymode(priv, priv->phymode);
b481de9c
ZY
2530
2531 priv->staging_rxon.ofdm_basic_rates =
2532 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2533 priv->staging_rxon.cck_basic_rates =
2534 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2535}
2536
bb8c093b 2537static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
b481de9c 2538{
b481de9c 2539 if (mode == IEEE80211_IF_TYPE_IBSS) {
bb8c093b 2540 const struct iwl3945_channel_info *ch_info;
b481de9c 2541
bb8c093b 2542 ch_info = iwl3945_get_channel_info(priv,
b481de9c
ZY
2543 priv->phymode,
2544 le16_to_cpu(priv->staging_rxon.channel));
2545
2546 if (!ch_info || !is_channel_ibss(ch_info)) {
2547 IWL_ERROR("channel %d not IBSS channel\n",
2548 le16_to_cpu(priv->staging_rxon.channel));
2549 return -EINVAL;
2550 }
2551 }
2552
b481de9c
ZY
2553 priv->iw_mode = mode;
2554
bb8c093b 2555 iwl3945_connection_init_rx_config(priv);
b481de9c
ZY
2556 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2557
bb8c093b 2558 iwl3945_clear_stations_table(priv);
b481de9c 2559
fde3571f
MA
2560 /* dont commit rxon if rf-kill is on*/
2561 if (!iwl3945_is_ready_rf(priv))
2562 return -EAGAIN;
2563
2564 cancel_delayed_work(&priv->scan_check);
2565 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2566 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2567 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2568 return -EAGAIN;
2569 }
2570
bb8c093b 2571 iwl3945_commit_rxon(priv);
b481de9c
ZY
2572
2573 return 0;
2574}
2575
bb8c093b 2576static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
b481de9c 2577 struct ieee80211_tx_control *ctl,
bb8c093b 2578 struct iwl3945_cmd *cmd,
b481de9c
ZY
2579 struct sk_buff *skb_frag,
2580 int last_frag)
2581{
bb8c093b 2582 struct iwl3945_hw_key *keyinfo = &priv->stations[ctl->key_idx].keyinfo;
b481de9c
ZY
2583
2584 switch (keyinfo->alg) {
2585 case ALG_CCMP:
2586 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2587 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
2588 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
2589 break;
2590
2591 case ALG_TKIP:
2592#if 0
2593 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2594
2595 if (last_frag)
2596 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2597 8);
2598 else
2599 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2600#endif
2601 break;
2602
2603 case ALG_WEP:
2604 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
2605 (ctl->key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
2606
2607 if (keyinfo->keylen == 13)
2608 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2609
2610 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2611
2612 IWL_DEBUG_TX("Configuring packet for WEP encryption "
2613 "with key %d\n", ctl->key_idx);
2614 break;
2615
b481de9c
ZY
2616 default:
2617 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2618 break;
2619 }
2620}
2621
2622/*
2623 * handle build REPLY_TX command notification.
2624 */
bb8c093b
CH
2625static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2626 struct iwl3945_cmd *cmd,
b481de9c
ZY
2627 struct ieee80211_tx_control *ctrl,
2628 struct ieee80211_hdr *hdr,
2629 int is_unicast, u8 std_id)
2630{
2631 __le16 *qc;
2632 u16 fc = le16_to_cpu(hdr->frame_control);
2633 __le32 tx_flags = cmd->cmd.tx.tx_flags;
2634
2635 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2636 if (!(ctrl->flags & IEEE80211_TXCTL_NO_ACK)) {
2637 tx_flags |= TX_CMD_FLG_ACK_MSK;
2638 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
2639 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2640 if (ieee80211_is_probe_response(fc) &&
2641 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2642 tx_flags |= TX_CMD_FLG_TSF_MSK;
2643 } else {
2644 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2645 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2646 }
2647
2648 cmd->cmd.tx.sta_id = std_id;
2649 if (ieee80211_get_morefrag(hdr))
2650 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2651
2652 qc = ieee80211_get_qos_ctrl(hdr);
2653 if (qc) {
2654 cmd->cmd.tx.tid_tspec = (u8) (le16_to_cpu(*qc) & 0xf);
2655 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
2656 } else
2657 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2658
2659 if (ctrl->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
2660 tx_flags |= TX_CMD_FLG_RTS_MSK;
2661 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2662 } else if (ctrl->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
2663 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2664 tx_flags |= TX_CMD_FLG_CTS_MSK;
2665 }
2666
2667 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2668 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2669
2670 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
2671 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) {
2672 if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ ||
2673 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
bc434dd2 2674 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
b481de9c 2675 else
bc434dd2 2676 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
b481de9c
ZY
2677 } else
2678 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
2679
2680 cmd->cmd.tx.driver_txop = 0;
2681 cmd->cmd.tx.tx_flags = tx_flags;
2682 cmd->cmd.tx.next_frame_len = 0;
2683}
2684
6440adb5
CB
2685/**
2686 * iwl3945_get_sta_id - Find station's index within station table
2687 */
bb8c093b 2688static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
b481de9c
ZY
2689{
2690 int sta_id;
2691 u16 fc = le16_to_cpu(hdr->frame_control);
2692
6440adb5 2693 /* If this frame is broadcast or management, use broadcast station id */
b481de9c
ZY
2694 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2695 is_multicast_ether_addr(hdr->addr1))
2696 return priv->hw_setting.bcast_sta_id;
2697
2698 switch (priv->iw_mode) {
2699
6440adb5
CB
2700 /* If we are a client station in a BSS network, use the special
2701 * AP station entry (that's the only station we communicate with) */
b481de9c
ZY
2702 case IEEE80211_IF_TYPE_STA:
2703 return IWL_AP_ID;
2704
2705 /* If we are an AP, then find the station, or use BCAST */
2706 case IEEE80211_IF_TYPE_AP:
bb8c093b 2707 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
b481de9c
ZY
2708 if (sta_id != IWL_INVALID_STATION)
2709 return sta_id;
2710 return priv->hw_setting.bcast_sta_id;
2711
6440adb5
CB
2712 /* If this frame is going out to an IBSS network, find the station,
2713 * or create a new station table entry */
0795af57
JP
2714 case IEEE80211_IF_TYPE_IBSS: {
2715 DECLARE_MAC_BUF(mac);
2716
6440adb5 2717 /* Create new station table entry */
bb8c093b 2718 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
b481de9c
ZY
2719 if (sta_id != IWL_INVALID_STATION)
2720 return sta_id;
2721
bb8c093b 2722 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
b481de9c
ZY
2723
2724 if (sta_id != IWL_INVALID_STATION)
2725 return sta_id;
2726
0795af57 2727 IWL_DEBUG_DROP("Station %s not in station map. "
b481de9c 2728 "Defaulting to broadcast...\n",
0795af57 2729 print_mac(mac, hdr->addr1));
bb8c093b 2730 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
b481de9c 2731 return priv->hw_setting.bcast_sta_id;
0795af57 2732 }
b481de9c 2733 default:
01ebd063 2734 IWL_WARNING("Unknown mode of operation: %d", priv->iw_mode);
b481de9c
ZY
2735 return priv->hw_setting.bcast_sta_id;
2736 }
2737}
2738
2739/*
2740 * start REPLY_TX command process
2741 */
bb8c093b 2742static int iwl3945_tx_skb(struct iwl3945_priv *priv,
b481de9c
ZY
2743 struct sk_buff *skb, struct ieee80211_tx_control *ctl)
2744{
2745 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
bb8c093b 2746 struct iwl3945_tfd_frame *tfd;
b481de9c
ZY
2747 u32 *control_flags;
2748 int txq_id = ctl->queue;
bb8c093b
CH
2749 struct iwl3945_tx_queue *txq = NULL;
2750 struct iwl3945_queue *q = NULL;
b481de9c
ZY
2751 dma_addr_t phys_addr;
2752 dma_addr_t txcmd_phys;
bb8c093b 2753 struct iwl3945_cmd *out_cmd = NULL;
b481de9c
ZY
2754 u16 len, idx, len_org;
2755 u8 id, hdr_len, unicast;
2756 u8 sta_id;
2757 u16 seq_number = 0;
2758 u16 fc;
2759 __le16 *qc;
2760 u8 wait_write_ptr = 0;
2761 unsigned long flags;
2762 int rc;
2763
2764 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 2765 if (iwl3945_is_rfkill(priv)) {
b481de9c
ZY
2766 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2767 goto drop_unlock;
2768 }
2769
32bfd35d
JB
2770 if (!priv->vif) {
2771 IWL_DEBUG_DROP("Dropping - !priv->vif\n");
b481de9c
ZY
2772 goto drop_unlock;
2773 }
2774
2775 if ((ctl->tx_rate & 0xFF) == IWL_INVALID_RATE) {
2776 IWL_ERROR("ERROR: No TX rate available.\n");
2777 goto drop_unlock;
2778 }
2779
2780 unicast = !is_multicast_ether_addr(hdr->addr1);
2781 id = 0;
2782
2783 fc = le16_to_cpu(hdr->frame_control);
2784
c8b0e6e1 2785#ifdef CONFIG_IWL3945_DEBUG
b481de9c
ZY
2786 if (ieee80211_is_auth(fc))
2787 IWL_DEBUG_TX("Sending AUTH frame\n");
2788 else if (ieee80211_is_assoc_request(fc))
2789 IWL_DEBUG_TX("Sending ASSOC frame\n");
2790 else if (ieee80211_is_reassoc_request(fc))
2791 IWL_DEBUG_TX("Sending REASSOC frame\n");
2792#endif
2793
7878a5a4
MA
2794 /* drop all data frame if we are not associated */
2795 if (!iwl3945_is_associated(priv) && !priv->assoc_id &&
b481de9c 2796 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
bb8c093b 2797 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
b481de9c
ZY
2798 goto drop_unlock;
2799 }
2800
2801 spin_unlock_irqrestore(&priv->lock, flags);
2802
2803 hdr_len = ieee80211_get_hdrlen(fc);
6440adb5
CB
2804
2805 /* Find (or create) index into station table for destination station */
bb8c093b 2806 sta_id = iwl3945_get_sta_id(priv, hdr);
b481de9c 2807 if (sta_id == IWL_INVALID_STATION) {
0795af57
JP
2808 DECLARE_MAC_BUF(mac);
2809
2810 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
2811 print_mac(mac, hdr->addr1));
b481de9c
ZY
2812 goto drop;
2813 }
2814
2815 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2816
2817 qc = ieee80211_get_qos_ctrl(hdr);
2818 if (qc) {
2819 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2820 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2821 IEEE80211_SCTL_SEQ;
2822 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2823 (hdr->seq_ctrl &
2824 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2825 seq_number += 0x10;
2826 }
6440adb5
CB
2827
2828 /* Descriptor for chosen Tx queue */
b481de9c
ZY
2829 txq = &priv->txq[txq_id];
2830 q = &txq->q;
2831
2832 spin_lock_irqsave(&priv->lock, flags);
2833
6440adb5 2834 /* Set up first empty TFD within this queue's circular TFD buffer */
fc4b6853 2835 tfd = &txq->bd[q->write_ptr];
b481de9c
ZY
2836 memset(tfd, 0, sizeof(*tfd));
2837 control_flags = (u32 *) tfd;
fc4b6853 2838 idx = get_cmd_index(q, q->write_ptr, 0);
b481de9c 2839
6440adb5 2840 /* Set up driver data for this TFD */
bb8c093b 2841 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
fc4b6853
TW
2842 txq->txb[q->write_ptr].skb[0] = skb;
2843 memcpy(&(txq->txb[q->write_ptr].status.control),
b481de9c 2844 ctl, sizeof(struct ieee80211_tx_control));
6440adb5
CB
2845
2846 /* Init first empty entry in queue's array of Tx/cmd buffers */
b481de9c
ZY
2847 out_cmd = &txq->cmd[idx];
2848 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2849 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
6440adb5
CB
2850
2851 /*
2852 * Set up the Tx-command (not MAC!) header.
2853 * Store the chosen Tx queue and TFD index within the sequence field;
2854 * after Tx, uCode's Tx response will return this value so driver can
2855 * locate the frame within the tx queue and do post-tx processing.
2856 */
b481de9c
ZY
2857 out_cmd->hdr.cmd = REPLY_TX;
2858 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
fc4b6853 2859 INDEX_TO_SEQ(q->write_ptr)));
6440adb5
CB
2860
2861 /* Copy MAC header from skb into command buffer */
b481de9c
ZY
2862 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2863
6440adb5
CB
2864 /*
2865 * Use the first empty entry in this queue's command buffer array
2866 * to contain the Tx command and MAC header concatenated together
2867 * (payload data will be in another buffer).
2868 * Size of this varies, due to varying MAC header length.
2869 * If end is not dword aligned, we'll have 2 extra bytes at the end
2870 * of the MAC header (device reads on dword boundaries).
2871 * We'll tell device about this padding later.
2872 */
b481de9c 2873 len = priv->hw_setting.tx_cmd_len +
bb8c093b 2874 sizeof(struct iwl3945_cmd_header) + hdr_len;
b481de9c
ZY
2875
2876 len_org = len;
2877 len = (len + 3) & ~3;
2878
2879 if (len_org != len)
2880 len_org = 1;
2881 else
2882 len_org = 0;
2883
6440adb5
CB
2884 /* Physical address of this Tx command's header (not MAC header!),
2885 * within command buffer array. */
bb8c093b
CH
2886 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2887 offsetof(struct iwl3945_cmd, hdr);
b481de9c 2888
6440adb5
CB
2889 /* Add buffer containing Tx command and MAC(!) header to TFD's
2890 * first entry */
bb8c093b 2891 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
b481de9c
ZY
2892
2893 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
bb8c093b 2894 iwl3945_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, 0);
b481de9c 2895
6440adb5
CB
2896 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2897 * if any (802.11 null frames have no payload). */
b481de9c
ZY
2898 len = skb->len - hdr_len;
2899 if (len) {
2900 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2901 len, PCI_DMA_TODEVICE);
bb8c093b 2902 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
b481de9c
ZY
2903 }
2904
b481de9c 2905 if (!len)
6440adb5 2906 /* If there is no payload, then we use only one Tx buffer */
b481de9c
ZY
2907 *control_flags = TFD_CTL_COUNT_SET(1);
2908 else
6440adb5
CB
2909 /* Else use 2 buffers.
2910 * Tell 3945 about any padding after MAC header */
b481de9c
ZY
2911 *control_flags = TFD_CTL_COUNT_SET(2) |
2912 TFD_CTL_PAD_SET(U32_PAD(len));
2913
6440adb5 2914 /* Total # bytes to be transmitted */
b481de9c
ZY
2915 len = (u16)skb->len;
2916 out_cmd->cmd.tx.len = cpu_to_le16(len);
2917
2918 /* TODO need this for burst mode later on */
bb8c093b 2919 iwl3945_build_tx_cmd_basic(priv, out_cmd, ctl, hdr, unicast, sta_id);
b481de9c
ZY
2920
2921 /* set is_hcca to 0; it probably will never be implemented */
bb8c093b 2922 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, ctl, hdr, sta_id, 0);
b481de9c
ZY
2923
2924 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2925 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2926
2927 if (!ieee80211_get_morefrag(hdr)) {
2928 txq->need_update = 1;
2929 if (qc) {
2930 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2931 priv->stations[sta_id].tid[tid].seq_number = seq_number;
2932 }
2933 } else {
2934 wait_write_ptr = 1;
2935 txq->need_update = 0;
2936 }
2937
bb8c093b 2938 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
b481de9c
ZY
2939 sizeof(out_cmd->cmd.tx));
2940
bb8c093b 2941 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
b481de9c
ZY
2942 ieee80211_get_hdrlen(fc));
2943
6440adb5 2944 /* Tell device the write index *just past* this latest filled TFD */
bb8c093b
CH
2945 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd);
2946 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
b481de9c
ZY
2947 spin_unlock_irqrestore(&priv->lock, flags);
2948
2949 if (rc)
2950 return rc;
2951
bb8c093b 2952 if ((iwl3945_queue_space(q) < q->high_mark)
b481de9c
ZY
2953 && priv->mac80211_registered) {
2954 if (wait_write_ptr) {
2955 spin_lock_irqsave(&priv->lock, flags);
2956 txq->need_update = 1;
bb8c093b 2957 iwl3945_tx_queue_update_write_ptr(priv, txq);
b481de9c
ZY
2958 spin_unlock_irqrestore(&priv->lock, flags);
2959 }
2960
2961 ieee80211_stop_queue(priv->hw, ctl->queue);
2962 }
2963
2964 return 0;
2965
2966drop_unlock:
2967 spin_unlock_irqrestore(&priv->lock, flags);
2968drop:
2969 return -1;
2970}
2971
bb8c093b 2972static void iwl3945_set_rate(struct iwl3945_priv *priv)
b481de9c
ZY
2973{
2974 const struct ieee80211_hw_mode *hw = NULL;
2975 struct ieee80211_rate *rate;
2976 int i;
2977
bb8c093b 2978 hw = iwl3945_get_hw_mode(priv, priv->phymode);
c4ba9621
SA
2979 if (!hw) {
2980 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2981 return;
2982 }
b481de9c
ZY
2983
2984 priv->active_rate = 0;
2985 priv->active_rate_basic = 0;
2986
2987 IWL_DEBUG_RATE("Setting rates for 802.11%c\n",
2988 hw->mode == MODE_IEEE80211A ?
2989 'a' : ((hw->mode == MODE_IEEE80211B) ? 'b' : 'g'));
2990
2991 for (i = 0; i < hw->num_rates; i++) {
2992 rate = &(hw->rates[i]);
2993 if ((rate->val < IWL_RATE_COUNT) &&
2994 (rate->flags & IEEE80211_RATE_SUPPORTED)) {
2995 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)%s\n",
bb8c093b 2996 rate->val, iwl3945_rates[rate->val].plcp,
b481de9c
ZY
2997 (rate->flags & IEEE80211_RATE_BASIC) ?
2998 "*" : "");
2999 priv->active_rate |= (1 << rate->val);
3000 if (rate->flags & IEEE80211_RATE_BASIC)
3001 priv->active_rate_basic |= (1 << rate->val);
3002 } else
3003 IWL_DEBUG_RATE("Not adding rate %d (plcp %d)\n",
bb8c093b 3004 rate->val, iwl3945_rates[rate->val].plcp);
b481de9c
ZY
3005 }
3006
3007 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
3008 priv->active_rate, priv->active_rate_basic);
3009
3010 /*
3011 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
3012 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
3013 * OFDM
3014 */
3015 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
3016 priv->staging_rxon.cck_basic_rates =
3017 ((priv->active_rate_basic &
3018 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
3019 else
3020 priv->staging_rxon.cck_basic_rates =
3021 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
3022
3023 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
3024 priv->staging_rxon.ofdm_basic_rates =
3025 ((priv->active_rate_basic &
3026 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
3027 IWL_FIRST_OFDM_RATE) & 0xFF;
3028 else
3029 priv->staging_rxon.ofdm_basic_rates =
3030 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
3031}
3032
bb8c093b 3033static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
b481de9c
ZY
3034{
3035 unsigned long flags;
3036
3037 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
3038 return;
3039
3040 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
3041 disable_radio ? "OFF" : "ON");
3042
3043 if (disable_radio) {
bb8c093b 3044 iwl3945_scan_cancel(priv);
b481de9c
ZY
3045 /* FIXME: This is a workaround for AP */
3046 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
3047 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 3048 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
b481de9c
ZY
3049 CSR_UCODE_SW_BIT_RFKILL);
3050 spin_unlock_irqrestore(&priv->lock, flags);
bb8c093b 3051 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
b481de9c
ZY
3052 set_bit(STATUS_RF_KILL_SW, &priv->status);
3053 }
3054 return;
3055 }
3056
3057 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 3058 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
b481de9c
ZY
3059
3060 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3061 spin_unlock_irqrestore(&priv->lock, flags);
3062
3063 /* wake up ucode */
3064 msleep(10);
3065
3066 spin_lock_irqsave(&priv->lock, flags);
bb8c093b
CH
3067 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
3068 if (!iwl3945_grab_nic_access(priv))
3069 iwl3945_release_nic_access(priv);
b481de9c
ZY
3070 spin_unlock_irqrestore(&priv->lock, flags);
3071
3072 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
3073 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
3074 "disabled by HW switch\n");
3075 return;
3076 }
3077
3078 queue_work(priv->workqueue, &priv->restart);
3079 return;
3080}
3081
bb8c093b 3082void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
b481de9c
ZY
3083 u32 decrypt_res, struct ieee80211_rx_status *stats)
3084{
3085 u16 fc =
3086 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
3087
3088 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
3089 return;
3090
3091 if (!(fc & IEEE80211_FCTL_PROTECTED))
3092 return;
3093
3094 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
3095 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
3096 case RX_RES_STATUS_SEC_TYPE_TKIP:
3097 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
3098 RX_RES_STATUS_BAD_ICV_MIC)
3099 stats->flag |= RX_FLAG_MMIC_ERROR;
3100 case RX_RES_STATUS_SEC_TYPE_WEP:
3101 case RX_RES_STATUS_SEC_TYPE_CCMP:
3102 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
3103 RX_RES_STATUS_DECRYPT_OK) {
3104 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
3105 stats->flag |= RX_FLAG_DECRYPTED;
3106 }
3107 break;
3108
3109 default:
3110 break;
3111 }
3112}
3113
b481de9c
ZY
3114#define IWL_PACKET_RETRY_TIME HZ
3115
bb8c093b 3116int iwl3945_is_duplicate_packet(struct iwl3945_priv *priv, struct ieee80211_hdr *header)
b481de9c
ZY
3117{
3118 u16 sc = le16_to_cpu(header->seq_ctrl);
3119 u16 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
3120 u16 frag = sc & IEEE80211_SCTL_FRAG;
3121 u16 *last_seq, *last_frag;
3122 unsigned long *last_time;
3123
3124 switch (priv->iw_mode) {
3125 case IEEE80211_IF_TYPE_IBSS:{
3126 struct list_head *p;
bb8c093b 3127 struct iwl3945_ibss_seq *entry = NULL;
b481de9c
ZY
3128 u8 *mac = header->addr2;
3129 int index = mac[5] & (IWL_IBSS_MAC_HASH_SIZE - 1);
3130
3131 __list_for_each(p, &priv->ibss_mac_hash[index]) {
bb8c093b 3132 entry = list_entry(p, struct iwl3945_ibss_seq, list);
b481de9c
ZY
3133 if (!compare_ether_addr(entry->mac, mac))
3134 break;
3135 }
3136 if (p == &priv->ibss_mac_hash[index]) {
3137 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
3138 if (!entry) {
bc434dd2 3139 IWL_ERROR("Cannot malloc new mac entry\n");
b481de9c
ZY
3140 return 0;
3141 }
3142 memcpy(entry->mac, mac, ETH_ALEN);
3143 entry->seq_num = seq;
3144 entry->frag_num = frag;
3145 entry->packet_time = jiffies;
bc434dd2 3146 list_add(&entry->list, &priv->ibss_mac_hash[index]);
b481de9c
ZY
3147 return 0;
3148 }
3149 last_seq = &entry->seq_num;
3150 last_frag = &entry->frag_num;
3151 last_time = &entry->packet_time;
3152 break;
3153 }
3154 case IEEE80211_IF_TYPE_STA:
3155 last_seq = &priv->last_seq_num;
3156 last_frag = &priv->last_frag_num;
3157 last_time = &priv->last_packet_time;
3158 break;
3159 default:
3160 return 0;
3161 }
3162 if ((*last_seq == seq) &&
3163 time_after(*last_time + IWL_PACKET_RETRY_TIME, jiffies)) {
3164 if (*last_frag == frag)
3165 goto drop;
3166 if (*last_frag + 1 != frag)
3167 /* out-of-order fragment */
3168 goto drop;
3169 } else
3170 *last_seq = seq;
3171
3172 *last_frag = frag;
3173 *last_time = jiffies;
3174 return 0;
3175
3176 drop:
3177 return 1;
3178}
3179
c8b0e6e1 3180#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
3181
3182#include "iwl-spectrum.h"
3183
3184#define BEACON_TIME_MASK_LOW 0x00FFFFFF
3185#define BEACON_TIME_MASK_HIGH 0xFF000000
3186#define TIME_UNIT 1024
3187
3188/*
3189 * extended beacon time format
3190 * time in usec will be changed into a 32-bit value in 8:24 format
3191 * the high 1 byte is the beacon counts
3192 * the lower 3 bytes is the time in usec within one beacon interval
3193 */
3194
bb8c093b 3195static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
b481de9c
ZY
3196{
3197 u32 quot;
3198 u32 rem;
3199 u32 interval = beacon_interval * 1024;
3200
3201 if (!interval || !usec)
3202 return 0;
3203
3204 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
3205 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
3206
3207 return (quot << 24) + rem;
3208}
3209
3210/* base is usually what we get from ucode with each received frame,
3211 * the same as HW timer counter counting down
3212 */
3213
bb8c093b 3214static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
b481de9c
ZY
3215{
3216 u32 base_low = base & BEACON_TIME_MASK_LOW;
3217 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
3218 u32 interval = beacon_interval * TIME_UNIT;
3219 u32 res = (base & BEACON_TIME_MASK_HIGH) +
3220 (addon & BEACON_TIME_MASK_HIGH);
3221
3222 if (base_low > addon_low)
3223 res += base_low - addon_low;
3224 else if (base_low < addon_low) {
3225 res += interval + base_low - addon_low;
3226 res += (1 << 24);
3227 } else
3228 res += (1 << 24);
3229
3230 return cpu_to_le32(res);
3231}
3232
bb8c093b 3233static int iwl3945_get_measurement(struct iwl3945_priv *priv,
b481de9c
ZY
3234 struct ieee80211_measurement_params *params,
3235 u8 type)
3236{
bb8c093b
CH
3237 struct iwl3945_spectrum_cmd spectrum;
3238 struct iwl3945_rx_packet *res;
3239 struct iwl3945_host_cmd cmd = {
b481de9c
ZY
3240 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
3241 .data = (void *)&spectrum,
3242 .meta.flags = CMD_WANT_SKB,
3243 };
3244 u32 add_time = le64_to_cpu(params->start_time);
3245 int rc;
3246 int spectrum_resp_status;
3247 int duration = le16_to_cpu(params->duration);
3248
bb8c093b 3249 if (iwl3945_is_associated(priv))
b481de9c 3250 add_time =
bb8c093b 3251 iwl3945_usecs_to_beacons(
b481de9c
ZY
3252 le64_to_cpu(params->start_time) - priv->last_tsf,
3253 le16_to_cpu(priv->rxon_timing.beacon_interval));
3254
3255 memset(&spectrum, 0, sizeof(spectrum));
3256
3257 spectrum.channel_count = cpu_to_le16(1);
3258 spectrum.flags =
3259 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
3260 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
3261 cmd.len = sizeof(spectrum);
3262 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
3263
bb8c093b 3264 if (iwl3945_is_associated(priv))
b481de9c 3265 spectrum.start_time =
bb8c093b 3266 iwl3945_add_beacon_time(priv->last_beacon_time,
b481de9c
ZY
3267 add_time,
3268 le16_to_cpu(priv->rxon_timing.beacon_interval));
3269 else
3270 spectrum.start_time = 0;
3271
3272 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
3273 spectrum.channels[0].channel = params->channel;
3274 spectrum.channels[0].type = type;
3275 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
3276 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
3277 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
3278
bb8c093b 3279 rc = iwl3945_send_cmd_sync(priv, &cmd);
b481de9c
ZY
3280 if (rc)
3281 return rc;
3282
bb8c093b 3283 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
b481de9c
ZY
3284 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
3285 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
3286 rc = -EIO;
3287 }
3288
3289 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
3290 switch (spectrum_resp_status) {
3291 case 0: /* Command will be handled */
3292 if (res->u.spectrum.id != 0xff) {
bc434dd2
IS
3293 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
3294 res->u.spectrum.id);
b481de9c
ZY
3295 priv->measurement_status &= ~MEASUREMENT_READY;
3296 }
3297 priv->measurement_status |= MEASUREMENT_ACTIVE;
3298 rc = 0;
3299 break;
3300
3301 case 1: /* Command will not be handled */
3302 rc = -EAGAIN;
3303 break;
3304 }
3305
3306 dev_kfree_skb_any(cmd.meta.u.skb);
3307
3308 return rc;
3309}
3310#endif
3311
bb8c093b
CH
3312static void iwl3945_txstatus_to_ieee(struct iwl3945_priv *priv,
3313 struct iwl3945_tx_info *tx_sta)
b481de9c
ZY
3314{
3315
3316 tx_sta->status.ack_signal = 0;
3317 tx_sta->status.excessive_retries = 0;
3318 tx_sta->status.queue_length = 0;
3319 tx_sta->status.queue_number = 0;
3320
3321 if (in_interrupt())
3322 ieee80211_tx_status_irqsafe(priv->hw,
3323 tx_sta->skb[0], &(tx_sta->status));
3324 else
3325 ieee80211_tx_status(priv->hw,
3326 tx_sta->skb[0], &(tx_sta->status));
3327
3328 tx_sta->skb[0] = NULL;
3329}
3330
3331/**
6440adb5 3332 * iwl3945_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd
b481de9c 3333 *
6440adb5
CB
3334 * When FW advances 'R' index, all entries between old and new 'R' index
3335 * need to be reclaimed. As result, some free space forms. If there is
3336 * enough free space (> low mark), wake the stack that feeds us.
b481de9c 3337 */
bb8c093b 3338static int iwl3945_tx_queue_reclaim(struct iwl3945_priv *priv, int txq_id, int index)
b481de9c 3339{
bb8c093b
CH
3340 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3341 struct iwl3945_queue *q = &txq->q;
b481de9c
ZY
3342 int nfreed = 0;
3343
3344 if ((index >= q->n_bd) || (x2_queue_used(q, index) == 0)) {
3345 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3346 "is out of range [0-%d] %d %d.\n", txq_id,
fc4b6853 3347 index, q->n_bd, q->write_ptr, q->read_ptr);
b481de9c
ZY
3348 return 0;
3349 }
3350
bb8c093b 3351 for (index = iwl3945_queue_inc_wrap(index, q->n_bd);
fc4b6853 3352 q->read_ptr != index;
bb8c093b 3353 q->read_ptr = iwl3945_queue_inc_wrap(q->read_ptr, q->n_bd)) {
b481de9c 3354 if (txq_id != IWL_CMD_QUEUE_NUM) {
bb8c093b 3355 iwl3945_txstatus_to_ieee(priv,
fc4b6853 3356 &(txq->txb[txq->q.read_ptr]));
bb8c093b 3357 iwl3945_hw_txq_free_tfd(priv, txq);
b481de9c
ZY
3358 } else if (nfreed > 1) {
3359 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
fc4b6853 3360 q->write_ptr, q->read_ptr);
b481de9c
ZY
3361 queue_work(priv->workqueue, &priv->restart);
3362 }
3363 nfreed++;
3364 }
3365
bb8c093b 3366 if (iwl3945_queue_space(q) > q->low_mark && (txq_id >= 0) &&
b481de9c
ZY
3367 (txq_id != IWL_CMD_QUEUE_NUM) &&
3368 priv->mac80211_registered)
3369 ieee80211_wake_queue(priv->hw, txq_id);
3370
3371
3372 return nfreed;
3373}
3374
bb8c093b 3375static int iwl3945_is_tx_success(u32 status)
b481de9c
ZY
3376{
3377 return (status & 0xFF) == 0x1;
3378}
3379
3380/******************************************************************************
3381 *
3382 * Generic RX handler implementations
3383 *
3384 ******************************************************************************/
6440adb5
CB
3385/**
3386 * iwl3945_rx_reply_tx - Handle Tx response
3387 */
bb8c093b
CH
3388static void iwl3945_rx_reply_tx(struct iwl3945_priv *priv,
3389 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3390{
bb8c093b 3391 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
3392 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3393 int txq_id = SEQ_TO_QUEUE(sequence);
3394 int index = SEQ_TO_INDEX(sequence);
bb8c093b 3395 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
b481de9c 3396 struct ieee80211_tx_status *tx_status;
bb8c093b 3397 struct iwl3945_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
b481de9c
ZY
3398 u32 status = le32_to_cpu(tx_resp->status);
3399
3400 if ((index >= txq->q.n_bd) || (x2_queue_used(&txq->q, index) == 0)) {
3401 IWL_ERROR("Read index for DMA queue txq_id (%d) index %d "
3402 "is out of range [0-%d] %d %d\n", txq_id,
fc4b6853
TW
3403 index, txq->q.n_bd, txq->q.write_ptr,
3404 txq->q.read_ptr);
b481de9c
ZY
3405 return;
3406 }
3407
fc4b6853 3408 tx_status = &(txq->txb[txq->q.read_ptr].status);
b481de9c
ZY
3409
3410 tx_status->retry_count = tx_resp->failure_frame;
3411 tx_status->queue_number = status;
3412 tx_status->queue_length = tx_resp->bt_kill_count;
3413 tx_status->queue_length |= tx_resp->failure_rts;
3414
3415 tx_status->flags =
bb8c093b 3416 iwl3945_is_tx_success(status) ? IEEE80211_TX_STATUS_ACK : 0;
b481de9c 3417
bb8c093b 3418 tx_status->control.tx_rate = iwl3945_rate_index_from_plcp(tx_resp->rate);
b481de9c
ZY
3419
3420 IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) plcp rate %d retries %d\n",
bb8c093b 3421 txq_id, iwl3945_get_tx_fail_reason(status), status,
b481de9c
ZY
3422 tx_resp->rate, tx_resp->failure_frame);
3423
3424 IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index);
3425 if (index != -1)
bb8c093b 3426 iwl3945_tx_queue_reclaim(priv, txq_id, index);
b481de9c
ZY
3427
3428 if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
3429 IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n");
3430}
3431
3432
bb8c093b
CH
3433static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
3434 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3435{
bb8c093b
CH
3436 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3437 struct iwl3945_alive_resp *palive;
b481de9c
ZY
3438 struct delayed_work *pwork;
3439
3440 palive = &pkt->u.alive_frame;
3441
3442 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
3443 "0x%01X 0x%01X\n",
3444 palive->is_valid, palive->ver_type,
3445 palive->ver_subtype);
3446
3447 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
3448 IWL_DEBUG_INFO("Initialization Alive received.\n");
3449 memcpy(&priv->card_alive_init,
3450 &pkt->u.alive_frame,
bb8c093b 3451 sizeof(struct iwl3945_init_alive_resp));
b481de9c
ZY
3452 pwork = &priv->init_alive_start;
3453 } else {
3454 IWL_DEBUG_INFO("Runtime Alive received.\n");
3455 memcpy(&priv->card_alive, &pkt->u.alive_frame,
bb8c093b 3456 sizeof(struct iwl3945_alive_resp));
b481de9c 3457 pwork = &priv->alive_start;
bb8c093b 3458 iwl3945_disable_events(priv);
b481de9c
ZY
3459 }
3460
3461 /* We delay the ALIVE response by 5ms to
3462 * give the HW RF Kill time to activate... */
3463 if (palive->is_valid == UCODE_VALID_OK)
3464 queue_delayed_work(priv->workqueue, pwork,
3465 msecs_to_jiffies(5));
3466 else
3467 IWL_WARNING("uCode did not respond OK.\n");
3468}
3469
bb8c093b
CH
3470static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
3471 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3472{
bb8c093b 3473 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
3474
3475 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
3476 return;
3477}
3478
bb8c093b
CH
3479static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
3480 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3481{
bb8c093b 3482 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
3483
3484 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3485 "seq 0x%04X ser 0x%08X\n",
3486 le32_to_cpu(pkt->u.err_resp.error_type),
3487 get_cmd_string(pkt->u.err_resp.cmd_id),
3488 pkt->u.err_resp.cmd_id,
3489 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3490 le32_to_cpu(pkt->u.err_resp.error_info));
3491}
3492
3493#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3494
bb8c093b 3495static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3496{
bb8c093b
CH
3497 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3498 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
3499 struct iwl3945_csa_notification *csa = &(pkt->u.csa_notif);
b481de9c
ZY
3500 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3501 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3502 rxon->channel = csa->channel;
3503 priv->staging_rxon.channel = csa->channel;
3504}
3505
bb8c093b
CH
3506static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3507 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3508{
c8b0e6e1 3509#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
bb8c093b
CH
3510 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3511 struct iwl3945_spectrum_notification *report = &(pkt->u.spectrum_notif);
b481de9c
ZY
3512
3513 if (!report->state) {
3514 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3515 "Spectrum Measure Notification: Start\n");
3516 return;
3517 }
3518
3519 memcpy(&priv->measure_report, report, sizeof(*report));
3520 priv->measurement_status |= MEASUREMENT_READY;
3521#endif
3522}
3523
bb8c093b
CH
3524static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3525 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3526{
c8b0e6e1 3527#ifdef CONFIG_IWL3945_DEBUG
bb8c093b
CH
3528 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3529 struct iwl3945_sleep_notification *sleep = &(pkt->u.sleep_notif);
b481de9c
ZY
3530 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3531 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3532#endif
3533}
3534
bb8c093b
CH
3535static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3536 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3537{
bb8c093b 3538 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
3539 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3540 "notification for %s:\n",
3541 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
bb8c093b 3542 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
b481de9c
ZY
3543}
3544
bb8c093b 3545static void iwl3945_bg_beacon_update(struct work_struct *work)
b481de9c 3546{
bb8c093b
CH
3547 struct iwl3945_priv *priv =
3548 container_of(work, struct iwl3945_priv, beacon_update);
b481de9c
ZY
3549 struct sk_buff *beacon;
3550
3551 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
32bfd35d 3552 beacon = ieee80211_beacon_get(priv->hw, priv->vif, NULL);
b481de9c
ZY
3553
3554 if (!beacon) {
3555 IWL_ERROR("update beacon failed\n");
3556 return;
3557 }
3558
3559 mutex_lock(&priv->mutex);
3560 /* new beacon skb is allocated every time; dispose previous.*/
3561 if (priv->ibss_beacon)
3562 dev_kfree_skb(priv->ibss_beacon);
3563
3564 priv->ibss_beacon = beacon;
3565 mutex_unlock(&priv->mutex);
3566
bb8c093b 3567 iwl3945_send_beacon_cmd(priv);
b481de9c
ZY
3568}
3569
bb8c093b
CH
3570static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3571 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3572{
c8b0e6e1 3573#ifdef CONFIG_IWL3945_DEBUG
bb8c093b
CH
3574 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3575 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
b481de9c
ZY
3576 u8 rate = beacon->beacon_notify_hdr.rate;
3577
3578 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3579 "tsf %d %d rate %d\n",
3580 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3581 beacon->beacon_notify_hdr.failure_frame,
3582 le32_to_cpu(beacon->ibss_mgr_status),
3583 le32_to_cpu(beacon->high_tsf),
3584 le32_to_cpu(beacon->low_tsf), rate);
3585#endif
3586
3587 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
3588 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3589 queue_work(priv->workqueue, &priv->beacon_update);
3590}
3591
3592/* Service response to REPLY_SCAN_CMD (0x80) */
bb8c093b
CH
3593static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3594 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3595{
c8b0e6e1 3596#ifdef CONFIG_IWL3945_DEBUG
bb8c093b
CH
3597 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3598 struct iwl3945_scanreq_notification *notif =
3599 (struct iwl3945_scanreq_notification *)pkt->u.raw;
b481de9c
ZY
3600
3601 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3602#endif
3603}
3604
3605/* Service SCAN_START_NOTIFICATION (0x82) */
bb8c093b
CH
3606static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3607 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3608{
bb8c093b
CH
3609 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3610 struct iwl3945_scanstart_notification *notif =
3611 (struct iwl3945_scanstart_notification *)pkt->u.raw;
b481de9c
ZY
3612 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3613 IWL_DEBUG_SCAN("Scan start: "
3614 "%d [802.11%s] "
3615 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3616 notif->channel,
3617 notif->band ? "bg" : "a",
3618 notif->tsf_high,
3619 notif->tsf_low, notif->status, notif->beacon_timer);
3620}
3621
3622/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
bb8c093b
CH
3623static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3624 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3625{
bb8c093b
CH
3626 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3627 struct iwl3945_scanresults_notification *notif =
3628 (struct iwl3945_scanresults_notification *)pkt->u.raw;
b481de9c
ZY
3629
3630 IWL_DEBUG_SCAN("Scan ch.res: "
3631 "%d [802.11%s] "
3632 "(TSF: 0x%08X:%08X) - %d "
3633 "elapsed=%lu usec (%dms since last)\n",
3634 notif->channel,
3635 notif->band ? "bg" : "a",
3636 le32_to_cpu(notif->tsf_high),
3637 le32_to_cpu(notif->tsf_low),
3638 le32_to_cpu(notif->statistics[0]),
3639 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3640 jiffies_to_msecs(elapsed_jiffies
3641 (priv->last_scan_jiffies, jiffies)));
3642
3643 priv->last_scan_jiffies = jiffies;
7878a5a4 3644 priv->next_scan_jiffies = 0;
b481de9c
ZY
3645}
3646
3647/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
bb8c093b
CH
3648static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3649 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3650{
bb8c093b
CH
3651 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3652 struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
b481de9c
ZY
3653
3654 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3655 scan_notif->scanned_channels,
3656 scan_notif->tsf_low,
3657 scan_notif->tsf_high, scan_notif->status);
3658
3659 /* The HW is no longer scanning */
3660 clear_bit(STATUS_SCAN_HW, &priv->status);
3661
3662 /* The scan completion notification came in, so kill that timer... */
3663 cancel_delayed_work(&priv->scan_check);
3664
3665 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
3666 (priv->scan_bands == 2) ? "2.4" : "5.2",
3667 jiffies_to_msecs(elapsed_jiffies
3668 (priv->scan_pass_start, jiffies)));
3669
3670 /* Remove this scanned band from the list
3671 * of pending bands to scan */
3672 priv->scan_bands--;
3673
3674 /* If a request to abort was given, or the scan did not succeed
3675 * then we reset the scan state machine and terminate,
3676 * re-queuing another scan if one has been requested */
3677 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3678 IWL_DEBUG_INFO("Aborted scan completed.\n");
3679 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3680 } else {
3681 /* If there are more bands on this scan pass reschedule */
3682 if (priv->scan_bands > 0)
3683 goto reschedule;
3684 }
3685
3686 priv->last_scan_jiffies = jiffies;
7878a5a4 3687 priv->next_scan_jiffies = 0;
b481de9c
ZY
3688 IWL_DEBUG_INFO("Setting scan to off\n");
3689
3690 clear_bit(STATUS_SCANNING, &priv->status);
3691
3692 IWL_DEBUG_INFO("Scan took %dms\n",
3693 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3694
3695 queue_work(priv->workqueue, &priv->scan_completed);
3696
3697 return;
3698
3699reschedule:
3700 priv->scan_pass_start = jiffies;
3701 queue_work(priv->workqueue, &priv->request_scan);
3702}
3703
3704/* Handle notification from uCode that card's power state is changing
3705 * due to software, hardware, or critical temperature RFKILL */
bb8c093b
CH
3706static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3707 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3708{
bb8c093b 3709 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
b481de9c
ZY
3710 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3711 unsigned long status = priv->status;
3712
3713 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3714 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3715 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3716
bb8c093b 3717 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
b481de9c
ZY
3718 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3719
3720 if (flags & HW_CARD_DISABLED)
3721 set_bit(STATUS_RF_KILL_HW, &priv->status);
3722 else
3723 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3724
3725
3726 if (flags & SW_CARD_DISABLED)
3727 set_bit(STATUS_RF_KILL_SW, &priv->status);
3728 else
3729 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3730
bb8c093b 3731 iwl3945_scan_cancel(priv);
b481de9c
ZY
3732
3733 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3734 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3735 (test_bit(STATUS_RF_KILL_SW, &status) !=
3736 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3737 queue_work(priv->workqueue, &priv->rf_kill);
3738 else
3739 wake_up_interruptible(&priv->wait_command_queue);
3740}
3741
3742/**
bb8c093b 3743 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
b481de9c
ZY
3744 *
3745 * Setup the RX handlers for each of the reply types sent from the uCode
3746 * to the host.
3747 *
3748 * This function chains into the hardware specific files for them to setup
3749 * any hardware specific handlers as well.
3750 */
bb8c093b 3751static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
b481de9c 3752{
bb8c093b
CH
3753 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3754 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3755 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3756 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
b481de9c 3757 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
bb8c093b
CH
3758 iwl3945_rx_spectrum_measure_notif;
3759 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
b481de9c 3760 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
bb8c093b
CH
3761 iwl3945_rx_pm_debug_statistics_notif;
3762 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
b481de9c 3763
9fbab516
BC
3764 /*
3765 * The same handler is used for both the REPLY to a discrete
3766 * statistics request from the host as well as for the periodic
3767 * statistics notifications (after received beacons) from the uCode.
b481de9c 3768 */
bb8c093b
CH
3769 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3770 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
b481de9c 3771
bb8c093b
CH
3772 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3773 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
b481de9c 3774 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
bb8c093b 3775 iwl3945_rx_scan_results_notif;
b481de9c 3776 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
bb8c093b
CH
3777 iwl3945_rx_scan_complete_notif;
3778 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
3779 priv->rx_handlers[REPLY_TX] = iwl3945_rx_reply_tx;
b481de9c 3780
9fbab516 3781 /* Set up hardware specific Rx handlers */
bb8c093b 3782 iwl3945_hw_rx_handler_setup(priv);
b481de9c
ZY
3783}
3784
3785/**
bb8c093b 3786 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
b481de9c
ZY
3787 * @rxb: Rx buffer to reclaim
3788 *
3789 * If an Rx buffer has an async callback associated with it the callback
3790 * will be executed. The attached skb (if present) will only be freed
3791 * if the callback returns 1
3792 */
bb8c093b
CH
3793static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3794 struct iwl3945_rx_mem_buffer *rxb)
b481de9c 3795{
bb8c093b 3796 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
b481de9c
ZY
3797 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3798 int txq_id = SEQ_TO_QUEUE(sequence);
3799 int index = SEQ_TO_INDEX(sequence);
3800 int huge = sequence & SEQ_HUGE_FRAME;
3801 int cmd_index;
bb8c093b 3802 struct iwl3945_cmd *cmd;
b481de9c
ZY
3803
3804 /* If a Tx command is being handled and it isn't in the actual
3805 * command queue then there a command routing bug has been introduced
3806 * in the queue management code. */
3807 if (txq_id != IWL_CMD_QUEUE_NUM)
3808 IWL_ERROR("Error wrong command queue %d command id 0x%X\n",
3809 txq_id, pkt->hdr.cmd);
3810 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3811
3812 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3813 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3814
3815 /* Input error checking is done when commands are added to queue. */
3816 if (cmd->meta.flags & CMD_WANT_SKB) {
3817 cmd->meta.source->u.skb = rxb->skb;
3818 rxb->skb = NULL;
3819 } else if (cmd->meta.u.callback &&
3820 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3821 rxb->skb = NULL;
3822
bb8c093b 3823 iwl3945_tx_queue_reclaim(priv, txq_id, index);
b481de9c
ZY
3824
3825 if (!(cmd->meta.flags & CMD_ASYNC)) {
3826 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3827 wake_up_interruptible(&priv->wait_command_queue);
3828 }
3829}
3830
3831/************************** RX-FUNCTIONS ****************************/
3832/*
3833 * Rx theory of operation
3834 *
3835 * The host allocates 32 DMA target addresses and passes the host address
3836 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3837 * 0 to 31
3838 *
3839 * Rx Queue Indexes
3840 * The host/firmware share two index registers for managing the Rx buffers.
3841 *
3842 * The READ index maps to the first position that the firmware may be writing
3843 * to -- the driver can read up to (but not including) this position and get
3844 * good data.
3845 * The READ index is managed by the firmware once the card is enabled.
3846 *
3847 * The WRITE index maps to the last position the driver has read from -- the
3848 * position preceding WRITE is the last slot the firmware can place a packet.
3849 *
3850 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3851 * WRITE = READ.
3852 *
9fbab516 3853 * During initialization, the host sets up the READ queue position to the first
b481de9c
ZY
3854 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3855 *
9fbab516 3856 * When the firmware places a packet in a buffer, it will advance the READ index
b481de9c
ZY
3857 * and fire the RX interrupt. The driver can then query the READ index and
3858 * process as many packets as possible, moving the WRITE index forward as it
3859 * resets the Rx queue buffers with new memory.
3860 *
3861 * The management in the driver is as follows:
3862 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3863 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
01ebd063 3864 * to replenish the iwl->rxq->rx_free.
bb8c093b 3865 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
b481de9c
ZY
3866 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3867 * 'processed' and 'read' driver indexes as well)
3868 * + A received packet is processed and handed to the kernel network stack,
3869 * detached from the iwl->rxq. The driver 'processed' index is updated.
3870 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3871 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3872 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3873 * were enough free buffers and RX_STALLED is set it is cleared.
3874 *
3875 *
3876 * Driver sequence:
3877 *
9fbab516
BC
3878 * iwl3945_rx_queue_alloc() Allocates rx_free
3879 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
bb8c093b 3880 * iwl3945_rx_queue_restock
9fbab516 3881 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
b481de9c
ZY
3882 * queue, updates firmware pointers, and updates
3883 * the WRITE index. If insufficient rx_free buffers
bb8c093b 3884 * are available, schedules iwl3945_rx_replenish
b481de9c
ZY
3885 *
3886 * -- enable interrupts --
9fbab516 3887 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
b481de9c
ZY
3888 * READ INDEX, detaching the SKB from the pool.
3889 * Moves the packet buffer from queue to rx_used.
bb8c093b 3890 * Calls iwl3945_rx_queue_restock to refill any empty
b481de9c
ZY
3891 * slots.
3892 * ...
3893 *
3894 */
3895
3896/**
bb8c093b 3897 * iwl3945_rx_queue_space - Return number of free slots available in queue.
b481de9c 3898 */
bb8c093b 3899static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
b481de9c
ZY
3900{
3901 int s = q->read - q->write;
3902 if (s <= 0)
3903 s += RX_QUEUE_SIZE;
3904 /* keep some buffer to not confuse full and empty queue */
3905 s -= 2;
3906 if (s < 0)
3907 s = 0;
3908 return s;
3909}
3910
3911/**
bb8c093b 3912 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
b481de9c 3913 */
bb8c093b 3914int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
b481de9c
ZY
3915{
3916 u32 reg = 0;
3917 int rc = 0;
3918 unsigned long flags;
3919
3920 spin_lock_irqsave(&q->lock, flags);
3921
3922 if (q->need_update == 0)
3923 goto exit_unlock;
3924
6440adb5 3925 /* If power-saving is in use, make sure device is awake */
b481de9c 3926 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
bb8c093b 3927 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
b481de9c
ZY
3928
3929 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
bb8c093b 3930 iwl3945_set_bit(priv, CSR_GP_CNTRL,
b481de9c
ZY
3931 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3932 goto exit_unlock;
3933 }
3934
bb8c093b 3935 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
3936 if (rc)
3937 goto exit_unlock;
3938
6440adb5 3939 /* Device expects a multiple of 8 */
bb8c093b 3940 iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR,
b481de9c 3941 q->write & ~0x7);
bb8c093b 3942 iwl3945_release_nic_access(priv);
6440adb5
CB
3943
3944 /* Else device is assumed to be awake */
b481de9c 3945 } else
6440adb5 3946 /* Device expects a multiple of 8 */
bb8c093b 3947 iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7);
b481de9c
ZY
3948
3949
3950 q->need_update = 0;
3951
3952 exit_unlock:
3953 spin_unlock_irqrestore(&q->lock, flags);
3954 return rc;
3955}
3956
3957/**
9fbab516 3958 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
b481de9c 3959 */
bb8c093b 3960static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
b481de9c
ZY
3961 dma_addr_t dma_addr)
3962{
3963 return cpu_to_le32((u32)dma_addr);
3964}
3965
3966/**
bb8c093b 3967 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
b481de9c 3968 *
9fbab516 3969 * If there are slots in the RX queue that need to be restocked,
b481de9c 3970 * and we have free pre-allocated buffers, fill the ranks as much
9fbab516 3971 * as we can, pulling from rx_free.
b481de9c
ZY
3972 *
3973 * This moves the 'write' index forward to catch up with 'processed', and
3974 * also updates the memory address in the firmware to reference the new
3975 * target buffer.
3976 */
bb8c093b 3977static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
b481de9c 3978{
bb8c093b 3979 struct iwl3945_rx_queue *rxq = &priv->rxq;
b481de9c 3980 struct list_head *element;
bb8c093b 3981 struct iwl3945_rx_mem_buffer *rxb;
b481de9c
ZY
3982 unsigned long flags;
3983 int write, rc;
3984
3985 spin_lock_irqsave(&rxq->lock, flags);
3986 write = rxq->write & ~0x7;
bb8c093b 3987 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
6440adb5 3988 /* Get next free Rx buffer, remove from free list */
b481de9c 3989 element = rxq->rx_free.next;
bb8c093b 3990 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
b481de9c 3991 list_del(element);
6440adb5
CB
3992
3993 /* Point to Rx buffer via next RBD in circular buffer */
bb8c093b 3994 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
b481de9c
ZY
3995 rxq->queue[rxq->write] = rxb;
3996 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3997 rxq->free_count--;
3998 }
3999 spin_unlock_irqrestore(&rxq->lock, flags);
4000 /* If the pre-allocated buffer pool is dropping low, schedule to
4001 * refill it */
4002 if (rxq->free_count <= RX_LOW_WATERMARK)
4003 queue_work(priv->workqueue, &priv->rx_replenish);
4004
4005
6440adb5
CB
4006 /* If we've added more space for the firmware to place data, tell it.
4007 * Increment device's write pointer in multiples of 8. */
b481de9c
ZY
4008 if ((write != (rxq->write & ~0x7))
4009 || (abs(rxq->write - rxq->read) > 7)) {
4010 spin_lock_irqsave(&rxq->lock, flags);
4011 rxq->need_update = 1;
4012 spin_unlock_irqrestore(&rxq->lock, flags);
bb8c093b 4013 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
b481de9c
ZY
4014 if (rc)
4015 return rc;
4016 }
4017
4018 return 0;
4019}
4020
4021/**
bb8c093b 4022 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
b481de9c
ZY
4023 *
4024 * When moving to rx_free an SKB is allocated for the slot.
4025 *
bb8c093b 4026 * Also restock the Rx queue via iwl3945_rx_queue_restock.
01ebd063 4027 * This is called as a scheduled work item (except for during initialization)
b481de9c 4028 */
5c0eef96 4029static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
b481de9c 4030{
bb8c093b 4031 struct iwl3945_rx_queue *rxq = &priv->rxq;
b481de9c 4032 struct list_head *element;
bb8c093b 4033 struct iwl3945_rx_mem_buffer *rxb;
b481de9c
ZY
4034 unsigned long flags;
4035 spin_lock_irqsave(&rxq->lock, flags);
4036 while (!list_empty(&rxq->rx_used)) {
4037 element = rxq->rx_used.next;
bb8c093b 4038 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
6440adb5
CB
4039
4040 /* Alloc a new receive buffer */
b481de9c
ZY
4041 rxb->skb =
4042 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
4043 if (!rxb->skb) {
4044 if (net_ratelimit())
4045 printk(KERN_CRIT DRV_NAME
4046 ": Can not allocate SKB buffers\n");
4047 /* We don't reschedule replenish work here -- we will
4048 * call the restock method and if it still needs
4049 * more buffers it will schedule replenish */
4050 break;
4051 }
12342c47
ZY
4052
4053 /* If radiotap head is required, reserve some headroom here.
4054 * The physical head count is a variable rx_stats->phy_count.
4055 * We reserve 4 bytes here. Plus these extra bytes, the
4056 * headroom of the physical head should be enough for the
4057 * radiotap head that iwl3945 supported. See iwl3945_rt.
4058 */
4059 skb_reserve(rxb->skb, 4);
4060
b481de9c
ZY
4061 priv->alloc_rxb_skb++;
4062 list_del(element);
6440adb5
CB
4063
4064 /* Get physical address of RB/SKB */
b481de9c
ZY
4065 rxb->dma_addr =
4066 pci_map_single(priv->pci_dev, rxb->skb->data,
4067 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4068 list_add_tail(&rxb->list, &rxq->rx_free);
4069 rxq->free_count++;
4070 }
4071 spin_unlock_irqrestore(&rxq->lock, flags);
5c0eef96
MA
4072}
4073
4074/*
4075 * this should be called while priv->lock is locked
4076 */
4fd1f841 4077static void __iwl3945_rx_replenish(void *data)
5c0eef96
MA
4078{
4079 struct iwl3945_priv *priv = data;
4080
4081 iwl3945_rx_allocate(priv);
4082 iwl3945_rx_queue_restock(priv);
4083}
4084
4085
4086void iwl3945_rx_replenish(void *data)
4087{
4088 struct iwl3945_priv *priv = data;
4089 unsigned long flags;
4090
4091 iwl3945_rx_allocate(priv);
b481de9c
ZY
4092
4093 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 4094 iwl3945_rx_queue_restock(priv);
b481de9c
ZY
4095 spin_unlock_irqrestore(&priv->lock, flags);
4096}
4097
4098/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
9fbab516 4099 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
b481de9c
ZY
4100 * This free routine walks the list of POOL entries and if SKB is set to
4101 * non NULL it is unmapped and freed
4102 */
bb8c093b 4103static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
b481de9c
ZY
4104{
4105 int i;
4106 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4107 if (rxq->pool[i].skb != NULL) {
4108 pci_unmap_single(priv->pci_dev,
4109 rxq->pool[i].dma_addr,
4110 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4111 dev_kfree_skb(rxq->pool[i].skb);
4112 }
4113 }
4114
4115 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
4116 rxq->dma_addr);
4117 rxq->bd = NULL;
4118}
4119
bb8c093b 4120int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
b481de9c 4121{
bb8c093b 4122 struct iwl3945_rx_queue *rxq = &priv->rxq;
b481de9c
ZY
4123 struct pci_dev *dev = priv->pci_dev;
4124 int i;
4125
4126 spin_lock_init(&rxq->lock);
4127 INIT_LIST_HEAD(&rxq->rx_free);
4128 INIT_LIST_HEAD(&rxq->rx_used);
6440adb5
CB
4129
4130 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
b481de9c
ZY
4131 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
4132 if (!rxq->bd)
4133 return -ENOMEM;
6440adb5 4134
b481de9c
ZY
4135 /* Fill the rx_used queue with _all_ of the Rx buffers */
4136 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
4137 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
6440adb5 4138
b481de9c
ZY
4139 /* Set us so that we have processed and used all buffers, but have
4140 * not restocked the Rx queue with fresh buffers */
4141 rxq->read = rxq->write = 0;
4142 rxq->free_count = 0;
4143 rxq->need_update = 0;
4144 return 0;
4145}
4146
bb8c093b 4147void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
b481de9c
ZY
4148{
4149 unsigned long flags;
4150 int i;
4151 spin_lock_irqsave(&rxq->lock, flags);
4152 INIT_LIST_HEAD(&rxq->rx_free);
4153 INIT_LIST_HEAD(&rxq->rx_used);
4154 /* Fill the rx_used queue with _all_ of the Rx buffers */
4155 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
4156 /* In the reset function, these buffers may have been allocated
4157 * to an SKB, so we need to unmap and free potential storage */
4158 if (rxq->pool[i].skb != NULL) {
4159 pci_unmap_single(priv->pci_dev,
4160 rxq->pool[i].dma_addr,
4161 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4162 priv->alloc_rxb_skb--;
4163 dev_kfree_skb(rxq->pool[i].skb);
4164 rxq->pool[i].skb = NULL;
4165 }
4166 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4167 }
4168
4169 /* Set us so that we have processed and used all buffers, but have
4170 * not restocked the Rx queue with fresh buffers */
4171 rxq->read = rxq->write = 0;
4172 rxq->free_count = 0;
4173 spin_unlock_irqrestore(&rxq->lock, flags);
4174}
4175
4176/* Convert linear signal-to-noise ratio into dB */
4177static u8 ratio2dB[100] = {
4178/* 0 1 2 3 4 5 6 7 8 9 */
4179 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
4180 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
4181 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
4182 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
4183 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
4184 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
4185 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
4186 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
4187 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
4188 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
4189};
4190
4191/* Calculates a relative dB value from a ratio of linear
4192 * (i.e. not dB) signal levels.
4193 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
bb8c093b 4194int iwl3945_calc_db_from_ratio(int sig_ratio)
b481de9c
ZY
4195{
4196 /* Anything above 1000:1 just report as 60 dB */
4197 if (sig_ratio > 1000)
4198 return 60;
4199
4200 /* Above 100:1, divide by 10 and use table,
4201 * add 20 dB to make up for divide by 10 */
4202 if (sig_ratio > 100)
4203 return (20 + (int)ratio2dB[sig_ratio/10]);
4204
4205 /* We shouldn't see this */
4206 if (sig_ratio < 1)
4207 return 0;
4208
4209 /* Use table for ratios 1:1 - 99:1 */
4210 return (int)ratio2dB[sig_ratio];
4211}
4212
4213#define PERFECT_RSSI (-20) /* dBm */
4214#define WORST_RSSI (-95) /* dBm */
4215#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
4216
4217/* Calculate an indication of rx signal quality (a percentage, not dBm!).
4218 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
4219 * about formulas used below. */
bb8c093b 4220int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
b481de9c
ZY
4221{
4222 int sig_qual;
4223 int degradation = PERFECT_RSSI - rssi_dbm;
4224
4225 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
4226 * as indicator; formula is (signal dbm - noise dbm).
4227 * SNR at or above 40 is a great signal (100%).
4228 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
4229 * Weakest usable signal is usually 10 - 15 dB SNR. */
4230 if (noise_dbm) {
4231 if (rssi_dbm - noise_dbm >= 40)
4232 return 100;
4233 else if (rssi_dbm < noise_dbm)
4234 return 0;
4235 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
4236
4237 /* Else use just the signal level.
4238 * This formula is a least squares fit of data points collected and
4239 * compared with a reference system that had a percentage (%) display
4240 * for signal quality. */
4241 } else
4242 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
4243 (15 * RSSI_RANGE + 62 * degradation)) /
4244 (RSSI_RANGE * RSSI_RANGE);
4245
4246 if (sig_qual > 100)
4247 sig_qual = 100;
4248 else if (sig_qual < 1)
4249 sig_qual = 0;
4250
4251 return sig_qual;
4252}
4253
4254/**
9fbab516 4255 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
b481de9c
ZY
4256 *
4257 * Uses the priv->rx_handlers callback function array to invoke
4258 * the appropriate handlers, including command responses,
4259 * frame-received notifications, and other notifications.
4260 */
bb8c093b 4261static void iwl3945_rx_handle(struct iwl3945_priv *priv)
b481de9c 4262{
bb8c093b
CH
4263 struct iwl3945_rx_mem_buffer *rxb;
4264 struct iwl3945_rx_packet *pkt;
4265 struct iwl3945_rx_queue *rxq = &priv->rxq;
b481de9c
ZY
4266 u32 r, i;
4267 int reclaim;
4268 unsigned long flags;
5c0eef96
MA
4269 u8 fill_rx = 0;
4270 u32 count = 0;
b481de9c 4271
6440adb5
CB
4272 /* uCode's read index (stored in shared DRAM) indicates the last Rx
4273 * buffer that the driver may process (last buffer filled by ucode). */
bb8c093b 4274 r = iwl3945_hw_get_rx_read(priv);
b481de9c
ZY
4275 i = rxq->read;
4276
5c0eef96
MA
4277 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
4278 fill_rx = 1;
b481de9c
ZY
4279 /* Rx interrupt, but nothing sent from uCode */
4280 if (i == r)
4281 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
4282
4283 while (i != r) {
4284 rxb = rxq->queue[i];
4285
9fbab516 4286 /* If an RXB doesn't have a Rx queue slot associated with it,
b481de9c
ZY
4287 * then a bug has been introduced in the queue refilling
4288 * routines -- catch it here */
4289 BUG_ON(rxb == NULL);
4290
4291 rxq->queue[i] = NULL;
4292
4293 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
4294 IWL_RX_BUF_SIZE,
4295 PCI_DMA_FROMDEVICE);
bb8c093b 4296 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
b481de9c
ZY
4297
4298 /* Reclaim a command buffer only if this packet is a response
4299 * to a (driver-originated) command.
4300 * If the packet (e.g. Rx frame) originated from uCode,
4301 * there is no command buffer to reclaim.
4302 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
4303 * but apparently a few don't get set; catch them here. */
4304 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
4305 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
4306 (pkt->hdr.cmd != REPLY_TX);
4307
4308 /* Based on type of command response or notification,
4309 * handle those that need handling via function in
bb8c093b 4310 * rx_handlers table. See iwl3945_setup_rx_handlers() */
b481de9c
ZY
4311 if (priv->rx_handlers[pkt->hdr.cmd]) {
4312 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
4313 "r = %d, i = %d, %s, 0x%02x\n", r, i,
4314 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
4315 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
4316 } else {
4317 /* No handling needed */
4318 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
4319 "r %d i %d No handler needed for %s, 0x%02x\n",
4320 r, i, get_cmd_string(pkt->hdr.cmd),
4321 pkt->hdr.cmd);
4322 }
4323
4324 if (reclaim) {
9fbab516
BC
4325 /* Invoke any callbacks, transfer the skb to caller, and
4326 * fire off the (possibly) blocking iwl3945_send_cmd()
b481de9c
ZY
4327 * as we reclaim the driver command queue */
4328 if (rxb && rxb->skb)
bb8c093b 4329 iwl3945_tx_cmd_complete(priv, rxb);
b481de9c
ZY
4330 else
4331 IWL_WARNING("Claim null rxb?\n");
4332 }
4333
4334 /* For now we just don't re-use anything. We can tweak this
4335 * later to try and re-use notification packets and SKBs that
4336 * fail to Rx correctly */
4337 if (rxb->skb != NULL) {
4338 priv->alloc_rxb_skb--;
4339 dev_kfree_skb_any(rxb->skb);
4340 rxb->skb = NULL;
4341 }
4342
4343 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
4344 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4345 spin_lock_irqsave(&rxq->lock, flags);
4346 list_add_tail(&rxb->list, &priv->rxq.rx_used);
4347 spin_unlock_irqrestore(&rxq->lock, flags);
4348 i = (i + 1) & RX_QUEUE_MASK;
5c0eef96
MA
4349 /* If there are a lot of unused frames,
4350 * restock the Rx queue so ucode won't assert. */
4351 if (fill_rx) {
4352 count++;
4353 if (count >= 8) {
4354 priv->rxq.read = i;
4355 __iwl3945_rx_replenish(priv);
4356 count = 0;
4357 }
4358 }
b481de9c
ZY
4359 }
4360
4361 /* Backtrack one entry */
4362 priv->rxq.read = i;
bb8c093b 4363 iwl3945_rx_queue_restock(priv);
b481de9c
ZY
4364}
4365
6440adb5
CB
4366/**
4367 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
4368 */
bb8c093b
CH
4369static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
4370 struct iwl3945_tx_queue *txq)
b481de9c
ZY
4371{
4372 u32 reg = 0;
4373 int rc = 0;
4374 int txq_id = txq->q.id;
4375
4376 if (txq->need_update == 0)
4377 return rc;
4378
4379 /* if we're trying to save power */
4380 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
4381 /* wake up nic if it's powered down ...
4382 * uCode will wake up, and interrupt us again, so next
4383 * time we'll skip this part. */
bb8c093b 4384 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
b481de9c
ZY
4385
4386 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
4387 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
bb8c093b 4388 iwl3945_set_bit(priv, CSR_GP_CNTRL,
b481de9c
ZY
4389 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
4390 return rc;
4391 }
4392
4393 /* restore this queue's parameters in nic hardware. */
bb8c093b 4394 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
4395 if (rc)
4396 return rc;
bb8c093b 4397 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
fc4b6853 4398 txq->q.write_ptr | (txq_id << 8));
bb8c093b 4399 iwl3945_release_nic_access(priv);
b481de9c
ZY
4400
4401 /* else not in power-save mode, uCode will never sleep when we're
4402 * trying to tx (during RFKILL, we're not trying to tx). */
4403 } else
bb8c093b 4404 iwl3945_write32(priv, HBUS_TARG_WRPTR,
fc4b6853 4405 txq->q.write_ptr | (txq_id << 8));
b481de9c
ZY
4406
4407 txq->need_update = 0;
4408
4409 return rc;
4410}
4411
c8b0e6e1 4412#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 4413static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
b481de9c 4414{
0795af57
JP
4415 DECLARE_MAC_BUF(mac);
4416
b481de9c 4417 IWL_DEBUG_RADIO("RX CONFIG:\n");
bb8c093b 4418 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
b481de9c
ZY
4419 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
4420 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
4421 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
4422 le32_to_cpu(rxon->filter_flags));
4423 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
4424 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
4425 rxon->ofdm_basic_rates);
4426 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
0795af57
JP
4427 IWL_DEBUG_RADIO("u8[6] node_addr: %s\n",
4428 print_mac(mac, rxon->node_addr));
4429 IWL_DEBUG_RADIO("u8[6] bssid_addr: %s\n",
4430 print_mac(mac, rxon->bssid_addr));
b481de9c
ZY
4431 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
4432}
4433#endif
4434
bb8c093b 4435static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
b481de9c
ZY
4436{
4437 IWL_DEBUG_ISR("Enabling interrupts\n");
4438 set_bit(STATUS_INT_ENABLED, &priv->status);
bb8c093b 4439 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
b481de9c
ZY
4440}
4441
bb8c093b 4442static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
b481de9c
ZY
4443{
4444 clear_bit(STATUS_INT_ENABLED, &priv->status);
4445
4446 /* disable interrupts from uCode/NIC to host */
bb8c093b 4447 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
b481de9c
ZY
4448
4449 /* acknowledge/clear/reset any interrupts still pending
4450 * from uCode or flow handler (Rx/Tx DMA) */
bb8c093b
CH
4451 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4452 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
b481de9c
ZY
4453 IWL_DEBUG_ISR("Disabled interrupts\n");
4454}
4455
4456static const char *desc_lookup(int i)
4457{
4458 switch (i) {
4459 case 1:
4460 return "FAIL";
4461 case 2:
4462 return "BAD_PARAM";
4463 case 3:
4464 return "BAD_CHECKSUM";
4465 case 4:
4466 return "NMI_INTERRUPT";
4467 case 5:
4468 return "SYSASSERT";
4469 case 6:
4470 return "FATAL_ERROR";
4471 }
4472
4473 return "UNKNOWN";
4474}
4475
4476#define ERROR_START_OFFSET (1 * sizeof(u32))
4477#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4478
bb8c093b 4479static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
b481de9c
ZY
4480{
4481 u32 i;
4482 u32 desc, time, count, base, data1;
4483 u32 blink1, blink2, ilink1, ilink2;
4484 int rc;
4485
4486 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4487
bb8c093b 4488 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
b481de9c
ZY
4489 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4490 return;
4491 }
4492
bb8c093b 4493 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
4494 if (rc) {
4495 IWL_WARNING("Can not read from adapter at this time.\n");
4496 return;
4497 }
4498
bb8c093b 4499 count = iwl3945_read_targ_mem(priv, base);
b481de9c
ZY
4500
4501 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4502 IWL_ERROR("Start IWL Error Log Dump:\n");
4503 IWL_ERROR("Status: 0x%08lX, Config: %08X count: %d\n",
4504 priv->status, priv->config, count);
4505 }
4506
4507 IWL_ERROR("Desc Time asrtPC blink2 "
4508 "ilink1 nmiPC Line\n");
4509 for (i = ERROR_START_OFFSET;
4510 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4511 i += ERROR_ELEM_SIZE) {
bb8c093b 4512 desc = iwl3945_read_targ_mem(priv, base + i);
b481de9c 4513 time =
bb8c093b 4514 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
b481de9c 4515 blink1 =
bb8c093b 4516 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
b481de9c 4517 blink2 =
bb8c093b 4518 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
b481de9c 4519 ilink1 =
bb8c093b 4520 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
b481de9c 4521 ilink2 =
bb8c093b 4522 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
b481de9c 4523 data1 =
bb8c093b 4524 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
b481de9c
ZY
4525
4526 IWL_ERROR
4527 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4528 desc_lookup(desc), desc, time, blink1, blink2,
4529 ilink1, ilink2, data1);
4530 }
4531
bb8c093b 4532 iwl3945_release_nic_access(priv);
b481de9c
ZY
4533
4534}
4535
f58177b9 4536#define EVENT_START_OFFSET (6 * sizeof(u32))
b481de9c
ZY
4537
4538/**
bb8c093b 4539 * iwl3945_print_event_log - Dump error event log to syslog
b481de9c 4540 *
bb8c093b 4541 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
b481de9c 4542 */
bb8c093b 4543static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
b481de9c
ZY
4544 u32 num_events, u32 mode)
4545{
4546 u32 i;
4547 u32 base; /* SRAM byte address of event log header */
4548 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4549 u32 ptr; /* SRAM byte address of log data */
4550 u32 ev, time, data; /* event log data */
4551
4552 if (num_events == 0)
4553 return;
4554
4555 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4556
4557 if (mode == 0)
4558 event_size = 2 * sizeof(u32);
4559 else
4560 event_size = 3 * sizeof(u32);
4561
4562 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4563
4564 /* "time" is actually "data" for mode 0 (no timestamp).
4565 * place event id # at far right for easier visual parsing. */
4566 for (i = 0; i < num_events; i++) {
bb8c093b 4567 ev = iwl3945_read_targ_mem(priv, ptr);
b481de9c 4568 ptr += sizeof(u32);
bb8c093b 4569 time = iwl3945_read_targ_mem(priv, ptr);
b481de9c
ZY
4570 ptr += sizeof(u32);
4571 if (mode == 0)
4572 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4573 else {
bb8c093b 4574 data = iwl3945_read_targ_mem(priv, ptr);
b481de9c
ZY
4575 ptr += sizeof(u32);
4576 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4577 }
4578 }
4579}
4580
bb8c093b 4581static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
b481de9c
ZY
4582{
4583 int rc;
4584 u32 base; /* SRAM byte address of event log header */
4585 u32 capacity; /* event log capacity in # entries */
4586 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4587 u32 num_wraps; /* # times uCode wrapped to top of log */
4588 u32 next_entry; /* index of next entry to be written by uCode */
4589 u32 size; /* # entries that we'll print */
4590
4591 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
bb8c093b 4592 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
b481de9c
ZY
4593 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4594 return;
4595 }
4596
bb8c093b 4597 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
4598 if (rc) {
4599 IWL_WARNING("Can not read from adapter at this time.\n");
4600 return;
4601 }
4602
4603 /* event log header */
bb8c093b
CH
4604 capacity = iwl3945_read_targ_mem(priv, base);
4605 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4606 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4607 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
b481de9c
ZY
4608
4609 size = num_wraps ? capacity : next_entry;
4610
4611 /* bail out if nothing in log */
4612 if (size == 0) {
583fab37 4613 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
bb8c093b 4614 iwl3945_release_nic_access(priv);
b481de9c
ZY
4615 return;
4616 }
4617
583fab37 4618 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
b481de9c
ZY
4619 size, num_wraps);
4620
4621 /* if uCode has wrapped back to top of log, start at the oldest entry,
4622 * i.e the next one that uCode would fill. */
4623 if (num_wraps)
bb8c093b 4624 iwl3945_print_event_log(priv, next_entry,
b481de9c
ZY
4625 capacity - next_entry, mode);
4626
4627 /* (then/else) start at top of log */
bb8c093b 4628 iwl3945_print_event_log(priv, 0, next_entry, mode);
b481de9c 4629
bb8c093b 4630 iwl3945_release_nic_access(priv);
b481de9c
ZY
4631}
4632
4633/**
bb8c093b 4634 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
b481de9c 4635 */
bb8c093b 4636static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
b481de9c 4637{
bb8c093b 4638 /* Set the FW error flag -- cleared on iwl3945_down */
b481de9c
ZY
4639 set_bit(STATUS_FW_ERROR, &priv->status);
4640
4641 /* Cancel currently queued command. */
4642 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4643
c8b0e6e1 4644#ifdef CONFIG_IWL3945_DEBUG
bb8c093b
CH
4645 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4646 iwl3945_dump_nic_error_log(priv);
4647 iwl3945_dump_nic_event_log(priv);
4648 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
b481de9c
ZY
4649 }
4650#endif
4651
4652 wake_up_interruptible(&priv->wait_command_queue);
4653
4654 /* Keep the restart process from trying to send host
4655 * commands by clearing the INIT status bit */
4656 clear_bit(STATUS_READY, &priv->status);
4657
4658 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4659 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4660 "Restarting adapter due to uCode error.\n");
4661
bb8c093b 4662 if (iwl3945_is_associated(priv)) {
b481de9c
ZY
4663 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4664 sizeof(priv->recovery_rxon));
4665 priv->error_recovering = 1;
4666 }
4667 queue_work(priv->workqueue, &priv->restart);
4668 }
4669}
4670
bb8c093b 4671static void iwl3945_error_recovery(struct iwl3945_priv *priv)
b481de9c
ZY
4672{
4673 unsigned long flags;
4674
4675 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4676 sizeof(priv->staging_rxon));
4677 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 4678 iwl3945_commit_rxon(priv);
b481de9c 4679
bb8c093b 4680 iwl3945_add_station(priv, priv->bssid, 1, 0);
b481de9c
ZY
4681
4682 spin_lock_irqsave(&priv->lock, flags);
4683 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4684 priv->error_recovering = 0;
4685 spin_unlock_irqrestore(&priv->lock, flags);
4686}
4687
bb8c093b 4688static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
b481de9c
ZY
4689{
4690 u32 inta, handled = 0;
4691 u32 inta_fh;
4692 unsigned long flags;
c8b0e6e1 4693#ifdef CONFIG_IWL3945_DEBUG
b481de9c
ZY
4694 u32 inta_mask;
4695#endif
4696
4697 spin_lock_irqsave(&priv->lock, flags);
4698
4699 /* Ack/clear/reset pending uCode interrupts.
4700 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4701 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
bb8c093b
CH
4702 inta = iwl3945_read32(priv, CSR_INT);
4703 iwl3945_write32(priv, CSR_INT, inta);
b481de9c
ZY
4704
4705 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4706 * Any new interrupts that happen after this, either while we're
4707 * in this tasklet, or later, will show up in next ISR/tasklet. */
bb8c093b
CH
4708 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4709 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
b481de9c 4710
c8b0e6e1 4711#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 4712 if (iwl3945_debug_level & IWL_DL_ISR) {
9fbab516
BC
4713 /* just for debug */
4714 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
b481de9c
ZY
4715 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4716 inta, inta_mask, inta_fh);
4717 }
4718#endif
4719
4720 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4721 * atomic, make sure that inta covers all the interrupts that
4722 * we've discovered, even if FH interrupt came in just after
4723 * reading CSR_INT. */
4724 if (inta_fh & CSR_FH_INT_RX_MASK)
4725 inta |= CSR_INT_BIT_FH_RX;
4726 if (inta_fh & CSR_FH_INT_TX_MASK)
4727 inta |= CSR_INT_BIT_FH_TX;
4728
4729 /* Now service all interrupt bits discovered above. */
4730 if (inta & CSR_INT_BIT_HW_ERR) {
4731 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4732
4733 /* Tell the device to stop sending interrupts */
bb8c093b 4734 iwl3945_disable_interrupts(priv);
b481de9c 4735
bb8c093b 4736 iwl3945_irq_handle_error(priv);
b481de9c
ZY
4737
4738 handled |= CSR_INT_BIT_HW_ERR;
4739
4740 spin_unlock_irqrestore(&priv->lock, flags);
4741
4742 return;
4743 }
4744
c8b0e6e1 4745#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 4746 if (iwl3945_debug_level & (IWL_DL_ISR)) {
b481de9c
ZY
4747 /* NIC fires this, but we don't use it, redundant with WAKEUP */
4748 if (inta & CSR_INT_BIT_MAC_CLK_ACTV)
4749 IWL_DEBUG_ISR("Microcode started or stopped.\n");
4750
4751 /* Alive notification via Rx interrupt will do the real work */
4752 if (inta & CSR_INT_BIT_ALIVE)
4753 IWL_DEBUG_ISR("Alive interrupt\n");
4754 }
4755#endif
4756 /* Safely ignore these bits for debug checks below */
4757 inta &= ~(CSR_INT_BIT_MAC_CLK_ACTV | CSR_INT_BIT_ALIVE);
4758
4759 /* HW RF KILL switch toggled (4965 only) */
4760 if (inta & CSR_INT_BIT_RF_KILL) {
4761 int hw_rf_kill = 0;
bb8c093b 4762 if (!(iwl3945_read32(priv, CSR_GP_CNTRL) &
b481de9c
ZY
4763 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
4764 hw_rf_kill = 1;
4765
4766 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL | IWL_DL_ISR,
4767 "RF_KILL bit toggled to %s.\n",
4768 hw_rf_kill ? "disable radio":"enable radio");
4769
4770 /* Queue restart only if RF_KILL switch was set to "kill"
4771 * when we loaded driver, and is now set to "enable".
4772 * After we're Alive, RF_KILL gets handled by
4773 * iwl_rx_card_state_notif() */
53e49093
ZY
4774 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status)) {
4775 clear_bit(STATUS_RF_KILL_HW, &priv->status);
b481de9c 4776 queue_work(priv->workqueue, &priv->restart);
53e49093 4777 }
b481de9c
ZY
4778
4779 handled |= CSR_INT_BIT_RF_KILL;
4780 }
4781
4782 /* Chip got too hot and stopped itself (4965 only) */
4783 if (inta & CSR_INT_BIT_CT_KILL) {
4784 IWL_ERROR("Microcode CT kill error detected.\n");
4785 handled |= CSR_INT_BIT_CT_KILL;
4786 }
4787
4788 /* Error detected by uCode */
4789 if (inta & CSR_INT_BIT_SW_ERR) {
4790 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4791 inta);
bb8c093b 4792 iwl3945_irq_handle_error(priv);
b481de9c
ZY
4793 handled |= CSR_INT_BIT_SW_ERR;
4794 }
4795
4796 /* uCode wakes up after power-down sleep */
4797 if (inta & CSR_INT_BIT_WAKEUP) {
4798 IWL_DEBUG_ISR("Wakeup interrupt\n");
bb8c093b
CH
4799 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4800 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4801 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4802 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4803 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4804 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4805 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
b481de9c
ZY
4806
4807 handled |= CSR_INT_BIT_WAKEUP;
4808 }
4809
4810 /* All uCode command responses, including Tx command responses,
4811 * Rx "responses" (frame-received notification), and other
4812 * notifications from uCode come through here*/
4813 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
bb8c093b 4814 iwl3945_rx_handle(priv);
b481de9c
ZY
4815 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4816 }
4817
4818 if (inta & CSR_INT_BIT_FH_TX) {
4819 IWL_DEBUG_ISR("Tx interrupt\n");
4820
bb8c093b
CH
4821 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4822 if (!iwl3945_grab_nic_access(priv)) {
4823 iwl3945_write_direct32(priv,
b481de9c
ZY
4824 FH_TCSR_CREDIT
4825 (ALM_FH_SRVC_CHNL), 0x0);
bb8c093b 4826 iwl3945_release_nic_access(priv);
b481de9c
ZY
4827 }
4828 handled |= CSR_INT_BIT_FH_TX;
4829 }
4830
4831 if (inta & ~handled)
4832 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4833
4834 if (inta & ~CSR_INI_SET_MASK) {
4835 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4836 inta & ~CSR_INI_SET_MASK);
4837 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4838 }
4839
4840 /* Re-enable all interrupts */
bb8c093b 4841 iwl3945_enable_interrupts(priv);
b481de9c 4842
c8b0e6e1 4843#ifdef CONFIG_IWL3945_DEBUG
bb8c093b
CH
4844 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4845 inta = iwl3945_read32(priv, CSR_INT);
4846 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4847 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
b481de9c
ZY
4848 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4849 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4850 }
4851#endif
4852 spin_unlock_irqrestore(&priv->lock, flags);
4853}
4854
bb8c093b 4855static irqreturn_t iwl3945_isr(int irq, void *data)
b481de9c 4856{
bb8c093b 4857 struct iwl3945_priv *priv = data;
b481de9c
ZY
4858 u32 inta, inta_mask;
4859 u32 inta_fh;
4860 if (!priv)
4861 return IRQ_NONE;
4862
4863 spin_lock(&priv->lock);
4864
4865 /* Disable (but don't clear!) interrupts here to avoid
4866 * back-to-back ISRs and sporadic interrupts from our NIC.
4867 * If we have something to service, the tasklet will re-enable ints.
4868 * If we *don't* have something, we'll re-enable before leaving here. */
bb8c093b
CH
4869 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4870 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
b481de9c
ZY
4871
4872 /* Discover which interrupts are active/pending */
bb8c093b
CH
4873 inta = iwl3945_read32(priv, CSR_INT);
4874 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
b481de9c
ZY
4875
4876 /* Ignore interrupt if there's nothing in NIC to service.
4877 * This may be due to IRQ shared with another device,
4878 * or due to sporadic interrupts thrown from our NIC. */
4879 if (!inta && !inta_fh) {
4880 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4881 goto none;
4882 }
4883
4884 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4885 /* Hardware disappeared */
4886 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
cb4da1a3 4887 goto unplugged;
b481de9c
ZY
4888 }
4889
4890 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4891 inta, inta_mask, inta_fh);
4892
bb8c093b 4893 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
b481de9c 4894 tasklet_schedule(&priv->irq_tasklet);
cb4da1a3 4895unplugged:
b481de9c
ZY
4896 spin_unlock(&priv->lock);
4897
4898 return IRQ_HANDLED;
4899
4900 none:
4901 /* re-enable interrupts here since we don't have anything to service. */
bb8c093b 4902 iwl3945_enable_interrupts(priv);
b481de9c
ZY
4903 spin_unlock(&priv->lock);
4904 return IRQ_NONE;
4905}
4906
4907/************************** EEPROM BANDS ****************************
4908 *
bb8c093b 4909 * The iwl3945_eeprom_band definitions below provide the mapping from the
b481de9c
ZY
4910 * EEPROM contents to the specific channel number supported for each
4911 * band.
4912 *
bb8c093b 4913 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
b481de9c
ZY
4914 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4915 * The specific geography and calibration information for that channel
4916 * is contained in the eeprom map itself.
4917 *
4918 * During init, we copy the eeprom information and channel map
4919 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4920 *
4921 * channel_map_24/52 provides the index in the channel_info array for a
4922 * given channel. We have to have two separate maps as there is channel
4923 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4924 * band_2
4925 *
4926 * A value of 0xff stored in the channel_map indicates that the channel
4927 * is not supported by the hardware at all.
4928 *
4929 * A value of 0xfe in the channel_map indicates that the channel is not
4930 * valid for Tx with the current hardware. This means that
4931 * while the system can tune and receive on a given channel, it may not
4932 * be able to associate or transmit any frames on that
4933 * channel. There is no corresponding channel information for that
4934 * entry.
4935 *
4936 *********************************************************************/
4937
4938/* 2.4 GHz */
bb8c093b 4939static const u8 iwl3945_eeprom_band_1[14] = {
b481de9c
ZY
4940 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4941};
4942
4943/* 5.2 GHz bands */
9fbab516 4944static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
b481de9c
ZY
4945 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4946};
4947
9fbab516 4948static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
b481de9c
ZY
4949 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4950};
4951
bb8c093b 4952static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
b481de9c
ZY
4953 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4954};
4955
bb8c093b 4956static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
b481de9c
ZY
4957 145, 149, 153, 157, 161, 165
4958};
4959
bb8c093b 4960static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
b481de9c 4961 int *eeprom_ch_count,
bb8c093b 4962 const struct iwl3945_eeprom_channel
b481de9c
ZY
4963 **eeprom_ch_info,
4964 const u8 **eeprom_ch_index)
4965{
4966 switch (band) {
4967 case 1: /* 2.4GHz band */
bb8c093b 4968 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
b481de9c 4969 *eeprom_ch_info = priv->eeprom.band_1_channels;
bb8c093b 4970 *eeprom_ch_index = iwl3945_eeprom_band_1;
b481de9c 4971 break;
9fbab516 4972 case 2: /* 4.9GHz band */
bb8c093b 4973 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
b481de9c 4974 *eeprom_ch_info = priv->eeprom.band_2_channels;
bb8c093b 4975 *eeprom_ch_index = iwl3945_eeprom_band_2;
b481de9c
ZY
4976 break;
4977 case 3: /* 5.2GHz band */
bb8c093b 4978 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
b481de9c 4979 *eeprom_ch_info = priv->eeprom.band_3_channels;
bb8c093b 4980 *eeprom_ch_index = iwl3945_eeprom_band_3;
b481de9c 4981 break;
9fbab516 4982 case 4: /* 5.5GHz band */
bb8c093b 4983 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
b481de9c 4984 *eeprom_ch_info = priv->eeprom.band_4_channels;
bb8c093b 4985 *eeprom_ch_index = iwl3945_eeprom_band_4;
b481de9c 4986 break;
9fbab516 4987 case 5: /* 5.7GHz band */
bb8c093b 4988 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
b481de9c 4989 *eeprom_ch_info = priv->eeprom.band_5_channels;
bb8c093b 4990 *eeprom_ch_index = iwl3945_eeprom_band_5;
b481de9c
ZY
4991 break;
4992 default:
4993 BUG();
4994 return;
4995 }
4996}
4997
6440adb5
CB
4998/**
4999 * iwl3945_get_channel_info - Find driver's private channel info
5000 *
5001 * Based on band and channel number.
5002 */
bb8c093b 5003const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
b481de9c
ZY
5004 int phymode, u16 channel)
5005{
5006 int i;
5007
5008 switch (phymode) {
5009 case MODE_IEEE80211A:
5010 for (i = 14; i < priv->channel_count; i++) {
5011 if (priv->channel_info[i].channel == channel)
5012 return &priv->channel_info[i];
5013 }
5014 break;
5015
5016 case MODE_IEEE80211B:
5017 case MODE_IEEE80211G:
5018 if (channel >= 1 && channel <= 14)
5019 return &priv->channel_info[channel - 1];
5020 break;
5021
5022 }
5023
5024 return NULL;
5025}
5026
5027#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
5028 ? # x " " : "")
5029
6440adb5
CB
5030/**
5031 * iwl3945_init_channel_map - Set up driver's info for all possible channels
5032 */
bb8c093b 5033static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
b481de9c
ZY
5034{
5035 int eeprom_ch_count = 0;
5036 const u8 *eeprom_ch_index = NULL;
bb8c093b 5037 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
b481de9c 5038 int band, ch;
bb8c093b 5039 struct iwl3945_channel_info *ch_info;
b481de9c
ZY
5040
5041 if (priv->channel_count) {
5042 IWL_DEBUG_INFO("Channel map already initialized.\n");
5043 return 0;
5044 }
5045
5046 if (priv->eeprom.version < 0x2f) {
5047 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
5048 priv->eeprom.version);
5049 return -EINVAL;
5050 }
5051
5052 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
5053
5054 priv->channel_count =
bb8c093b
CH
5055 ARRAY_SIZE(iwl3945_eeprom_band_1) +
5056 ARRAY_SIZE(iwl3945_eeprom_band_2) +
5057 ARRAY_SIZE(iwl3945_eeprom_band_3) +
5058 ARRAY_SIZE(iwl3945_eeprom_band_4) +
5059 ARRAY_SIZE(iwl3945_eeprom_band_5);
b481de9c
ZY
5060
5061 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
5062
bb8c093b 5063 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
b481de9c
ZY
5064 priv->channel_count, GFP_KERNEL);
5065 if (!priv->channel_info) {
5066 IWL_ERROR("Could not allocate channel_info\n");
5067 priv->channel_count = 0;
5068 return -ENOMEM;
5069 }
5070
5071 ch_info = priv->channel_info;
5072
5073 /* Loop through the 5 EEPROM bands adding them in order to the
5074 * channel map we maintain (that contains additional information than
5075 * what just in the EEPROM) */
5076 for (band = 1; band <= 5; band++) {
5077
bb8c093b 5078 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
b481de9c
ZY
5079 &eeprom_ch_info, &eeprom_ch_index);
5080
5081 /* Loop through each band adding each of the channels */
5082 for (ch = 0; ch < eeprom_ch_count; ch++) {
5083 ch_info->channel = eeprom_ch_index[ch];
5084 ch_info->phymode = (band == 1) ? MODE_IEEE80211B :
5085 MODE_IEEE80211A;
5086
5087 /* permanently store EEPROM's channel regulatory flags
5088 * and max power in channel info database. */
5089 ch_info->eeprom = eeprom_ch_info[ch];
5090
5091 /* Copy the run-time flags so they are there even on
5092 * invalid channels */
5093 ch_info->flags = eeprom_ch_info[ch].flags;
5094
5095 if (!(is_channel_valid(ch_info))) {
5096 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
5097 "No traffic\n",
5098 ch_info->channel,
5099 ch_info->flags,
5100 is_channel_a_band(ch_info) ?
5101 "5.2" : "2.4");
5102 ch_info++;
5103 continue;
5104 }
5105
5106 /* Initialize regulatory-based run-time data */
5107 ch_info->max_power_avg = ch_info->curr_txpow =
5108 eeprom_ch_info[ch].max_power_avg;
5109 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
5110 ch_info->min_power = 0;
5111
5112 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
5113 " %ddBm): Ad-Hoc %ssupported\n",
5114 ch_info->channel,
5115 is_channel_a_band(ch_info) ?
5116 "5.2" : "2.4",
5117 CHECK_AND_PRINT(IBSS),
5118 CHECK_AND_PRINT(ACTIVE),
5119 CHECK_AND_PRINT(RADAR),
5120 CHECK_AND_PRINT(WIDE),
5121 CHECK_AND_PRINT(NARROW),
5122 CHECK_AND_PRINT(DFS),
5123 eeprom_ch_info[ch].flags,
5124 eeprom_ch_info[ch].max_power_avg,
5125 ((eeprom_ch_info[ch].
5126 flags & EEPROM_CHANNEL_IBSS)
5127 && !(eeprom_ch_info[ch].
5128 flags & EEPROM_CHANNEL_RADAR))
5129 ? "" : "not ");
5130
5131 /* Set the user_txpower_limit to the highest power
5132 * supported by any channel */
5133 if (eeprom_ch_info[ch].max_power_avg >
5134 priv->user_txpower_limit)
5135 priv->user_txpower_limit =
5136 eeprom_ch_info[ch].max_power_avg;
5137
5138 ch_info++;
5139 }
5140 }
5141
6440adb5 5142 /* Set up txpower settings in driver for all channels */
b481de9c
ZY
5143 if (iwl3945_txpower_set_from_eeprom(priv))
5144 return -EIO;
5145
5146 return 0;
5147}
5148
5149/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
5150 * sending probe req. This should be set long enough to hear probe responses
5151 * from more than one AP. */
5152#define IWL_ACTIVE_DWELL_TIME_24 (20) /* all times in msec */
5153#define IWL_ACTIVE_DWELL_TIME_52 (10)
5154
5155/* For faster active scanning, scan will move to the next channel if fewer than
5156 * PLCP_QUIET_THRESH packets are heard on this channel within
5157 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
5158 * time if it's a quiet channel (nothing responded to our probe, and there's
5159 * no other traffic).
5160 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
5161#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
5162#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(5) /* msec */
5163
5164/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
5165 * Must be set longer than active dwell time.
5166 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
5167#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
5168#define IWL_PASSIVE_DWELL_TIME_52 (10)
5169#define IWL_PASSIVE_DWELL_BASE (100)
5170#define IWL_CHANNEL_TUNE_TIME 5
5171
bb8c093b 5172static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv, int phymode)
b481de9c
ZY
5173{
5174 if (phymode == MODE_IEEE80211A)
5175 return IWL_ACTIVE_DWELL_TIME_52;
5176 else
5177 return IWL_ACTIVE_DWELL_TIME_24;
5178}
5179
bb8c093b 5180static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv, int phymode)
b481de9c 5181{
bb8c093b 5182 u16 active = iwl3945_get_active_dwell_time(priv, phymode);
b481de9c
ZY
5183 u16 passive = (phymode != MODE_IEEE80211A) ?
5184 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
5185 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
5186
bb8c093b 5187 if (iwl3945_is_associated(priv)) {
b481de9c
ZY
5188 /* If we're associated, we clamp the maximum passive
5189 * dwell time to be 98% of the beacon interval (minus
5190 * 2 * channel tune time) */
5191 passive = priv->beacon_int;
5192 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
5193 passive = IWL_PASSIVE_DWELL_BASE;
5194 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
5195 }
5196
5197 if (passive <= active)
5198 passive = active + 1;
5199
5200 return passive;
5201}
5202
bb8c093b 5203static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv, int phymode,
b481de9c 5204 u8 is_active, u8 direct_mask,
bb8c093b 5205 struct iwl3945_scan_channel *scan_ch)
b481de9c
ZY
5206{
5207 const struct ieee80211_channel *channels = NULL;
5208 const struct ieee80211_hw_mode *hw_mode;
bb8c093b 5209 const struct iwl3945_channel_info *ch_info;
b481de9c
ZY
5210 u16 passive_dwell = 0;
5211 u16 active_dwell = 0;
5212 int added, i;
5213
bb8c093b 5214 hw_mode = iwl3945_get_hw_mode(priv, phymode);
b481de9c
ZY
5215 if (!hw_mode)
5216 return 0;
5217
5218 channels = hw_mode->channels;
5219
bb8c093b
CH
5220 active_dwell = iwl3945_get_active_dwell_time(priv, phymode);
5221 passive_dwell = iwl3945_get_passive_dwell_time(priv, phymode);
b481de9c
ZY
5222
5223 for (i = 0, added = 0; i < hw_mode->num_channels; i++) {
5224 if (channels[i].chan ==
5225 le16_to_cpu(priv->active_rxon.channel)) {
bb8c093b 5226 if (iwl3945_is_associated(priv)) {
b481de9c
ZY
5227 IWL_DEBUG_SCAN
5228 ("Skipping current channel %d\n",
5229 le16_to_cpu(priv->active_rxon.channel));
5230 continue;
5231 }
5232 } else if (priv->only_active_channel)
5233 continue;
5234
5235 scan_ch->channel = channels[i].chan;
5236
bb8c093b 5237 ch_info = iwl3945_get_channel_info(priv, phymode, scan_ch->channel);
b481de9c
ZY
5238 if (!is_channel_valid(ch_info)) {
5239 IWL_DEBUG_SCAN("Channel %d is INVALID for this SKU.\n",
5240 scan_ch->channel);
5241 continue;
5242 }
5243
5244 if (!is_active || is_channel_passive(ch_info) ||
5245 !(channels[i].flag & IEEE80211_CHAN_W_ACTIVE_SCAN))
5246 scan_ch->type = 0; /* passive */
5247 else
5248 scan_ch->type = 1; /* active */
5249
5250 if (scan_ch->type & 1)
5251 scan_ch->type |= (direct_mask << 1);
5252
5253 if (is_channel_narrow(ch_info))
5254 scan_ch->type |= (1 << 7);
5255
5256 scan_ch->active_dwell = cpu_to_le16(active_dwell);
5257 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
5258
9fbab516 5259 /* Set txpower levels to defaults */
b481de9c
ZY
5260 scan_ch->tpc.dsp_atten = 110;
5261 /* scan_pwr_info->tpc.dsp_atten; */
5262
5263 /*scan_pwr_info->tpc.tx_gain; */
5264 if (phymode == MODE_IEEE80211A)
5265 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
5266 else {
5267 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
5268 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
9fbab516
BC
5269 * power level:
5270 * scan_ch->tpc.tx_gain = ((1<<5) | (2 << 3)) | 3;
b481de9c
ZY
5271 */
5272 }
5273
5274 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
5275 scan_ch->channel,
5276 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
5277 (scan_ch->type & 1) ?
5278 active_dwell : passive_dwell);
5279
5280 scan_ch++;
5281 added++;
5282 }
5283
5284 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
5285 return added;
5286}
5287
bb8c093b 5288static void iwl3945_reset_channel_flag(struct iwl3945_priv *priv)
b481de9c
ZY
5289{
5290 int i, j;
5291 for (i = 0; i < 3; i++) {
5292 struct ieee80211_hw_mode *hw_mode = (void *)&priv->modes[i];
5293 for (j = 0; j < hw_mode->num_channels; j++)
5294 hw_mode->channels[j].flag = hw_mode->channels[j].val;
5295 }
5296}
5297
bb8c093b 5298static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
b481de9c
ZY
5299 struct ieee80211_rate *rates)
5300{
5301 int i;
5302
5303 for (i = 0; i < IWL_RATE_COUNT; i++) {
bb8c093b 5304 rates[i].rate = iwl3945_rates[i].ieee * 5;
b481de9c
ZY
5305 rates[i].val = i; /* Rate scaling will work on indexes */
5306 rates[i].val2 = i;
5307 rates[i].flags = IEEE80211_RATE_SUPPORTED;
5308 /* Only OFDM have the bits-per-symbol set */
5309 if ((i <= IWL_LAST_OFDM_RATE) && (i >= IWL_FIRST_OFDM_RATE))
5310 rates[i].flags |= IEEE80211_RATE_OFDM;
5311 else {
5312 /*
5313 * If CCK 1M then set rate flag to CCK else CCK_2
5314 * which is CCK | PREAMBLE2
5315 */
bb8c093b 5316 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
b481de9c
ZY
5317 IEEE80211_RATE_CCK : IEEE80211_RATE_CCK_2;
5318 }
5319
5320 /* Set up which ones are basic rates... */
5321 if (IWL_BASIC_RATES_MASK & (1 << i))
5322 rates[i].flags |= IEEE80211_RATE_BASIC;
5323 }
5324}
5325
5326/**
bb8c093b 5327 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
b481de9c 5328 */
bb8c093b 5329static int iwl3945_init_geos(struct iwl3945_priv *priv)
b481de9c 5330{
bb8c093b 5331 struct iwl3945_channel_info *ch;
b481de9c
ZY
5332 struct ieee80211_hw_mode *modes;
5333 struct ieee80211_channel *channels;
5334 struct ieee80211_channel *geo_ch;
5335 struct ieee80211_rate *rates;
5336 int i = 0;
5337 enum {
5338 A = 0,
5339 B = 1,
5340 G = 2,
5341 };
5342 int mode_count = 3;
5343
5344 if (priv->modes) {
5345 IWL_DEBUG_INFO("Geography modes already initialized.\n");
5346 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
5347 return 0;
5348 }
5349
5350 modes = kzalloc(sizeof(struct ieee80211_hw_mode) * mode_count,
5351 GFP_KERNEL);
5352 if (!modes)
5353 return -ENOMEM;
5354
5355 channels = kzalloc(sizeof(struct ieee80211_channel) *
5356 priv->channel_count, GFP_KERNEL);
5357 if (!channels) {
5358 kfree(modes);
5359 return -ENOMEM;
5360 }
5361
5362 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_MAX_RATES + 1)),
5363 GFP_KERNEL);
5364 if (!rates) {
5365 kfree(modes);
5366 kfree(channels);
5367 return -ENOMEM;
5368 }
5369
5370 /* 0 = 802.11a
5371 * 1 = 802.11b
5372 * 2 = 802.11g
5373 */
5374
5375 /* 5.2GHz channels start after the 2.4GHz channels */
5376 modes[A].mode = MODE_IEEE80211A;
bb8c093b 5377 modes[A].channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
14577f23 5378 modes[A].rates = &rates[4];
b481de9c
ZY
5379 modes[A].num_rates = 8; /* just OFDM */
5380 modes[A].num_channels = 0;
5381
5382 modes[B].mode = MODE_IEEE80211B;
5383 modes[B].channels = channels;
14577f23 5384 modes[B].rates = rates;
b481de9c
ZY
5385 modes[B].num_rates = 4; /* just CCK */
5386 modes[B].num_channels = 0;
5387
5388 modes[G].mode = MODE_IEEE80211G;
5389 modes[G].channels = channels;
5390 modes[G].rates = rates;
5391 modes[G].num_rates = 12; /* OFDM & CCK */
5392 modes[G].num_channels = 0;
5393
5394 priv->ieee_channels = channels;
5395 priv->ieee_rates = rates;
5396
bb8c093b 5397 iwl3945_init_hw_rates(priv, rates);
b481de9c
ZY
5398
5399 for (i = 0, geo_ch = channels; i < priv->channel_count; i++) {
5400 ch = &priv->channel_info[i];
5401
5402 if (!is_channel_valid(ch)) {
5403 IWL_DEBUG_INFO("Channel %d [%sGHz] is restricted -- "
5404 "skipping.\n",
5405 ch->channel, is_channel_a_band(ch) ?
5406 "5.2" : "2.4");
5407 continue;
5408 }
5409
5410 if (is_channel_a_band(ch))
5411 geo_ch = &modes[A].channels[modes[A].num_channels++];
5412 else {
5413 geo_ch = &modes[B].channels[modes[B].num_channels++];
5414 modes[G].num_channels++;
5415 }
5416
5417 geo_ch->freq = ieee80211chan2mhz(ch->channel);
5418 geo_ch->chan = ch->channel;
5419 geo_ch->power_level = ch->max_power_avg;
5420 geo_ch->antenna_max = 0xff;
5421
5422 if (is_channel_valid(ch)) {
5423 geo_ch->flag = IEEE80211_CHAN_W_SCAN;
5424 if (ch->flags & EEPROM_CHANNEL_IBSS)
5425 geo_ch->flag |= IEEE80211_CHAN_W_IBSS;
5426
5427 if (ch->flags & EEPROM_CHANNEL_ACTIVE)
5428 geo_ch->flag |= IEEE80211_CHAN_W_ACTIVE_SCAN;
5429
5430 if (ch->flags & EEPROM_CHANNEL_RADAR)
5431 geo_ch->flag |= IEEE80211_CHAN_W_RADAR_DETECT;
5432
5433 if (ch->max_power_avg > priv->max_channel_txpower_limit)
5434 priv->max_channel_txpower_limit =
5435 ch->max_power_avg;
5436 }
5437
5438 geo_ch->val = geo_ch->flag;
5439 }
5440
5441 if ((modes[A].num_channels == 0) && priv->is_abg) {
5442 printk(KERN_INFO DRV_NAME
5443 ": Incorrectly detected BG card as ABG. Please send "
5444 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
5445 priv->pci_dev->device, priv->pci_dev->subsystem_device);
5446 priv->is_abg = 0;
5447 }
5448
5449 printk(KERN_INFO DRV_NAME
5450 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
5451 modes[G].num_channels, modes[A].num_channels);
5452
5453 /*
5454 * NOTE: We register these in preference of order -- the
5455 * stack doesn't currently (as of 7.0.6 / Apr 24 '07) pick
5456 * a phymode based on rates or AP capabilities but seems to
5457 * configure it purely on if the channel being configured
5458 * is supported by a mode -- and the first match is taken
5459 */
5460
5461 if (modes[G].num_channels)
5462 ieee80211_register_hwmode(priv->hw, &modes[G]);
5463 if (modes[B].num_channels)
5464 ieee80211_register_hwmode(priv->hw, &modes[B]);
5465 if (modes[A].num_channels)
5466 ieee80211_register_hwmode(priv->hw, &modes[A]);
5467
5468 priv->modes = modes;
5469 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
5470
5471 return 0;
5472}
5473
5474/******************************************************************************
5475 *
5476 * uCode download functions
5477 *
5478 ******************************************************************************/
5479
bb8c093b 5480static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
b481de9c
ZY
5481{
5482 if (priv->ucode_code.v_addr != NULL) {
5483 pci_free_consistent(priv->pci_dev,
5484 priv->ucode_code.len,
5485 priv->ucode_code.v_addr,
5486 priv->ucode_code.p_addr);
5487 priv->ucode_code.v_addr = NULL;
5488 }
5489 if (priv->ucode_data.v_addr != NULL) {
5490 pci_free_consistent(priv->pci_dev,
5491 priv->ucode_data.len,
5492 priv->ucode_data.v_addr,
5493 priv->ucode_data.p_addr);
5494 priv->ucode_data.v_addr = NULL;
5495 }
5496 if (priv->ucode_data_backup.v_addr != NULL) {
5497 pci_free_consistent(priv->pci_dev,
5498 priv->ucode_data_backup.len,
5499 priv->ucode_data_backup.v_addr,
5500 priv->ucode_data_backup.p_addr);
5501 priv->ucode_data_backup.v_addr = NULL;
5502 }
5503 if (priv->ucode_init.v_addr != NULL) {
5504 pci_free_consistent(priv->pci_dev,
5505 priv->ucode_init.len,
5506 priv->ucode_init.v_addr,
5507 priv->ucode_init.p_addr);
5508 priv->ucode_init.v_addr = NULL;
5509 }
5510 if (priv->ucode_init_data.v_addr != NULL) {
5511 pci_free_consistent(priv->pci_dev,
5512 priv->ucode_init_data.len,
5513 priv->ucode_init_data.v_addr,
5514 priv->ucode_init_data.p_addr);
5515 priv->ucode_init_data.v_addr = NULL;
5516 }
5517 if (priv->ucode_boot.v_addr != NULL) {
5518 pci_free_consistent(priv->pci_dev,
5519 priv->ucode_boot.len,
5520 priv->ucode_boot.v_addr,
5521 priv->ucode_boot.p_addr);
5522 priv->ucode_boot.v_addr = NULL;
5523 }
5524}
5525
5526/**
bb8c093b 5527 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
b481de9c
ZY
5528 * looking at all data.
5529 */
bb8c093b 5530static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 * image, u32 len)
b481de9c
ZY
5531{
5532 u32 val;
5533 u32 save_len = len;
5534 int rc = 0;
5535 u32 errcnt;
5536
5537 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5538
bb8c093b 5539 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
5540 if (rc)
5541 return rc;
5542
bb8c093b 5543 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
b481de9c
ZY
5544
5545 errcnt = 0;
5546 for (; len > 0; len -= sizeof(u32), image++) {
5547 /* read data comes through single port, auto-incr addr */
5548 /* NOTE: Use the debugless read so we don't flood kernel log
5549 * if IWL_DL_IO is set */
bb8c093b 5550 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
b481de9c
ZY
5551 if (val != le32_to_cpu(*image)) {
5552 IWL_ERROR("uCode INST section is invalid at "
5553 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5554 save_len - len, val, le32_to_cpu(*image));
5555 rc = -EIO;
5556 errcnt++;
5557 if (errcnt >= 20)
5558 break;
5559 }
5560 }
5561
bb8c093b 5562 iwl3945_release_nic_access(priv);
b481de9c
ZY
5563
5564 if (!errcnt)
bc434dd2 5565 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
b481de9c
ZY
5566
5567 return rc;
5568}
5569
5570
5571/**
bb8c093b 5572 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
b481de9c
ZY
5573 * using sample data 100 bytes apart. If these sample points are good,
5574 * it's a pretty good bet that everything between them is good, too.
5575 */
bb8c093b 5576static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
b481de9c
ZY
5577{
5578 u32 val;
5579 int rc = 0;
5580 u32 errcnt = 0;
5581 u32 i;
5582
5583 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5584
bb8c093b 5585 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
5586 if (rc)
5587 return rc;
5588
5589 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5590 /* read data comes through single port, auto-incr addr */
5591 /* NOTE: Use the debugless read so we don't flood kernel log
5592 * if IWL_DL_IO is set */
bb8c093b 5593 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
b481de9c 5594 i + RTC_INST_LOWER_BOUND);
bb8c093b 5595 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
b481de9c
ZY
5596 if (val != le32_to_cpu(*image)) {
5597#if 0 /* Enable this if you want to see details */
5598 IWL_ERROR("uCode INST section is invalid at "
5599 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5600 i, val, *image);
5601#endif
5602 rc = -EIO;
5603 errcnt++;
5604 if (errcnt >= 3)
5605 break;
5606 }
5607 }
5608
bb8c093b 5609 iwl3945_release_nic_access(priv);
b481de9c
ZY
5610
5611 return rc;
5612}
5613
5614
5615/**
bb8c093b 5616 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
b481de9c
ZY
5617 * and verify its contents
5618 */
bb8c093b 5619static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
b481de9c
ZY
5620{
5621 __le32 *image;
5622 u32 len;
5623 int rc = 0;
5624
5625 /* Try bootstrap */
5626 image = (__le32 *)priv->ucode_boot.v_addr;
5627 len = priv->ucode_boot.len;
bb8c093b 5628 rc = iwl3945_verify_inst_sparse(priv, image, len);
b481de9c
ZY
5629 if (rc == 0) {
5630 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5631 return 0;
5632 }
5633
5634 /* Try initialize */
5635 image = (__le32 *)priv->ucode_init.v_addr;
5636 len = priv->ucode_init.len;
bb8c093b 5637 rc = iwl3945_verify_inst_sparse(priv, image, len);
b481de9c
ZY
5638 if (rc == 0) {
5639 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5640 return 0;
5641 }
5642
5643 /* Try runtime/protocol */
5644 image = (__le32 *)priv->ucode_code.v_addr;
5645 len = priv->ucode_code.len;
bb8c093b 5646 rc = iwl3945_verify_inst_sparse(priv, image, len);
b481de9c
ZY
5647 if (rc == 0) {
5648 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5649 return 0;
5650 }
5651
5652 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5653
9fbab516
BC
5654 /* Since nothing seems to match, show first several data entries in
5655 * instruction SRAM, so maybe visual inspection will give a clue.
5656 * Selection of bootstrap image (vs. other images) is arbitrary. */
b481de9c
ZY
5657 image = (__le32 *)priv->ucode_boot.v_addr;
5658 len = priv->ucode_boot.len;
bb8c093b 5659 rc = iwl3945_verify_inst_full(priv, image, len);
b481de9c
ZY
5660
5661 return rc;
5662}
5663
5664
5665/* check contents of special bootstrap uCode SRAM */
bb8c093b 5666static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
b481de9c
ZY
5667{
5668 __le32 *image = priv->ucode_boot.v_addr;
5669 u32 len = priv->ucode_boot.len;
5670 u32 reg;
5671 u32 val;
5672
5673 IWL_DEBUG_INFO("Begin verify bsm\n");
5674
5675 /* verify BSM SRAM contents */
bb8c093b 5676 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
b481de9c
ZY
5677 for (reg = BSM_SRAM_LOWER_BOUND;
5678 reg < BSM_SRAM_LOWER_BOUND + len;
5679 reg += sizeof(u32), image ++) {
bb8c093b 5680 val = iwl3945_read_prph(priv, reg);
b481de9c
ZY
5681 if (val != le32_to_cpu(*image)) {
5682 IWL_ERROR("BSM uCode verification failed at "
5683 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5684 BSM_SRAM_LOWER_BOUND,
5685 reg - BSM_SRAM_LOWER_BOUND, len,
5686 val, le32_to_cpu(*image));
5687 return -EIO;
5688 }
5689 }
5690
5691 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5692
5693 return 0;
5694}
5695
5696/**
bb8c093b 5697 * iwl3945_load_bsm - Load bootstrap instructions
b481de9c
ZY
5698 *
5699 * BSM operation:
5700 *
5701 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5702 * in special SRAM that does not power down during RFKILL. When powering back
5703 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5704 * the bootstrap program into the on-board processor, and starts it.
5705 *
5706 * The bootstrap program loads (via DMA) instructions and data for a new
5707 * program from host DRAM locations indicated by the host driver in the
5708 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5709 * automatically.
5710 *
5711 * When initializing the NIC, the host driver points the BSM to the
5712 * "initialize" uCode image. This uCode sets up some internal data, then
5713 * notifies host via "initialize alive" that it is complete.
5714 *
5715 * The host then replaces the BSM_DRAM_* pointer values to point to the
5716 * normal runtime uCode instructions and a backup uCode data cache buffer
5717 * (filled initially with starting data values for the on-board processor),
5718 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5719 * which begins normal operation.
5720 *
5721 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5722 * the backup data cache in DRAM before SRAM is powered down.
5723 *
5724 * When powering back up, the BSM loads the bootstrap program. This reloads
5725 * the runtime uCode instructions and the backup data cache into SRAM,
5726 * and re-launches the runtime uCode from where it left off.
5727 */
bb8c093b 5728static int iwl3945_load_bsm(struct iwl3945_priv *priv)
b481de9c
ZY
5729{
5730 __le32 *image = priv->ucode_boot.v_addr;
5731 u32 len = priv->ucode_boot.len;
5732 dma_addr_t pinst;
5733 dma_addr_t pdata;
5734 u32 inst_len;
5735 u32 data_len;
5736 int rc;
5737 int i;
5738 u32 done;
5739 u32 reg_offset;
5740
5741 IWL_DEBUG_INFO("Begin load bsm\n");
5742
5743 /* make sure bootstrap program is no larger than BSM's SRAM size */
5744 if (len > IWL_MAX_BSM_SIZE)
5745 return -EINVAL;
5746
5747 /* Tell bootstrap uCode where to find the "Initialize" uCode
9fbab516 5748 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
bb8c093b 5749 * NOTE: iwl3945_initialize_alive_start() will replace these values,
b481de9c
ZY
5750 * after the "initialize" uCode has run, to point to
5751 * runtime/protocol instructions and backup data cache. */
5752 pinst = priv->ucode_init.p_addr;
5753 pdata = priv->ucode_init_data.p_addr;
5754 inst_len = priv->ucode_init.len;
5755 data_len = priv->ucode_init_data.len;
5756
bb8c093b 5757 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
5758 if (rc)
5759 return rc;
5760
bb8c093b
CH
5761 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5762 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5763 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5764 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
b481de9c
ZY
5765
5766 /* Fill BSM memory with bootstrap instructions */
5767 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5768 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5769 reg_offset += sizeof(u32), image++)
bb8c093b 5770 _iwl3945_write_prph(priv, reg_offset,
b481de9c
ZY
5771 le32_to_cpu(*image));
5772
bb8c093b 5773 rc = iwl3945_verify_bsm(priv);
b481de9c 5774 if (rc) {
bb8c093b 5775 iwl3945_release_nic_access(priv);
b481de9c
ZY
5776 return rc;
5777 }
5778
5779 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
bb8c093b
CH
5780 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5781 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
b481de9c 5782 RTC_INST_LOWER_BOUND);
bb8c093b 5783 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
b481de9c
ZY
5784
5785 /* Load bootstrap code into instruction SRAM now,
5786 * to prepare to load "initialize" uCode */
bb8c093b 5787 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
b481de9c
ZY
5788 BSM_WR_CTRL_REG_BIT_START);
5789
5790 /* Wait for load of bootstrap uCode to finish */
5791 for (i = 0; i < 100; i++) {
bb8c093b 5792 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
b481de9c
ZY
5793 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5794 break;
5795 udelay(10);
5796 }
5797 if (i < 100)
5798 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5799 else {
5800 IWL_ERROR("BSM write did not complete!\n");
5801 return -EIO;
5802 }
5803
5804 /* Enable future boot loads whenever power management unit triggers it
5805 * (e.g. when powering back up after power-save shutdown) */
bb8c093b 5806 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
b481de9c
ZY
5807 BSM_WR_CTRL_REG_BIT_START_EN);
5808
bb8c093b 5809 iwl3945_release_nic_access(priv);
b481de9c
ZY
5810
5811 return 0;
5812}
5813
bb8c093b 5814static void iwl3945_nic_start(struct iwl3945_priv *priv)
b481de9c
ZY
5815{
5816 /* Remove all resets to allow NIC to operate */
bb8c093b 5817 iwl3945_write32(priv, CSR_RESET, 0);
b481de9c
ZY
5818}
5819
90e759d1
TW
5820static int iwl3945_alloc_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
5821{
5822 desc->v_addr = pci_alloc_consistent(pci_dev, desc->len, &desc->p_addr);
5823 return (desc->v_addr != NULL) ? 0 : -ENOMEM;
5824}
5825
b481de9c 5826/**
bb8c093b 5827 * iwl3945_read_ucode - Read uCode images from disk file.
b481de9c
ZY
5828 *
5829 * Copy into buffers for card to fetch via bus-mastering
5830 */
bb8c093b 5831static int iwl3945_read_ucode(struct iwl3945_priv *priv)
b481de9c 5832{
bb8c093b 5833 struct iwl3945_ucode *ucode;
90e759d1 5834 int ret = 0;
b481de9c
ZY
5835 const struct firmware *ucode_raw;
5836 /* firmware file name contains uCode/driver compatibility version */
5837 const char *name = "iwlwifi-3945" IWL3945_UCODE_API ".ucode";
5838 u8 *src;
5839 size_t len;
5840 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
5841
5842 /* Ask kernel firmware_class module to get the boot firmware off disk.
5843 * request_firmware() is synchronous, file is in memory on return. */
90e759d1
TW
5844 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
5845 if (ret < 0) {
5846 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5847 name, ret);
b481de9c
ZY
5848 goto error;
5849 }
5850
5851 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5852 name, ucode_raw->size);
5853
5854 /* Make sure that we got at least our header! */
5855 if (ucode_raw->size < sizeof(*ucode)) {
5856 IWL_ERROR("File size way too small!\n");
90e759d1 5857 ret = -EINVAL;
b481de9c
ZY
5858 goto err_release;
5859 }
5860
5861 /* Data from ucode file: header followed by uCode images */
5862 ucode = (void *)ucode_raw->data;
5863
5864 ver = le32_to_cpu(ucode->ver);
5865 inst_size = le32_to_cpu(ucode->inst_size);
5866 data_size = le32_to_cpu(ucode->data_size);
5867 init_size = le32_to_cpu(ucode->init_size);
5868 init_data_size = le32_to_cpu(ucode->init_data_size);
5869 boot_size = le32_to_cpu(ucode->boot_size);
5870
5871 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
bc434dd2
IS
5872 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5873 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5874 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5875 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5876 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
b481de9c
ZY
5877
5878 /* Verify size of file vs. image size info in file's header */
5879 if (ucode_raw->size < sizeof(*ucode) +
5880 inst_size + data_size + init_size +
5881 init_data_size + boot_size) {
5882
5883 IWL_DEBUG_INFO("uCode file size %d too small\n",
5884 (int)ucode_raw->size);
90e759d1 5885 ret = -EINVAL;
b481de9c
ZY
5886 goto err_release;
5887 }
5888
5889 /* Verify that uCode images will fit in card's SRAM */
5890 if (inst_size > IWL_MAX_INST_SIZE) {
90e759d1
TW
5891 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5892 inst_size);
5893 ret = -EINVAL;
b481de9c
ZY
5894 goto err_release;
5895 }
5896
5897 if (data_size > IWL_MAX_DATA_SIZE) {
90e759d1
TW
5898 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5899 data_size);
5900 ret = -EINVAL;
b481de9c
ZY
5901 goto err_release;
5902 }
5903 if (init_size > IWL_MAX_INST_SIZE) {
90e759d1
TW
5904 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5905 init_size);
5906 ret = -EINVAL;
b481de9c
ZY
5907 goto err_release;
5908 }
5909 if (init_data_size > IWL_MAX_DATA_SIZE) {
90e759d1
TW
5910 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5911 init_data_size);
5912 ret = -EINVAL;
b481de9c
ZY
5913 goto err_release;
5914 }
5915 if (boot_size > IWL_MAX_BSM_SIZE) {
90e759d1
TW
5916 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5917 boot_size);
5918 ret = -EINVAL;
b481de9c
ZY
5919 goto err_release;
5920 }
5921
5922 /* Allocate ucode buffers for card's bus-master loading ... */
5923
5924 /* Runtime instructions and 2 copies of data:
5925 * 1) unmodified from disk
5926 * 2) backup cache for save/restore during power-downs */
5927 priv->ucode_code.len = inst_size;
90e759d1 5928 iwl3945_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
b481de9c
ZY
5929
5930 priv->ucode_data.len = data_size;
90e759d1 5931 iwl3945_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
b481de9c
ZY
5932
5933 priv->ucode_data_backup.len = data_size;
90e759d1 5934 iwl3945_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
b481de9c 5935
90e759d1
TW
5936 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
5937 !priv->ucode_data_backup.v_addr)
5938 goto err_pci_alloc;
b481de9c
ZY
5939
5940 /* Initialization instructions and data */
90e759d1
TW
5941 if (init_size && init_data_size) {
5942 priv->ucode_init.len = init_size;
5943 iwl3945_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
5944
5945 priv->ucode_init_data.len = init_data_size;
5946 iwl3945_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5947
5948 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5949 goto err_pci_alloc;
5950 }
b481de9c
ZY
5951
5952 /* Bootstrap (instructions only, no data) */
90e759d1
TW
5953 if (boot_size) {
5954 priv->ucode_boot.len = boot_size;
5955 iwl3945_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
b481de9c 5956
90e759d1
TW
5957 if (!priv->ucode_boot.v_addr)
5958 goto err_pci_alloc;
5959 }
b481de9c
ZY
5960
5961 /* Copy images into buffers for card's bus-master reads ... */
5962
5963 /* Runtime instructions (first block of data in file) */
5964 src = &ucode->data[0];
5965 len = priv->ucode_code.len;
90e759d1 5966 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
b481de9c
ZY
5967 memcpy(priv->ucode_code.v_addr, src, len);
5968 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5969 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5970
5971 /* Runtime data (2nd block)
bb8c093b 5972 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
b481de9c
ZY
5973 src = &ucode->data[inst_size];
5974 len = priv->ucode_data.len;
90e759d1 5975 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
b481de9c
ZY
5976 memcpy(priv->ucode_data.v_addr, src, len);
5977 memcpy(priv->ucode_data_backup.v_addr, src, len);
5978
5979 /* Initialization instructions (3rd block) */
5980 if (init_size) {
5981 src = &ucode->data[inst_size + data_size];
5982 len = priv->ucode_init.len;
90e759d1
TW
5983 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5984 len);
b481de9c
ZY
5985 memcpy(priv->ucode_init.v_addr, src, len);
5986 }
5987
5988 /* Initialization data (4th block) */
5989 if (init_data_size) {
5990 src = &ucode->data[inst_size + data_size + init_size];
5991 len = priv->ucode_init_data.len;
5992 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5993 (int)len);
5994 memcpy(priv->ucode_init_data.v_addr, src, len);
5995 }
5996
5997 /* Bootstrap instructions (5th block) */
5998 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5999 len = priv->ucode_boot.len;
6000 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
6001 (int)len);
6002 memcpy(priv->ucode_boot.v_addr, src, len);
6003
6004 /* We have our copies now, allow OS release its copies */
6005 release_firmware(ucode_raw);
6006 return 0;
6007
6008 err_pci_alloc:
6009 IWL_ERROR("failed to allocate pci memory\n");
90e759d1 6010 ret = -ENOMEM;
bb8c093b 6011 iwl3945_dealloc_ucode_pci(priv);
b481de9c
ZY
6012
6013 err_release:
6014 release_firmware(ucode_raw);
6015
6016 error:
90e759d1 6017 return ret;
b481de9c
ZY
6018}
6019
6020
6021/**
bb8c093b 6022 * iwl3945_set_ucode_ptrs - Set uCode address location
b481de9c
ZY
6023 *
6024 * Tell initialization uCode where to find runtime uCode.
6025 *
6026 * BSM registers initially contain pointers to initialization uCode.
6027 * We need to replace them to load runtime uCode inst and data,
6028 * and to save runtime data when powering down.
6029 */
bb8c093b 6030static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
b481de9c
ZY
6031{
6032 dma_addr_t pinst;
6033 dma_addr_t pdata;
6034 int rc = 0;
6035 unsigned long flags;
6036
6037 /* bits 31:0 for 3945 */
6038 pinst = priv->ucode_code.p_addr;
6039 pdata = priv->ucode_data_backup.p_addr;
6040
6041 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 6042 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
6043 if (rc) {
6044 spin_unlock_irqrestore(&priv->lock, flags);
6045 return rc;
6046 }
6047
6048 /* Tell bootstrap uCode where to find image to load */
bb8c093b
CH
6049 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
6050 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
6051 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
b481de9c
ZY
6052 priv->ucode_data.len);
6053
6054 /* Inst bytecount must be last to set up, bit 31 signals uCode
6055 * that all new ptr/size info is in place */
bb8c093b 6056 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
b481de9c
ZY
6057 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
6058
bb8c093b 6059 iwl3945_release_nic_access(priv);
b481de9c
ZY
6060
6061 spin_unlock_irqrestore(&priv->lock, flags);
6062
6063 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
6064
6065 return rc;
6066}
6067
6068/**
bb8c093b 6069 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
b481de9c
ZY
6070 *
6071 * Called after REPLY_ALIVE notification received from "initialize" uCode.
6072 *
b481de9c 6073 * Tell "initialize" uCode to go ahead and load the runtime uCode.
9fbab516 6074 */
bb8c093b 6075static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
b481de9c
ZY
6076{
6077 /* Check alive response for "valid" sign from uCode */
6078 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
6079 /* We had an error bringing up the hardware, so take it
6080 * all the way back down so we can try again */
6081 IWL_DEBUG_INFO("Initialize Alive failed.\n");
6082 goto restart;
6083 }
6084
6085 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
6086 * This is a paranoid check, because we would not have gotten the
6087 * "initialize" alive if code weren't properly loaded. */
bb8c093b 6088 if (iwl3945_verify_ucode(priv)) {
b481de9c
ZY
6089 /* Runtime instruction load was bad;
6090 * take it all the way back down so we can try again */
6091 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
6092 goto restart;
6093 }
6094
6095 /* Send pointers to protocol/runtime uCode image ... init code will
6096 * load and launch runtime uCode, which will send us another "Alive"
6097 * notification. */
6098 IWL_DEBUG_INFO("Initialization Alive received.\n");
bb8c093b 6099 if (iwl3945_set_ucode_ptrs(priv)) {
b481de9c
ZY
6100 /* Runtime instruction load won't happen;
6101 * take it all the way back down so we can try again */
6102 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
6103 goto restart;
6104 }
6105 return;
6106
6107 restart:
6108 queue_work(priv->workqueue, &priv->restart);
6109}
6110
6111
6112/**
bb8c093b 6113 * iwl3945_alive_start - called after REPLY_ALIVE notification received
b481de9c 6114 * from protocol/runtime uCode (initialization uCode's
bb8c093b 6115 * Alive gets handled by iwl3945_init_alive_start()).
b481de9c 6116 */
bb8c093b 6117static void iwl3945_alive_start(struct iwl3945_priv *priv)
b481de9c
ZY
6118{
6119 int rc = 0;
6120 int thermal_spin = 0;
6121 u32 rfkill;
6122
6123 IWL_DEBUG_INFO("Runtime Alive received.\n");
6124
6125 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
6126 /* We had an error bringing up the hardware, so take it
6127 * all the way back down so we can try again */
6128 IWL_DEBUG_INFO("Alive failed.\n");
6129 goto restart;
6130 }
6131
6132 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
6133 * This is a paranoid check, because we would not have gotten the
6134 * "runtime" alive if code weren't properly loaded. */
bb8c093b 6135 if (iwl3945_verify_ucode(priv)) {
b481de9c
ZY
6136 /* Runtime instruction load was bad;
6137 * take it all the way back down so we can try again */
6138 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
6139 goto restart;
6140 }
6141
bb8c093b 6142 iwl3945_clear_stations_table(priv);
b481de9c 6143
bb8c093b 6144 rc = iwl3945_grab_nic_access(priv);
b481de9c
ZY
6145 if (rc) {
6146 IWL_WARNING("Can not read rfkill status from adapter\n");
6147 return;
6148 }
6149
bb8c093b 6150 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
b481de9c 6151 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
bb8c093b 6152 iwl3945_release_nic_access(priv);
b481de9c
ZY
6153
6154 if (rfkill & 0x1) {
6155 clear_bit(STATUS_RF_KILL_HW, &priv->status);
6156 /* if rfkill is not on, then wait for thermal
6157 * sensor in adapter to kick in */
bb8c093b 6158 while (iwl3945_hw_get_temperature(priv) == 0) {
b481de9c
ZY
6159 thermal_spin++;
6160 udelay(10);
6161 }
6162
6163 if (thermal_spin)
6164 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
6165 thermal_spin * 10);
6166 } else
6167 set_bit(STATUS_RF_KILL_HW, &priv->status);
6168
9fbab516 6169 /* After the ALIVE response, we can send commands to 3945 uCode */
b481de9c
ZY
6170 set_bit(STATUS_ALIVE, &priv->status);
6171
6172 /* Clear out the uCode error bit if it is set */
6173 clear_bit(STATUS_FW_ERROR, &priv->status);
6174
bb8c093b 6175 rc = iwl3945_init_channel_map(priv);
b481de9c
ZY
6176 if (rc) {
6177 IWL_ERROR("initializing regulatory failed: %d\n", rc);
6178 return;
6179 }
6180
bb8c093b 6181 iwl3945_init_geos(priv);
5a66926a 6182 iwl3945_reset_channel_flag(priv);
b481de9c 6183
bb8c093b 6184 if (iwl3945_is_rfkill(priv))
b481de9c
ZY
6185 return;
6186
5a66926a 6187 ieee80211_start_queues(priv->hw);
b481de9c
ZY
6188
6189 priv->active_rate = priv->rates_mask;
6190 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
6191
bb8c093b 6192 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
b481de9c 6193
bb8c093b
CH
6194 if (iwl3945_is_associated(priv)) {
6195 struct iwl3945_rxon_cmd *active_rxon =
6196 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
b481de9c
ZY
6197
6198 memcpy(&priv->staging_rxon, &priv->active_rxon,
6199 sizeof(priv->staging_rxon));
6200 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6201 } else {
6202 /* Initialize our rx_config data */
bb8c093b 6203 iwl3945_connection_init_rx_config(priv);
b481de9c
ZY
6204 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
6205 }
6206
9fbab516 6207 /* Configure Bluetooth device coexistence support */
bb8c093b 6208 iwl3945_send_bt_config(priv);
b481de9c
ZY
6209
6210 /* Configure the adapter for unassociated operation */
bb8c093b 6211 iwl3945_commit_rxon(priv);
b481de9c
ZY
6212
6213 /* At this point, the NIC is initialized and operational */
6214 priv->notif_missed_beacons = 0;
6215 set_bit(STATUS_READY, &priv->status);
6216
6217 iwl3945_reg_txpower_periodic(priv);
6218
6219 IWL_DEBUG_INFO("ALIVE processing complete.\n");
5a66926a 6220 wake_up_interruptible(&priv->wait_command_queue);
b481de9c
ZY
6221
6222 if (priv->error_recovering)
bb8c093b 6223 iwl3945_error_recovery(priv);
b481de9c
ZY
6224
6225 return;
6226
6227 restart:
6228 queue_work(priv->workqueue, &priv->restart);
6229}
6230
bb8c093b 6231static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
b481de9c 6232
bb8c093b 6233static void __iwl3945_down(struct iwl3945_priv *priv)
b481de9c
ZY
6234{
6235 unsigned long flags;
6236 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
6237 struct ieee80211_conf *conf = NULL;
6238
6239 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
6240
6241 conf = ieee80211_get_hw_conf(priv->hw);
6242
6243 if (!exit_pending)
6244 set_bit(STATUS_EXIT_PENDING, &priv->status);
6245
bb8c093b 6246 iwl3945_clear_stations_table(priv);
b481de9c
ZY
6247
6248 /* Unblock any waiting calls */
6249 wake_up_interruptible_all(&priv->wait_command_queue);
6250
b481de9c
ZY
6251 /* Wipe out the EXIT_PENDING status bit if we are not actually
6252 * exiting the module */
6253 if (!exit_pending)
6254 clear_bit(STATUS_EXIT_PENDING, &priv->status);
6255
6256 /* stop and reset the on-board processor */
bb8c093b 6257 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
b481de9c
ZY
6258
6259 /* tell the device to stop sending interrupts */
bb8c093b 6260 iwl3945_disable_interrupts(priv);
b481de9c
ZY
6261
6262 if (priv->mac80211_registered)
6263 ieee80211_stop_queues(priv->hw);
6264
bb8c093b 6265 /* If we have not previously called iwl3945_init() then
b481de9c 6266 * clear all bits but the RF Kill and SUSPEND bits and return */
bb8c093b 6267 if (!iwl3945_is_init(priv)) {
b481de9c
ZY
6268 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
6269 STATUS_RF_KILL_HW |
6270 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
6271 STATUS_RF_KILL_SW |
6272 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
6273 STATUS_IN_SUSPEND;
6274 goto exit;
6275 }
6276
6277 /* ...otherwise clear out all the status bits but the RF Kill and
6278 * SUSPEND bits and continue taking the NIC down. */
6279 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
6280 STATUS_RF_KILL_HW |
6281 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
6282 STATUS_RF_KILL_SW |
6283 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
6284 STATUS_IN_SUSPEND |
6285 test_bit(STATUS_FW_ERROR, &priv->status) <<
6286 STATUS_FW_ERROR;
6287
6288 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 6289 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
b481de9c
ZY
6290 spin_unlock_irqrestore(&priv->lock, flags);
6291
bb8c093b
CH
6292 iwl3945_hw_txq_ctx_stop(priv);
6293 iwl3945_hw_rxq_stop(priv);
b481de9c
ZY
6294
6295 spin_lock_irqsave(&priv->lock, flags);
bb8c093b
CH
6296 if (!iwl3945_grab_nic_access(priv)) {
6297 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
b481de9c 6298 APMG_CLK_VAL_DMA_CLK_RQT);
bb8c093b 6299 iwl3945_release_nic_access(priv);
b481de9c
ZY
6300 }
6301 spin_unlock_irqrestore(&priv->lock, flags);
6302
6303 udelay(5);
6304
bb8c093b
CH
6305 iwl3945_hw_nic_stop_master(priv);
6306 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
6307 iwl3945_hw_nic_reset(priv);
b481de9c
ZY
6308
6309 exit:
bb8c093b 6310 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
b481de9c
ZY
6311
6312 if (priv->ibss_beacon)
6313 dev_kfree_skb(priv->ibss_beacon);
6314 priv->ibss_beacon = NULL;
6315
6316 /* clear out any free frames */
bb8c093b 6317 iwl3945_clear_free_frames(priv);
b481de9c
ZY
6318}
6319
bb8c093b 6320static void iwl3945_down(struct iwl3945_priv *priv)
b481de9c
ZY
6321{
6322 mutex_lock(&priv->mutex);
bb8c093b 6323 __iwl3945_down(priv);
b481de9c 6324 mutex_unlock(&priv->mutex);
b24d22b1 6325
bb8c093b 6326 iwl3945_cancel_deferred_work(priv);
b481de9c
ZY
6327}
6328
6329#define MAX_HW_RESTARTS 5
6330
bb8c093b 6331static int __iwl3945_up(struct iwl3945_priv *priv)
b481de9c
ZY
6332{
6333 int rc, i;
6334
6335 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6336 IWL_WARNING("Exit pending; will not bring the NIC up\n");
6337 return -EIO;
6338 }
6339
6340 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
6341 IWL_WARNING("Radio disabled by SW RF kill (module "
6342 "parameter)\n");
6343 return 0;
6344 }
6345
a781cf94
RC
6346 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
6347 IWL_ERROR("ucode not available for device bringup\n");
6348 return -EIO;
6349 }
6350
bb8c093b 6351 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
b481de9c 6352
bb8c093b 6353 rc = iwl3945_hw_nic_init(priv);
b481de9c
ZY
6354 if (rc) {
6355 IWL_ERROR("Unable to int nic\n");
6356 return rc;
6357 }
6358
6359 /* make sure rfkill handshake bits are cleared */
bb8c093b
CH
6360 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
6361 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
b481de9c
ZY
6362 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
6363
6364 /* clear (again), then enable host interrupts */
bb8c093b
CH
6365 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
6366 iwl3945_enable_interrupts(priv);
b481de9c
ZY
6367
6368 /* really make sure rfkill handshake bits are cleared */
bb8c093b
CH
6369 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
6370 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
b481de9c
ZY
6371
6372 /* Copy original ucode data image from disk into backup cache.
6373 * This will be used to initialize the on-board processor's
6374 * data SRAM for a clean start when the runtime program first loads. */
6375 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
5a66926a 6376 priv->ucode_data.len);
b481de9c
ZY
6377
6378 for (i = 0; i < MAX_HW_RESTARTS; i++) {
6379
bb8c093b 6380 iwl3945_clear_stations_table(priv);
b481de9c
ZY
6381
6382 /* load bootstrap state machine,
6383 * load bootstrap program into processor's memory,
6384 * prepare to load the "initialize" uCode */
bb8c093b 6385 rc = iwl3945_load_bsm(priv);
b481de9c
ZY
6386
6387 if (rc) {
6388 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
6389 continue;
6390 }
6391
6392 /* start card; "initialize" will load runtime ucode */
bb8c093b 6393 iwl3945_nic_start(priv);
b481de9c 6394
b481de9c
ZY
6395 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
6396
6397 return 0;
6398 }
6399
6400 set_bit(STATUS_EXIT_PENDING, &priv->status);
bb8c093b 6401 __iwl3945_down(priv);
b481de9c
ZY
6402
6403 /* tried to restart and config the device for as long as our
6404 * patience could withstand */
6405 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
6406 return -EIO;
6407}
6408
6409
6410/*****************************************************************************
6411 *
6412 * Workqueue callbacks
6413 *
6414 *****************************************************************************/
6415
bb8c093b 6416static void iwl3945_bg_init_alive_start(struct work_struct *data)
b481de9c 6417{
bb8c093b
CH
6418 struct iwl3945_priv *priv =
6419 container_of(data, struct iwl3945_priv, init_alive_start.work);
b481de9c
ZY
6420
6421 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6422 return;
6423
6424 mutex_lock(&priv->mutex);
bb8c093b 6425 iwl3945_init_alive_start(priv);
b481de9c
ZY
6426 mutex_unlock(&priv->mutex);
6427}
6428
bb8c093b 6429static void iwl3945_bg_alive_start(struct work_struct *data)
b481de9c 6430{
bb8c093b
CH
6431 struct iwl3945_priv *priv =
6432 container_of(data, struct iwl3945_priv, alive_start.work);
b481de9c
ZY
6433
6434 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6435 return;
6436
6437 mutex_lock(&priv->mutex);
bb8c093b 6438 iwl3945_alive_start(priv);
b481de9c
ZY
6439 mutex_unlock(&priv->mutex);
6440}
6441
bb8c093b 6442static void iwl3945_bg_rf_kill(struct work_struct *work)
b481de9c 6443{
bb8c093b 6444 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
b481de9c
ZY
6445
6446 wake_up_interruptible(&priv->wait_command_queue);
6447
6448 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6449 return;
6450
6451 mutex_lock(&priv->mutex);
6452
bb8c093b 6453 if (!iwl3945_is_rfkill(priv)) {
b481de9c
ZY
6454 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
6455 "HW and/or SW RF Kill no longer active, restarting "
6456 "device\n");
6457 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
6458 queue_work(priv->workqueue, &priv->restart);
6459 } else {
6460
6461 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
6462 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6463 "disabled by SW switch\n");
6464 else
6465 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6466 "Kill switch must be turned off for "
6467 "wireless networking to work.\n");
6468 }
6469 mutex_unlock(&priv->mutex);
6470}
6471
6472#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6473
bb8c093b 6474static void iwl3945_bg_scan_check(struct work_struct *data)
b481de9c 6475{
bb8c093b
CH
6476 struct iwl3945_priv *priv =
6477 container_of(data, struct iwl3945_priv, scan_check.work);
b481de9c
ZY
6478
6479 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6480 return;
6481
6482 mutex_lock(&priv->mutex);
6483 if (test_bit(STATUS_SCANNING, &priv->status) ||
6484 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6485 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6486 "Scan completion watchdog resetting adapter (%dms)\n",
6487 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
15e869d8 6488
b481de9c 6489 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
bb8c093b 6490 iwl3945_send_scan_abort(priv);
b481de9c
ZY
6491 }
6492 mutex_unlock(&priv->mutex);
6493}
6494
bb8c093b 6495static void iwl3945_bg_request_scan(struct work_struct *data)
b481de9c 6496{
bb8c093b
CH
6497 struct iwl3945_priv *priv =
6498 container_of(data, struct iwl3945_priv, request_scan);
6499 struct iwl3945_host_cmd cmd = {
b481de9c 6500 .id = REPLY_SCAN_CMD,
bb8c093b 6501 .len = sizeof(struct iwl3945_scan_cmd),
b481de9c
ZY
6502 .meta.flags = CMD_SIZE_HUGE,
6503 };
6504 int rc = 0;
bb8c093b 6505 struct iwl3945_scan_cmd *scan;
b481de9c
ZY
6506 struct ieee80211_conf *conf = NULL;
6507 u8 direct_mask;
6508 int phymode;
6509
6510 conf = ieee80211_get_hw_conf(priv->hw);
6511
6512 mutex_lock(&priv->mutex);
6513
bb8c093b 6514 if (!iwl3945_is_ready(priv)) {
b481de9c
ZY
6515 IWL_WARNING("request scan called when driver not ready.\n");
6516 goto done;
6517 }
6518
6519 /* Make sure the scan wasn't cancelled before this queued work
6520 * was given the chance to run... */
6521 if (!test_bit(STATUS_SCANNING, &priv->status))
6522 goto done;
6523
6524 /* This should never be called or scheduled if there is currently
6525 * a scan active in the hardware. */
6526 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6527 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6528 "Ignoring second request.\n");
6529 rc = -EIO;
6530 goto done;
6531 }
6532
6533 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6534 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6535 goto done;
6536 }
6537
6538 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6539 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6540 goto done;
6541 }
6542
bb8c093b 6543 if (iwl3945_is_rfkill(priv)) {
b481de9c
ZY
6544 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6545 goto done;
6546 }
6547
6548 if (!test_bit(STATUS_READY, &priv->status)) {
6549 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6550 goto done;
6551 }
6552
6553 if (!priv->scan_bands) {
6554 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6555 goto done;
6556 }
6557
6558 if (!priv->scan) {
bb8c093b 6559 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
b481de9c
ZY
6560 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6561 if (!priv->scan) {
6562 rc = -ENOMEM;
6563 goto done;
6564 }
6565 }
6566 scan = priv->scan;
bb8c093b 6567 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
b481de9c
ZY
6568
6569 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6570 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6571
bb8c093b 6572 if (iwl3945_is_associated(priv)) {
b481de9c
ZY
6573 u16 interval = 0;
6574 u32 extra;
6575 u32 suspend_time = 100;
6576 u32 scan_suspend_time = 100;
6577 unsigned long flags;
6578
6579 IWL_DEBUG_INFO("Scanning while associated...\n");
6580
6581 spin_lock_irqsave(&priv->lock, flags);
6582 interval = priv->beacon_int;
6583 spin_unlock_irqrestore(&priv->lock, flags);
6584
6585 scan->suspend_time = 0;
15e869d8 6586 scan->max_out_time = cpu_to_le32(200 * 1024);
b481de9c
ZY
6587 if (!interval)
6588 interval = suspend_time;
6589 /*
6590 * suspend time format:
6591 * 0-19: beacon interval in usec (time before exec.)
6592 * 20-23: 0
6593 * 24-31: number of beacons (suspend between channels)
6594 */
6595
6596 extra = (suspend_time / interval) << 24;
6597 scan_suspend_time = 0xFF0FFFFF &
6598 (extra | ((suspend_time % interval) * 1024));
6599
6600 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6601 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6602 scan_suspend_time, interval);
6603 }
6604
6605 /* We should add the ability for user to lock to PASSIVE ONLY */
6606 if (priv->one_direct_scan) {
6607 IWL_DEBUG_SCAN
6608 ("Kicking off one direct scan for '%s'\n",
bb8c093b 6609 iwl3945_escape_essid(priv->direct_ssid,
b481de9c
ZY
6610 priv->direct_ssid_len));
6611 scan->direct_scan[0].id = WLAN_EID_SSID;
6612 scan->direct_scan[0].len = priv->direct_ssid_len;
6613 memcpy(scan->direct_scan[0].ssid,
6614 priv->direct_ssid, priv->direct_ssid_len);
6615 direct_mask = 1;
bb8c093b 6616 } else if (!iwl3945_is_associated(priv) && priv->essid_len) {
b481de9c
ZY
6617 scan->direct_scan[0].id = WLAN_EID_SSID;
6618 scan->direct_scan[0].len = priv->essid_len;
6619 memcpy(scan->direct_scan[0].ssid, priv->essid, priv->essid_len);
6620 direct_mask = 1;
6621 } else
6622 direct_mask = 0;
6623
6624 /* We don't build a direct scan probe request; the uCode will do
6625 * that based on the direct_mask added to each channel entry */
6626 scan->tx_cmd.len = cpu_to_le16(
bb8c093b 6627 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
b481de9c
ZY
6628 IWL_MAX_SCAN_SIZE - sizeof(scan), 0));
6629 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6630 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6631 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6632
6633 /* flags + rate selection */
6634
6635 switch (priv->scan_bands) {
6636 case 2:
6637 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6638 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6639 scan->good_CRC_th = 0;
6640 phymode = MODE_IEEE80211G;
6641 break;
6642
6643 case 1:
6644 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6645 scan->good_CRC_th = IWL_GOOD_CRC_TH;
6646 phymode = MODE_IEEE80211A;
6647 break;
6648
6649 default:
6650 IWL_WARNING("Invalid scan band count\n");
6651 goto done;
6652 }
6653
6654 /* select Rx antennas */
6655 scan->flags |= iwl3945_get_antenna_flags(priv);
6656
6657 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR)
6658 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6659
6660 if (direct_mask)
6661 IWL_DEBUG_SCAN
6662 ("Initiating direct scan for %s.\n",
bb8c093b 6663 iwl3945_escape_essid(priv->essid, priv->essid_len));
b481de9c
ZY
6664 else
6665 IWL_DEBUG_SCAN("Initiating indirect scan.\n");
6666
6667 scan->channel_count =
bb8c093b 6668 iwl3945_get_channels_for_scan(
b481de9c
ZY
6669 priv, phymode, 1, /* active */
6670 direct_mask,
6671 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
6672
6673 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
bb8c093b 6674 scan->channel_count * sizeof(struct iwl3945_scan_channel);
b481de9c
ZY
6675 cmd.data = scan;
6676 scan->len = cpu_to_le16(cmd.len);
6677
6678 set_bit(STATUS_SCAN_HW, &priv->status);
bb8c093b 6679 rc = iwl3945_send_cmd_sync(priv, &cmd);
b481de9c
ZY
6680 if (rc)
6681 goto done;
6682
6683 queue_delayed_work(priv->workqueue, &priv->scan_check,
6684 IWL_SCAN_CHECK_WATCHDOG);
6685
6686 mutex_unlock(&priv->mutex);
6687 return;
6688
6689 done:
01ebd063 6690 /* inform mac80211 scan aborted */
b481de9c
ZY
6691 queue_work(priv->workqueue, &priv->scan_completed);
6692 mutex_unlock(&priv->mutex);
6693}
6694
bb8c093b 6695static void iwl3945_bg_up(struct work_struct *data)
b481de9c 6696{
bb8c093b 6697 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
b481de9c
ZY
6698
6699 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6700 return;
6701
6702 mutex_lock(&priv->mutex);
bb8c093b 6703 __iwl3945_up(priv);
b481de9c
ZY
6704 mutex_unlock(&priv->mutex);
6705}
6706
bb8c093b 6707static void iwl3945_bg_restart(struct work_struct *data)
b481de9c 6708{
bb8c093b 6709 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
b481de9c
ZY
6710
6711 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6712 return;
6713
bb8c093b 6714 iwl3945_down(priv);
b481de9c
ZY
6715 queue_work(priv->workqueue, &priv->up);
6716}
6717
bb8c093b 6718static void iwl3945_bg_rx_replenish(struct work_struct *data)
b481de9c 6719{
bb8c093b
CH
6720 struct iwl3945_priv *priv =
6721 container_of(data, struct iwl3945_priv, rx_replenish);
b481de9c
ZY
6722
6723 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6724 return;
6725
6726 mutex_lock(&priv->mutex);
bb8c093b 6727 iwl3945_rx_replenish(priv);
b481de9c
ZY
6728 mutex_unlock(&priv->mutex);
6729}
6730
7878a5a4
MA
6731#define IWL_DELAY_NEXT_SCAN (HZ*2)
6732
bb8c093b 6733static void iwl3945_bg_post_associate(struct work_struct *data)
b481de9c 6734{
bb8c093b 6735 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv,
b481de9c
ZY
6736 post_associate.work);
6737
6738 int rc = 0;
6739 struct ieee80211_conf *conf = NULL;
0795af57 6740 DECLARE_MAC_BUF(mac);
b481de9c
ZY
6741
6742 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
6743 IWL_ERROR("%s Should not be called in AP mode\n", __FUNCTION__);
6744 return;
6745 }
6746
6747
0795af57
JP
6748 IWL_DEBUG_ASSOC("Associated as %d to: %s\n",
6749 priv->assoc_id,
6750 print_mac(mac, priv->active_rxon.bssid_addr));
b481de9c
ZY
6751
6752 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6753 return;
6754
6755 mutex_lock(&priv->mutex);
6756
32bfd35d 6757 if (!priv->vif || !priv->is_open) {
6ef89d0a
MA
6758 mutex_unlock(&priv->mutex);
6759 return;
6760 }
bb8c093b 6761 iwl3945_scan_cancel_timeout(priv, 200);
15e869d8 6762
b481de9c
ZY
6763 conf = ieee80211_get_hw_conf(priv->hw);
6764
6765 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 6766 iwl3945_commit_rxon(priv);
b481de9c 6767
bb8c093b
CH
6768 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6769 iwl3945_setup_rxon_timing(priv);
6770 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
b481de9c
ZY
6771 sizeof(priv->rxon_timing), &priv->rxon_timing);
6772 if (rc)
6773 IWL_WARNING("REPLY_RXON_TIMING failed - "
6774 "Attempting to continue.\n");
6775
6776 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6777
6778 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6779
6780 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6781 priv->assoc_id, priv->beacon_int);
6782
6783 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6784 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6785 else
6786 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6787
6788 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6789 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6790 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6791 else
6792 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6793
6794 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
6795 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6796
6797 }
6798
bb8c093b 6799 iwl3945_commit_rxon(priv);
b481de9c
ZY
6800
6801 switch (priv->iw_mode) {
6802 case IEEE80211_IF_TYPE_STA:
bb8c093b 6803 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
b481de9c
ZY
6804 break;
6805
6806 case IEEE80211_IF_TYPE_IBSS:
6807
6808 /* clear out the station table */
bb8c093b 6809 iwl3945_clear_stations_table(priv);
b481de9c 6810
bb8c093b
CH
6811 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
6812 iwl3945_add_station(priv, priv->bssid, 0, 0);
b481de9c
ZY
6813 iwl3945_sync_sta(priv, IWL_STA_ID,
6814 (priv->phymode == MODE_IEEE80211A)?
6815 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6816 CMD_ASYNC);
bb8c093b
CH
6817 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6818 iwl3945_send_beacon_cmd(priv);
b481de9c
ZY
6819
6820 break;
6821
6822 default:
6823 IWL_ERROR("%s Should not be called in %d mode\n",
bc434dd2 6824 __FUNCTION__, priv->iw_mode);
b481de9c
ZY
6825 break;
6826 }
6827
bb8c093b 6828 iwl3945_sequence_reset(priv);
b481de9c 6829
c8b0e6e1 6830#ifdef CONFIG_IWL3945_QOS
bb8c093b 6831 iwl3945_activate_qos(priv, 0);
c8b0e6e1 6832#endif /* CONFIG_IWL3945_QOS */
7878a5a4
MA
6833 /* we have just associated, don't start scan too early */
6834 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
b481de9c
ZY
6835 mutex_unlock(&priv->mutex);
6836}
6837
bb8c093b 6838static void iwl3945_bg_abort_scan(struct work_struct *work)
b481de9c 6839{
bb8c093b 6840 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
b481de9c 6841
bb8c093b 6842 if (!iwl3945_is_ready(priv))
b481de9c
ZY
6843 return;
6844
6845 mutex_lock(&priv->mutex);
6846
6847 set_bit(STATUS_SCAN_ABORTING, &priv->status);
bb8c093b 6848 iwl3945_send_scan_abort(priv);
b481de9c
ZY
6849
6850 mutex_unlock(&priv->mutex);
6851}
6852
76bb77e0
ZY
6853static int iwl3945_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
6854
bb8c093b 6855static void iwl3945_bg_scan_completed(struct work_struct *work)
b481de9c 6856{
bb8c093b
CH
6857 struct iwl3945_priv *priv =
6858 container_of(work, struct iwl3945_priv, scan_completed);
b481de9c
ZY
6859
6860 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6861
6862 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6863 return;
6864
a0646470
ZY
6865 if (test_bit(STATUS_CONF_PENDING, &priv->status))
6866 iwl3945_mac_config(priv->hw, ieee80211_get_hw_conf(priv->hw));
76bb77e0 6867
b481de9c
ZY
6868 ieee80211_scan_completed(priv->hw);
6869
6870 /* Since setting the TXPOWER may have been deferred while
6871 * performing the scan, fire one off */
6872 mutex_lock(&priv->mutex);
bb8c093b 6873 iwl3945_hw_reg_send_txpower(priv);
b481de9c
ZY
6874 mutex_unlock(&priv->mutex);
6875}
6876
6877/*****************************************************************************
6878 *
6879 * mac80211 entry point functions
6880 *
6881 *****************************************************************************/
6882
5a66926a
ZY
6883#define UCODE_READY_TIMEOUT (2 * HZ)
6884
bb8c093b 6885static int iwl3945_mac_start(struct ieee80211_hw *hw)
b481de9c 6886{
bb8c093b 6887 struct iwl3945_priv *priv = hw->priv;
5a66926a 6888 int ret;
b481de9c
ZY
6889
6890 IWL_DEBUG_MAC80211("enter\n");
6891
5a66926a
ZY
6892 if (pci_enable_device(priv->pci_dev)) {
6893 IWL_ERROR("Fail to pci_enable_device\n");
6894 return -ENODEV;
6895 }
6896 pci_restore_state(priv->pci_dev);
6897 pci_enable_msi(priv->pci_dev);
6898
6899 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6900 DRV_NAME, priv);
6901 if (ret) {
6902 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6903 goto out_disable_msi;
6904 }
6905
b481de9c
ZY
6906 /* we should be verifying the device is ready to be opened */
6907 mutex_lock(&priv->mutex);
6908
5a66926a
ZY
6909 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6910 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6911 * ucode filename and max sizes are card-specific. */
6912
6913 if (!priv->ucode_code.len) {
6914 ret = iwl3945_read_ucode(priv);
6915 if (ret) {
6916 IWL_ERROR("Could not read microcode: %d\n", ret);
6917 mutex_unlock(&priv->mutex);
6918 goto out_release_irq;
6919 }
6920 }
b481de9c 6921
5a66926a
ZY
6922 IWL_DEBUG_INFO("Start UP work.\n");
6923 __iwl3945_up(priv);
b481de9c 6924
5a66926a 6925 priv->is_open = 1;
b481de9c 6926 mutex_unlock(&priv->mutex);
5a66926a
ZY
6927
6928 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6929 * mac80211 will not be run successfully. */
6930 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6931 test_bit(STATUS_READY, &priv->status),
6932 UCODE_READY_TIMEOUT);
6933 if (!ret) {
6934 if (!test_bit(STATUS_READY, &priv->status)) {
6935 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6936 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6937 ret = -ETIMEDOUT;
6938 goto out_release_irq;
6939 }
6940 }
6941
b481de9c
ZY
6942 IWL_DEBUG_MAC80211("leave\n");
6943 return 0;
5a66926a
ZY
6944
6945out_release_irq:
6946 free_irq(priv->pci_dev->irq, priv);
6947out_disable_msi:
6948 pci_disable_msi(priv->pci_dev);
6949 return ret;
b481de9c
ZY
6950}
6951
bb8c093b 6952static void iwl3945_mac_stop(struct ieee80211_hw *hw)
b481de9c 6953{
bb8c093b 6954 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
6955
6956 IWL_DEBUG_MAC80211("enter\n");
6ef89d0a 6957
6ef89d0a
MA
6958 /* stop mac, cancel any scan request and clear
6959 * RXON_FILTER_ASSOC_MSK BIT
6960 */
b481de9c 6961 priv->is_open = 0;
5a66926a
ZY
6962
6963 if (iwl3945_is_ready_rf(priv)) {
6964 mutex_lock(&priv->mutex);
6965 iwl3945_scan_cancel_timeout(priv, 100);
6966 cancel_delayed_work(&priv->post_associate);
fde3571f 6967 mutex_unlock(&priv->mutex);
fde3571f
MA
6968 }
6969
5a66926a
ZY
6970 iwl3945_down(priv);
6971
6972 flush_workqueue(priv->workqueue);
6973 free_irq(priv->pci_dev->irq, priv);
6974 pci_disable_msi(priv->pci_dev);
6975 pci_save_state(priv->pci_dev);
6976 pci_disable_device(priv->pci_dev);
6ef89d0a 6977
b481de9c 6978 IWL_DEBUG_MAC80211("leave\n");
b481de9c
ZY
6979}
6980
bb8c093b 6981static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
b481de9c
ZY
6982 struct ieee80211_tx_control *ctl)
6983{
bb8c093b 6984 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
6985
6986 IWL_DEBUG_MAC80211("enter\n");
6987
6988 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR) {
6989 IWL_DEBUG_MAC80211("leave - monitor\n");
6990 return -1;
6991 }
6992
6993 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
6994 ctl->tx_rate);
6995
bb8c093b 6996 if (iwl3945_tx_skb(priv, skb, ctl))
b481de9c
ZY
6997 dev_kfree_skb_any(skb);
6998
6999 IWL_DEBUG_MAC80211("leave\n");
7000 return 0;
7001}
7002
bb8c093b 7003static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
b481de9c
ZY
7004 struct ieee80211_if_init_conf *conf)
7005{
bb8c093b 7006 struct iwl3945_priv *priv = hw->priv;
b481de9c 7007 unsigned long flags;
0795af57 7008 DECLARE_MAC_BUF(mac);
b481de9c 7009
32bfd35d 7010 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
b481de9c 7011
32bfd35d
JB
7012 if (priv->vif) {
7013 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
864792e3 7014 return -EOPNOTSUPP;
b481de9c
ZY
7015 }
7016
7017 spin_lock_irqsave(&priv->lock, flags);
32bfd35d 7018 priv->vif = conf->vif;
b481de9c
ZY
7019
7020 spin_unlock_irqrestore(&priv->lock, flags);
7021
7022 mutex_lock(&priv->mutex);
864792e3
TW
7023
7024 if (conf->mac_addr) {
7025 IWL_DEBUG_MAC80211("Set: %s\n", print_mac(mac, conf->mac_addr));
7026 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
7027 }
7028
5a66926a
ZY
7029 if (iwl3945_is_ready(priv))
7030 iwl3945_set_mode(priv, conf->type);
b481de9c 7031
b481de9c
ZY
7032 mutex_unlock(&priv->mutex);
7033
5a66926a 7034 IWL_DEBUG_MAC80211("leave\n");
b481de9c
ZY
7035 return 0;
7036}
7037
7038/**
bb8c093b 7039 * iwl3945_mac_config - mac80211 config callback
b481de9c
ZY
7040 *
7041 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
7042 * be set inappropriately and the driver currently sets the hardware up to
7043 * use it whenever needed.
7044 */
bb8c093b 7045static int iwl3945_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
b481de9c 7046{
bb8c093b
CH
7047 struct iwl3945_priv *priv = hw->priv;
7048 const struct iwl3945_channel_info *ch_info;
b481de9c 7049 unsigned long flags;
76bb77e0 7050 int ret = 0;
b481de9c
ZY
7051
7052 mutex_lock(&priv->mutex);
7053 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel);
7054
12342c47
ZY
7055 priv->add_radiotap = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
7056
bb8c093b 7057 if (!iwl3945_is_ready(priv)) {
b481de9c 7058 IWL_DEBUG_MAC80211("leave - not ready\n");
76bb77e0
ZY
7059 ret = -EIO;
7060 goto out;
b481de9c
ZY
7061 }
7062
bb8c093b 7063 if (unlikely(!iwl3945_param_disable_hw_scan &&
b481de9c 7064 test_bit(STATUS_SCANNING, &priv->status))) {
a0646470
ZY
7065 IWL_DEBUG_MAC80211("leave - scanning\n");
7066 set_bit(STATUS_CONF_PENDING, &priv->status);
b481de9c 7067 mutex_unlock(&priv->mutex);
a0646470 7068 return 0;
b481de9c
ZY
7069 }
7070
7071 spin_lock_irqsave(&priv->lock, flags);
7072
bb8c093b 7073 ch_info = iwl3945_get_channel_info(priv, conf->phymode, conf->channel);
b481de9c
ZY
7074 if (!is_channel_valid(ch_info)) {
7075 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this SKU.\n",
7076 conf->channel, conf->phymode);
7077 IWL_DEBUG_MAC80211("leave - invalid channel\n");
7078 spin_unlock_irqrestore(&priv->lock, flags);
76bb77e0
ZY
7079 ret = -EINVAL;
7080 goto out;
b481de9c
ZY
7081 }
7082
bb8c093b 7083 iwl3945_set_rxon_channel(priv, conf->phymode, conf->channel);
b481de9c 7084
bb8c093b 7085 iwl3945_set_flags_for_phymode(priv, conf->phymode);
b481de9c
ZY
7086
7087 /* The list of supported rates and rate mask can be different
7088 * for each phymode; since the phymode may have changed, reset
7089 * the rate mask to what mac80211 lists */
bb8c093b 7090 iwl3945_set_rate(priv);
b481de9c
ZY
7091
7092 spin_unlock_irqrestore(&priv->lock, flags);
7093
7094#ifdef IEEE80211_CONF_CHANNEL_SWITCH
7095 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
bb8c093b 7096 iwl3945_hw_channel_switch(priv, conf->channel);
76bb77e0 7097 goto out;
b481de9c
ZY
7098 }
7099#endif
7100
bb8c093b 7101 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
b481de9c
ZY
7102
7103 if (!conf->radio_enabled) {
7104 IWL_DEBUG_MAC80211("leave - radio disabled\n");
76bb77e0 7105 goto out;
b481de9c
ZY
7106 }
7107
bb8c093b 7108 if (iwl3945_is_rfkill(priv)) {
b481de9c 7109 IWL_DEBUG_MAC80211("leave - RF kill\n");
76bb77e0
ZY
7110 ret = -EIO;
7111 goto out;
b481de9c
ZY
7112 }
7113
bb8c093b 7114 iwl3945_set_rate(priv);
b481de9c
ZY
7115
7116 if (memcmp(&priv->active_rxon,
7117 &priv->staging_rxon, sizeof(priv->staging_rxon)))
bb8c093b 7118 iwl3945_commit_rxon(priv);
b481de9c
ZY
7119 else
7120 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
7121
7122 IWL_DEBUG_MAC80211("leave\n");
7123
76bb77e0 7124out:
a0646470 7125 clear_bit(STATUS_CONF_PENDING, &priv->status);
b481de9c 7126 mutex_unlock(&priv->mutex);
76bb77e0 7127 return ret;
b481de9c
ZY
7128}
7129
bb8c093b 7130static void iwl3945_config_ap(struct iwl3945_priv *priv)
b481de9c
ZY
7131{
7132 int rc = 0;
7133
7134 if (priv->status & STATUS_EXIT_PENDING)
7135 return;
7136
7137 /* The following should be done only at AP bring up */
7138 if ((priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) == 0) {
7139
7140 /* RXON - unassoc (to set timing command) */
7141 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 7142 iwl3945_commit_rxon(priv);
b481de9c
ZY
7143
7144 /* RXON Timing */
bb8c093b
CH
7145 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
7146 iwl3945_setup_rxon_timing(priv);
7147 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
b481de9c
ZY
7148 sizeof(priv->rxon_timing), &priv->rxon_timing);
7149 if (rc)
7150 IWL_WARNING("REPLY_RXON_TIMING failed - "
7151 "Attempting to continue.\n");
7152
7153 /* FIXME: what should be the assoc_id for AP? */
7154 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
7155 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7156 priv->staging_rxon.flags |=
7157 RXON_FLG_SHORT_PREAMBLE_MSK;
7158 else
7159 priv->staging_rxon.flags &=
7160 ~RXON_FLG_SHORT_PREAMBLE_MSK;
7161
7162 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
7163 if (priv->assoc_capability &
7164 WLAN_CAPABILITY_SHORT_SLOT_TIME)
7165 priv->staging_rxon.flags |=
7166 RXON_FLG_SHORT_SLOT_MSK;
7167 else
7168 priv->staging_rxon.flags &=
7169 ~RXON_FLG_SHORT_SLOT_MSK;
7170
7171 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
7172 priv->staging_rxon.flags &=
7173 ~RXON_FLG_SHORT_SLOT_MSK;
7174 }
7175 /* restore RXON assoc */
7176 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
bb8c093b
CH
7177 iwl3945_commit_rxon(priv);
7178 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
556f8db7 7179 }
bb8c093b 7180 iwl3945_send_beacon_cmd(priv);
b481de9c
ZY
7181
7182 /* FIXME - we need to add code here to detect a totally new
7183 * configuration, reset the AP, unassoc, rxon timing, assoc,
7184 * clear sta table, add BCAST sta... */
7185}
7186
32bfd35d
JB
7187static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
7188 struct ieee80211_vif *vif,
b481de9c
ZY
7189 struct ieee80211_if_conf *conf)
7190{
bb8c093b 7191 struct iwl3945_priv *priv = hw->priv;
0795af57 7192 DECLARE_MAC_BUF(mac);
b481de9c
ZY
7193 unsigned long flags;
7194 int rc;
7195
7196 if (conf == NULL)
7197 return -EIO;
7198
4150c572
JB
7199 /* XXX: this MUST use conf->mac_addr */
7200
b481de9c
ZY
7201 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
7202 (!conf->beacon || !conf->ssid_len)) {
7203 IWL_DEBUG_MAC80211
7204 ("Leaving in AP mode because HostAPD is not ready.\n");
7205 return 0;
7206 }
7207
5a66926a
ZY
7208 if (!iwl3945_is_alive(priv))
7209 return -EAGAIN;
7210
b481de9c
ZY
7211 mutex_lock(&priv->mutex);
7212
b481de9c 7213 if (conf->bssid)
0795af57
JP
7214 IWL_DEBUG_MAC80211("bssid: %s\n",
7215 print_mac(mac, conf->bssid));
b481de9c 7216
4150c572
JB
7217/*
7218 * very dubious code was here; the probe filtering flag is never set:
7219 *
b481de9c
ZY
7220 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
7221 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
4150c572
JB
7222 */
7223 if (unlikely(test_bit(STATUS_SCANNING, &priv->status))) {
b481de9c
ZY
7224 IWL_DEBUG_MAC80211("leave - scanning\n");
7225 mutex_unlock(&priv->mutex);
7226 return 0;
7227 }
7228
32bfd35d
JB
7229 if (priv->vif != vif) {
7230 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
b481de9c
ZY
7231 mutex_unlock(&priv->mutex);
7232 return 0;
7233 }
7234
7235 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
7236 if (!conf->bssid) {
7237 conf->bssid = priv->mac_addr;
7238 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
0795af57
JP
7239 IWL_DEBUG_MAC80211("bssid was set to: %s\n",
7240 print_mac(mac, conf->bssid));
b481de9c
ZY
7241 }
7242 if (priv->ibss_beacon)
7243 dev_kfree_skb(priv->ibss_beacon);
7244
7245 priv->ibss_beacon = conf->beacon;
7246 }
7247
fde3571f
MA
7248 if (iwl3945_is_rfkill(priv))
7249 goto done;
7250
b481de9c
ZY
7251 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
7252 !is_multicast_ether_addr(conf->bssid)) {
7253 /* If there is currently a HW scan going on in the background
7254 * then we need to cancel it else the RXON below will fail. */
bb8c093b 7255 if (iwl3945_scan_cancel_timeout(priv, 100)) {
b481de9c
ZY
7256 IWL_WARNING("Aborted scan still in progress "
7257 "after 100ms\n");
7258 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
7259 mutex_unlock(&priv->mutex);
7260 return -EAGAIN;
7261 }
7262 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
7263
7264 /* TODO: Audit driver for usage of these members and see
7265 * if mac80211 deprecates them (priv->bssid looks like it
7266 * shouldn't be there, but I haven't scanned the IBSS code
7267 * to verify) - jpk */
7268 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
7269
7270 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
bb8c093b 7271 iwl3945_config_ap(priv);
b481de9c 7272 else {
bb8c093b 7273 rc = iwl3945_commit_rxon(priv);
b481de9c 7274 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && rc)
bb8c093b 7275 iwl3945_add_station(priv,
556f8db7 7276 priv->active_rxon.bssid_addr, 1, 0);
b481de9c
ZY
7277 }
7278
7279 } else {
bb8c093b 7280 iwl3945_scan_cancel_timeout(priv, 100);
b481de9c 7281 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 7282 iwl3945_commit_rxon(priv);
b481de9c
ZY
7283 }
7284
fde3571f 7285 done:
b481de9c
ZY
7286 spin_lock_irqsave(&priv->lock, flags);
7287 if (!conf->ssid_len)
7288 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
7289 else
7290 memcpy(priv->essid, conf->ssid, conf->ssid_len);
7291
7292 priv->essid_len = conf->ssid_len;
7293 spin_unlock_irqrestore(&priv->lock, flags);
7294
7295 IWL_DEBUG_MAC80211("leave\n");
7296 mutex_unlock(&priv->mutex);
7297
7298 return 0;
7299}
7300
bb8c093b 7301static void iwl3945_configure_filter(struct ieee80211_hw *hw,
4150c572
JB
7302 unsigned int changed_flags,
7303 unsigned int *total_flags,
7304 int mc_count, struct dev_addr_list *mc_list)
7305{
7306 /*
7307 * XXX: dummy
bb8c093b 7308 * see also iwl3945_connection_init_rx_config
4150c572
JB
7309 */
7310 *total_flags = 0;
7311}
7312
bb8c093b 7313static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
b481de9c
ZY
7314 struct ieee80211_if_init_conf *conf)
7315{
bb8c093b 7316 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
7317
7318 IWL_DEBUG_MAC80211("enter\n");
7319
7320 mutex_lock(&priv->mutex);
6ef89d0a 7321
fde3571f
MA
7322 if (iwl3945_is_ready_rf(priv)) {
7323 iwl3945_scan_cancel_timeout(priv, 100);
7324 cancel_delayed_work(&priv->post_associate);
7325 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
7326 iwl3945_commit_rxon(priv);
7327 }
32bfd35d
JB
7328 if (priv->vif == conf->vif) {
7329 priv->vif = NULL;
b481de9c
ZY
7330 memset(priv->bssid, 0, ETH_ALEN);
7331 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
7332 priv->essid_len = 0;
7333 }
7334 mutex_unlock(&priv->mutex);
7335
7336 IWL_DEBUG_MAC80211("leave\n");
7337
7338}
7339
bb8c093b 7340static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
b481de9c
ZY
7341{
7342 int rc = 0;
7343 unsigned long flags;
bb8c093b 7344 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
7345
7346 IWL_DEBUG_MAC80211("enter\n");
7347
15e869d8 7348 mutex_lock(&priv->mutex);
b481de9c
ZY
7349 spin_lock_irqsave(&priv->lock, flags);
7350
bb8c093b 7351 if (!iwl3945_is_ready_rf(priv)) {
b481de9c
ZY
7352 rc = -EIO;
7353 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
7354 goto out_unlock;
7355 }
7356
7357 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) { /* APs don't scan */
7358 rc = -EIO;
7359 IWL_ERROR("ERROR: APs don't scan\n");
7360 goto out_unlock;
7361 }
7362
7878a5a4
MA
7363 /* we don't schedule scan within next_scan_jiffies period */
7364 if (priv->next_scan_jiffies &&
7365 time_after(priv->next_scan_jiffies, jiffies)) {
7366 rc = -EAGAIN;
7367 goto out_unlock;
7368 }
b481de9c 7369 /* if we just finished scan ask for delay */
7878a5a4
MA
7370 if (priv->last_scan_jiffies && time_after(priv->last_scan_jiffies +
7371 IWL_DELAY_NEXT_SCAN, jiffies)) {
b481de9c
ZY
7372 rc = -EAGAIN;
7373 goto out_unlock;
7374 }
7375 if (len) {
7878a5a4 7376 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
bb8c093b 7377 iwl3945_escape_essid(ssid, len), (int)len);
b481de9c
ZY
7378
7379 priv->one_direct_scan = 1;
7380 priv->direct_ssid_len = (u8)
7381 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
7382 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
6ef89d0a
MA
7383 } else
7384 priv->one_direct_scan = 0;
b481de9c 7385
bb8c093b 7386 rc = iwl3945_scan_initiate(priv);
b481de9c
ZY
7387
7388 IWL_DEBUG_MAC80211("leave\n");
7389
7390out_unlock:
7391 spin_unlock_irqrestore(&priv->lock, flags);
15e869d8 7392 mutex_unlock(&priv->mutex);
b481de9c
ZY
7393
7394 return rc;
7395}
7396
bb8c093b 7397static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
b481de9c
ZY
7398 const u8 *local_addr, const u8 *addr,
7399 struct ieee80211_key_conf *key)
7400{
bb8c093b 7401 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
7402 int rc = 0;
7403 u8 sta_id;
7404
7405 IWL_DEBUG_MAC80211("enter\n");
7406
bb8c093b 7407 if (!iwl3945_param_hwcrypto) {
b481de9c
ZY
7408 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7409 return -EOPNOTSUPP;
7410 }
7411
7412 if (is_zero_ether_addr(addr))
7413 /* only support pairwise keys */
7414 return -EOPNOTSUPP;
7415
bb8c093b 7416 sta_id = iwl3945_hw_find_station(priv, addr);
b481de9c 7417 if (sta_id == IWL_INVALID_STATION) {
0795af57
JP
7418 DECLARE_MAC_BUF(mac);
7419
7420 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
7421 print_mac(mac, addr));
b481de9c
ZY
7422 return -EINVAL;
7423 }
7424
7425 mutex_lock(&priv->mutex);
7426
bb8c093b 7427 iwl3945_scan_cancel_timeout(priv, 100);
15e869d8 7428
b481de9c
ZY
7429 switch (cmd) {
7430 case SET_KEY:
bb8c093b 7431 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
b481de9c 7432 if (!rc) {
bb8c093b
CH
7433 iwl3945_set_rxon_hwcrypto(priv, 1);
7434 iwl3945_commit_rxon(priv);
b481de9c
ZY
7435 key->hw_key_idx = sta_id;
7436 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7437 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7438 }
7439 break;
7440 case DISABLE_KEY:
bb8c093b 7441 rc = iwl3945_clear_sta_key_info(priv, sta_id);
b481de9c 7442 if (!rc) {
bb8c093b
CH
7443 iwl3945_set_rxon_hwcrypto(priv, 0);
7444 iwl3945_commit_rxon(priv);
b481de9c
ZY
7445 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7446 }
7447 break;
7448 default:
7449 rc = -EINVAL;
7450 }
7451
7452 IWL_DEBUG_MAC80211("leave\n");
7453 mutex_unlock(&priv->mutex);
7454
7455 return rc;
7456}
7457
bb8c093b 7458static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue,
b481de9c
ZY
7459 const struct ieee80211_tx_queue_params *params)
7460{
bb8c093b 7461 struct iwl3945_priv *priv = hw->priv;
c8b0e6e1 7462#ifdef CONFIG_IWL3945_QOS
b481de9c
ZY
7463 unsigned long flags;
7464 int q;
0054b34d 7465#endif /* CONFIG_IWL3945_QOS */
b481de9c
ZY
7466
7467 IWL_DEBUG_MAC80211("enter\n");
7468
bb8c093b 7469 if (!iwl3945_is_ready_rf(priv)) {
b481de9c
ZY
7470 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7471 return -EIO;
7472 }
7473
7474 if (queue >= AC_NUM) {
7475 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7476 return 0;
7477 }
7478
c8b0e6e1 7479#ifdef CONFIG_IWL3945_QOS
b481de9c
ZY
7480 if (!priv->qos_data.qos_enable) {
7481 priv->qos_data.qos_active = 0;
7482 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
7483 return 0;
7484 }
7485 q = AC_NUM - 1 - queue;
7486
7487 spin_lock_irqsave(&priv->lock, flags);
7488
7489 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7490 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7491 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7492 priv->qos_data.def_qos_parm.ac[q].edca_txop =
7493 cpu_to_le16((params->burst_time * 100));
7494
7495 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7496 priv->qos_data.qos_active = 1;
7497
7498 spin_unlock_irqrestore(&priv->lock, flags);
7499
7500 mutex_lock(&priv->mutex);
7501 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
bb8c093b
CH
7502 iwl3945_activate_qos(priv, 1);
7503 else if (priv->assoc_id && iwl3945_is_associated(priv))
7504 iwl3945_activate_qos(priv, 0);
b481de9c
ZY
7505
7506 mutex_unlock(&priv->mutex);
7507
c8b0e6e1 7508#endif /*CONFIG_IWL3945_QOS */
b481de9c
ZY
7509
7510 IWL_DEBUG_MAC80211("leave\n");
7511 return 0;
7512}
7513
bb8c093b 7514static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
b481de9c
ZY
7515 struct ieee80211_tx_queue_stats *stats)
7516{
bb8c093b 7517 struct iwl3945_priv *priv = hw->priv;
b481de9c 7518 int i, avail;
bb8c093b
CH
7519 struct iwl3945_tx_queue *txq;
7520 struct iwl3945_queue *q;
b481de9c
ZY
7521 unsigned long flags;
7522
7523 IWL_DEBUG_MAC80211("enter\n");
7524
bb8c093b 7525 if (!iwl3945_is_ready_rf(priv)) {
b481de9c
ZY
7526 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7527 return -EIO;
7528 }
7529
7530 spin_lock_irqsave(&priv->lock, flags);
7531
7532 for (i = 0; i < AC_NUM; i++) {
7533 txq = &priv->txq[i];
7534 q = &txq->q;
bb8c093b 7535 avail = iwl3945_queue_space(q);
b481de9c
ZY
7536
7537 stats->data[i].len = q->n_window - avail;
7538 stats->data[i].limit = q->n_window - q->high_mark;
7539 stats->data[i].count = q->n_window;
7540
7541 }
7542 spin_unlock_irqrestore(&priv->lock, flags);
7543
7544 IWL_DEBUG_MAC80211("leave\n");
7545
7546 return 0;
7547}
7548
bb8c093b 7549static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
b481de9c
ZY
7550 struct ieee80211_low_level_stats *stats)
7551{
7552 IWL_DEBUG_MAC80211("enter\n");
7553 IWL_DEBUG_MAC80211("leave\n");
7554
7555 return 0;
7556}
7557
bb8c093b 7558static u64 iwl3945_mac_get_tsf(struct ieee80211_hw *hw)
b481de9c
ZY
7559{
7560 IWL_DEBUG_MAC80211("enter\n");
7561 IWL_DEBUG_MAC80211("leave\n");
7562
7563 return 0;
7564}
7565
bb8c093b 7566static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
b481de9c 7567{
bb8c093b 7568 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
7569 unsigned long flags;
7570
7571 mutex_lock(&priv->mutex);
7572 IWL_DEBUG_MAC80211("enter\n");
7573
c8b0e6e1 7574#ifdef CONFIG_IWL3945_QOS
bb8c093b 7575 iwl3945_reset_qos(priv);
b481de9c
ZY
7576#endif
7577 cancel_delayed_work(&priv->post_associate);
7578
7579 spin_lock_irqsave(&priv->lock, flags);
7580 priv->assoc_id = 0;
7581 priv->assoc_capability = 0;
7582 priv->call_post_assoc_from_beacon = 0;
7583
7584 /* new association get rid of ibss beacon skb */
7585 if (priv->ibss_beacon)
7586 dev_kfree_skb(priv->ibss_beacon);
7587
7588 priv->ibss_beacon = NULL;
7589
7590 priv->beacon_int = priv->hw->conf.beacon_int;
7591 priv->timestamp1 = 0;
7592 priv->timestamp0 = 0;
7593 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA))
7594 priv->beacon_int = 0;
7595
7596 spin_unlock_irqrestore(&priv->lock, flags);
7597
fde3571f
MA
7598 if (!iwl3945_is_ready_rf(priv)) {
7599 IWL_DEBUG_MAC80211("leave - not ready\n");
7600 mutex_unlock(&priv->mutex);
7601 return;
7602 }
7603
15e869d8
MA
7604 /* we are restarting association process
7605 * clear RXON_FILTER_ASSOC_MSK bit
7606 */
7607 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
bb8c093b 7608 iwl3945_scan_cancel_timeout(priv, 100);
15e869d8 7609 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
bb8c093b 7610 iwl3945_commit_rxon(priv);
15e869d8
MA
7611 }
7612
b481de9c
ZY
7613 /* Per mac80211.h: This is only used in IBSS mode... */
7614 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
15e869d8 7615
b481de9c
ZY
7616 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7617 mutex_unlock(&priv->mutex);
7618 return;
b481de9c
ZY
7619 }
7620
7621 priv->only_active_channel = 0;
7622
bb8c093b 7623 iwl3945_set_rate(priv);
b481de9c
ZY
7624
7625 mutex_unlock(&priv->mutex);
7626
7627 IWL_DEBUG_MAC80211("leave\n");
7628
7629}
7630
bb8c093b 7631static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb,
b481de9c
ZY
7632 struct ieee80211_tx_control *control)
7633{
bb8c093b 7634 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
7635 unsigned long flags;
7636
7637 mutex_lock(&priv->mutex);
7638 IWL_DEBUG_MAC80211("enter\n");
7639
bb8c093b 7640 if (!iwl3945_is_ready_rf(priv)) {
b481de9c
ZY
7641 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7642 mutex_unlock(&priv->mutex);
7643 return -EIO;
7644 }
7645
7646 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
7647 IWL_DEBUG_MAC80211("leave - not IBSS\n");
7648 mutex_unlock(&priv->mutex);
7649 return -EIO;
7650 }
7651
7652 spin_lock_irqsave(&priv->lock, flags);
7653
7654 if (priv->ibss_beacon)
7655 dev_kfree_skb(priv->ibss_beacon);
7656
7657 priv->ibss_beacon = skb;
7658
7659 priv->assoc_id = 0;
7660
7661 IWL_DEBUG_MAC80211("leave\n");
7662 spin_unlock_irqrestore(&priv->lock, flags);
7663
c8b0e6e1 7664#ifdef CONFIG_IWL3945_QOS
bb8c093b 7665 iwl3945_reset_qos(priv);
b481de9c
ZY
7666#endif
7667
7668 queue_work(priv->workqueue, &priv->post_associate.work);
7669
7670 mutex_unlock(&priv->mutex);
7671
7672 return 0;
7673}
7674
7675/*****************************************************************************
7676 *
7677 * sysfs attributes
7678 *
7679 *****************************************************************************/
7680
c8b0e6e1 7681#ifdef CONFIG_IWL3945_DEBUG
b481de9c
ZY
7682
7683/*
7684 * The following adds a new attribute to the sysfs representation
7685 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7686 * used for controlling the debug level.
7687 *
7688 * See the level definitions in iwl for details.
7689 */
7690
7691static ssize_t show_debug_level(struct device_driver *d, char *buf)
7692{
bb8c093b 7693 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
b481de9c
ZY
7694}
7695static ssize_t store_debug_level(struct device_driver *d,
7696 const char *buf, size_t count)
7697{
7698 char *p = (char *)buf;
7699 u32 val;
7700
7701 val = simple_strtoul(p, &p, 0);
7702 if (p == buf)
7703 printk(KERN_INFO DRV_NAME
7704 ": %s is not in hex or decimal form.\n", buf);
7705 else
bb8c093b 7706 iwl3945_debug_level = val;
b481de9c
ZY
7707
7708 return strnlen(buf, count);
7709}
7710
7711static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7712 show_debug_level, store_debug_level);
7713
c8b0e6e1 7714#endif /* CONFIG_IWL3945_DEBUG */
b481de9c
ZY
7715
7716static ssize_t show_rf_kill(struct device *d,
7717 struct device_attribute *attr, char *buf)
7718{
7719 /*
7720 * 0 - RF kill not enabled
7721 * 1 - SW based RF kill active (sysfs)
7722 * 2 - HW based RF kill active
7723 * 3 - Both HW and SW based RF kill active
7724 */
bb8c093b 7725 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7726 int val = (test_bit(STATUS_RF_KILL_SW, &priv->status) ? 0x1 : 0x0) |
7727 (test_bit(STATUS_RF_KILL_HW, &priv->status) ? 0x2 : 0x0);
7728
7729 return sprintf(buf, "%i\n", val);
7730}
7731
7732static ssize_t store_rf_kill(struct device *d,
7733 struct device_attribute *attr,
7734 const char *buf, size_t count)
7735{
bb8c093b 7736 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7737
7738 mutex_lock(&priv->mutex);
bb8c093b 7739 iwl3945_radio_kill_sw(priv, buf[0] == '1');
b481de9c
ZY
7740 mutex_unlock(&priv->mutex);
7741
7742 return count;
7743}
7744
7745static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
7746
7747static ssize_t show_temperature(struct device *d,
7748 struct device_attribute *attr, char *buf)
7749{
bb8c093b 7750 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c 7751
bb8c093b 7752 if (!iwl3945_is_alive(priv))
b481de9c
ZY
7753 return -EAGAIN;
7754
bb8c093b 7755 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
b481de9c
ZY
7756}
7757
7758static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7759
7760static ssize_t show_rs_window(struct device *d,
7761 struct device_attribute *attr,
7762 char *buf)
7763{
bb8c093b
CH
7764 struct iwl3945_priv *priv = d->driver_data;
7765 return iwl3945_fill_rs_info(priv->hw, buf, IWL_AP_ID);
b481de9c
ZY
7766}
7767static DEVICE_ATTR(rs_window, S_IRUGO, show_rs_window, NULL);
7768
7769static ssize_t show_tx_power(struct device *d,
7770 struct device_attribute *attr, char *buf)
7771{
bb8c093b 7772 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7773 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7774}
7775
7776static ssize_t store_tx_power(struct device *d,
7777 struct device_attribute *attr,
7778 const char *buf, size_t count)
7779{
bb8c093b 7780 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7781 char *p = (char *)buf;
7782 u32 val;
7783
7784 val = simple_strtoul(p, &p, 10);
7785 if (p == buf)
7786 printk(KERN_INFO DRV_NAME
7787 ": %s is not in decimal form.\n", buf);
7788 else
bb8c093b 7789 iwl3945_hw_reg_set_txpower(priv, val);
b481de9c
ZY
7790
7791 return count;
7792}
7793
7794static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7795
7796static ssize_t show_flags(struct device *d,
7797 struct device_attribute *attr, char *buf)
7798{
bb8c093b 7799 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7800
7801 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7802}
7803
7804static ssize_t store_flags(struct device *d,
7805 struct device_attribute *attr,
7806 const char *buf, size_t count)
7807{
bb8c093b 7808 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7809 u32 flags = simple_strtoul(buf, NULL, 0);
7810
7811 mutex_lock(&priv->mutex);
7812 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7813 /* Cancel any currently running scans... */
bb8c093b 7814 if (iwl3945_scan_cancel_timeout(priv, 100))
b481de9c
ZY
7815 IWL_WARNING("Could not cancel scan.\n");
7816 else {
7817 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7818 flags);
7819 priv->staging_rxon.flags = cpu_to_le32(flags);
bb8c093b 7820 iwl3945_commit_rxon(priv);
b481de9c
ZY
7821 }
7822 }
7823 mutex_unlock(&priv->mutex);
7824
7825 return count;
7826}
7827
7828static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7829
7830static ssize_t show_filter_flags(struct device *d,
7831 struct device_attribute *attr, char *buf)
7832{
bb8c093b 7833 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7834
7835 return sprintf(buf, "0x%04X\n",
7836 le32_to_cpu(priv->active_rxon.filter_flags));
7837}
7838
7839static ssize_t store_filter_flags(struct device *d,
7840 struct device_attribute *attr,
7841 const char *buf, size_t count)
7842{
bb8c093b 7843 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7844 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7845
7846 mutex_lock(&priv->mutex);
7847 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7848 /* Cancel any currently running scans... */
bb8c093b 7849 if (iwl3945_scan_cancel_timeout(priv, 100))
b481de9c
ZY
7850 IWL_WARNING("Could not cancel scan.\n");
7851 else {
7852 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7853 "0x%04X\n", filter_flags);
7854 priv->staging_rxon.filter_flags =
7855 cpu_to_le32(filter_flags);
bb8c093b 7856 iwl3945_commit_rxon(priv);
b481de9c
ZY
7857 }
7858 }
7859 mutex_unlock(&priv->mutex);
7860
7861 return count;
7862}
7863
7864static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7865 store_filter_flags);
7866
7867static ssize_t show_tune(struct device *d,
7868 struct device_attribute *attr, char *buf)
7869{
bb8c093b 7870 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7871
7872 return sprintf(buf, "0x%04X\n",
7873 (priv->phymode << 8) |
7874 le16_to_cpu(priv->active_rxon.channel));
7875}
7876
bb8c093b 7877static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv, u8 phymode);
b481de9c
ZY
7878
7879static ssize_t store_tune(struct device *d,
7880 struct device_attribute *attr,
7881 const char *buf, size_t count)
7882{
bb8c093b 7883 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
b481de9c
ZY
7884 char *p = (char *)buf;
7885 u16 tune = simple_strtoul(p, &p, 0);
7886 u8 phymode = (tune >> 8) & 0xff;
7887 u16 channel = tune & 0xff;
7888
7889 IWL_DEBUG_INFO("Tune request to:%d channel:%d\n", phymode, channel);
7890
7891 mutex_lock(&priv->mutex);
7892 if ((le16_to_cpu(priv->staging_rxon.channel) != channel) ||
7893 (priv->phymode != phymode)) {
bb8c093b 7894 const struct iwl3945_channel_info *ch_info;
b481de9c 7895
bb8c093b 7896 ch_info = iwl3945_get_channel_info(priv, phymode, channel);
b481de9c
ZY
7897 if (!ch_info) {
7898 IWL_WARNING("Requested invalid phymode/channel "
7899 "combination: %d %d\n", phymode, channel);
7900 mutex_unlock(&priv->mutex);
7901 return -EINVAL;
7902 }
7903
7904 /* Cancel any currently running scans... */
bb8c093b 7905 if (iwl3945_scan_cancel_timeout(priv, 100))
b481de9c
ZY
7906 IWL_WARNING("Could not cancel scan.\n");
7907 else {
7908 IWL_DEBUG_INFO("Committing phymode and "
7909 "rxon.channel = %d %d\n",
7910 phymode, channel);
7911
bb8c093b
CH
7912 iwl3945_set_rxon_channel(priv, phymode, channel);
7913 iwl3945_set_flags_for_phymode(priv, phymode);
b481de9c 7914
bb8c093b
CH
7915 iwl3945_set_rate(priv);
7916 iwl3945_commit_rxon(priv);
b481de9c
ZY
7917 }
7918 }
7919 mutex_unlock(&priv->mutex);
7920
7921 return count;
7922}
7923
7924static DEVICE_ATTR(tune, S_IWUSR | S_IRUGO, show_tune, store_tune);
7925
c8b0e6e1 7926#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
7927
7928static ssize_t show_measurement(struct device *d,
7929 struct device_attribute *attr, char *buf)
7930{
bb8c093b
CH
7931 struct iwl3945_priv *priv = dev_get_drvdata(d);
7932 struct iwl3945_spectrum_notification measure_report;
b481de9c
ZY
7933 u32 size = sizeof(measure_report), len = 0, ofs = 0;
7934 u8 *data = (u8 *) & measure_report;
7935 unsigned long flags;
7936
7937 spin_lock_irqsave(&priv->lock, flags);
7938 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7939 spin_unlock_irqrestore(&priv->lock, flags);
7940 return 0;
7941 }
7942 memcpy(&measure_report, &priv->measure_report, size);
7943 priv->measurement_status = 0;
7944 spin_unlock_irqrestore(&priv->lock, flags);
7945
7946 while (size && (PAGE_SIZE - len)) {
7947 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7948 PAGE_SIZE - len, 1);
7949 len = strlen(buf);
7950 if (PAGE_SIZE - len)
7951 buf[len++] = '\n';
7952
7953 ofs += 16;
7954 size -= min(size, 16U);
7955 }
7956
7957 return len;
7958}
7959
7960static ssize_t store_measurement(struct device *d,
7961 struct device_attribute *attr,
7962 const char *buf, size_t count)
7963{
bb8c093b 7964 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
7965 struct ieee80211_measurement_params params = {
7966 .channel = le16_to_cpu(priv->active_rxon.channel),
7967 .start_time = cpu_to_le64(priv->last_tsf),
7968 .duration = cpu_to_le16(1),
7969 };
7970 u8 type = IWL_MEASURE_BASIC;
7971 u8 buffer[32];
7972 u8 channel;
7973
7974 if (count) {
7975 char *p = buffer;
7976 strncpy(buffer, buf, min(sizeof(buffer), count));
7977 channel = simple_strtoul(p, NULL, 0);
7978 if (channel)
7979 params.channel = channel;
7980
7981 p = buffer;
7982 while (*p && *p != ' ')
7983 p++;
7984 if (*p)
7985 type = simple_strtoul(p + 1, NULL, 0);
7986 }
7987
7988 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7989 "channel %d (for '%s')\n", type, params.channel, buf);
bb8c093b 7990 iwl3945_get_measurement(priv, &params, type);
b481de9c
ZY
7991
7992 return count;
7993}
7994
7995static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7996 show_measurement, store_measurement);
c8b0e6e1 7997#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
b481de9c
ZY
7998
7999static ssize_t show_rate(struct device *d,
8000 struct device_attribute *attr, char *buf)
8001{
bb8c093b 8002 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8003 unsigned long flags;
8004 int i;
8005
8006 spin_lock_irqsave(&priv->sta_lock, flags);
8007 if (priv->iw_mode == IEEE80211_IF_TYPE_STA)
8008 i = priv->stations[IWL_AP_ID].current_rate.s.rate;
8009 else
8010 i = priv->stations[IWL_STA_ID].current_rate.s.rate;
8011 spin_unlock_irqrestore(&priv->sta_lock, flags);
8012
bb8c093b 8013 i = iwl3945_rate_index_from_plcp(i);
b481de9c
ZY
8014 if (i == -1)
8015 return sprintf(buf, "0\n");
8016
8017 return sprintf(buf, "%d%s\n",
bb8c093b
CH
8018 (iwl3945_rates[i].ieee >> 1),
8019 (iwl3945_rates[i].ieee & 0x1) ? ".5" : "");
b481de9c
ZY
8020}
8021
8022static DEVICE_ATTR(rate, S_IRUSR, show_rate, NULL);
8023
8024static ssize_t store_retry_rate(struct device *d,
8025 struct device_attribute *attr,
8026 const char *buf, size_t count)
8027{
bb8c093b 8028 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8029
8030 priv->retry_rate = simple_strtoul(buf, NULL, 0);
8031 if (priv->retry_rate <= 0)
8032 priv->retry_rate = 1;
8033
8034 return count;
8035}
8036
8037static ssize_t show_retry_rate(struct device *d,
8038 struct device_attribute *attr, char *buf)
8039{
bb8c093b 8040 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8041 return sprintf(buf, "%d", priv->retry_rate);
8042}
8043
8044static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
8045 store_retry_rate);
8046
8047static ssize_t store_power_level(struct device *d,
8048 struct device_attribute *attr,
8049 const char *buf, size_t count)
8050{
bb8c093b 8051 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8052 int rc;
8053 int mode;
8054
8055 mode = simple_strtoul(buf, NULL, 0);
8056 mutex_lock(&priv->mutex);
8057
bb8c093b 8058 if (!iwl3945_is_ready(priv)) {
b481de9c
ZY
8059 rc = -EAGAIN;
8060 goto out;
8061 }
8062
8063 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
8064 mode = IWL_POWER_AC;
8065 else
8066 mode |= IWL_POWER_ENABLED;
8067
8068 if (mode != priv->power_mode) {
bb8c093b 8069 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
b481de9c
ZY
8070 if (rc) {
8071 IWL_DEBUG_MAC80211("failed setting power mode.\n");
8072 goto out;
8073 }
8074 priv->power_mode = mode;
8075 }
8076
8077 rc = count;
8078
8079 out:
8080 mutex_unlock(&priv->mutex);
8081 return rc;
8082}
8083
8084#define MAX_WX_STRING 80
8085
8086/* Values are in microsecond */
8087static const s32 timeout_duration[] = {
8088 350000,
8089 250000,
8090 75000,
8091 37000,
8092 25000,
8093};
8094static const s32 period_duration[] = {
8095 400000,
8096 700000,
8097 1000000,
8098 1000000,
8099 1000000
8100};
8101
8102static ssize_t show_power_level(struct device *d,
8103 struct device_attribute *attr, char *buf)
8104{
bb8c093b 8105 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8106 int level = IWL_POWER_LEVEL(priv->power_mode);
8107 char *p = buf;
8108
8109 p += sprintf(p, "%d ", level);
8110 switch (level) {
8111 case IWL_POWER_MODE_CAM:
8112 case IWL_POWER_AC:
8113 p += sprintf(p, "(AC)");
8114 break;
8115 case IWL_POWER_BATTERY:
8116 p += sprintf(p, "(BATTERY)");
8117 break;
8118 default:
8119 p += sprintf(p,
8120 "(Timeout %dms, Period %dms)",
8121 timeout_duration[level - 1] / 1000,
8122 period_duration[level - 1] / 1000);
8123 }
8124
8125 if (!(priv->power_mode & IWL_POWER_ENABLED))
8126 p += sprintf(p, " OFF\n");
8127 else
8128 p += sprintf(p, " \n");
8129
8130 return (p - buf + 1);
8131
8132}
8133
8134static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
8135 store_power_level);
8136
8137static ssize_t show_channels(struct device *d,
8138 struct device_attribute *attr, char *buf)
8139{
bb8c093b 8140 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8141 int len = 0, i;
8142 struct ieee80211_channel *channels = NULL;
8143 const struct ieee80211_hw_mode *hw_mode = NULL;
8144 int count = 0;
8145
bb8c093b 8146 if (!iwl3945_is_ready(priv))
b481de9c
ZY
8147 return -EAGAIN;
8148
bb8c093b 8149 hw_mode = iwl3945_get_hw_mode(priv, MODE_IEEE80211G);
b481de9c 8150 if (!hw_mode)
bb8c093b 8151 hw_mode = iwl3945_get_hw_mode(priv, MODE_IEEE80211B);
b481de9c
ZY
8152 if (hw_mode) {
8153 channels = hw_mode->channels;
8154 count = hw_mode->num_channels;
8155 }
8156
8157 len +=
8158 sprintf(&buf[len],
8159 "Displaying %d channels in 2.4GHz band "
8160 "(802.11bg):\n", count);
8161
8162 for (i = 0; i < count; i++)
8163 len += sprintf(&buf[len], "%d: %ddBm: BSS%s%s, %s.\n",
8164 channels[i].chan,
8165 channels[i].power_level,
8166 channels[i].
8167 flag & IEEE80211_CHAN_W_RADAR_DETECT ?
8168 " (IEEE 802.11h required)" : "",
8169 (!(channels[i].flag & IEEE80211_CHAN_W_IBSS)
8170 || (channels[i].
8171 flag &
8172 IEEE80211_CHAN_W_RADAR_DETECT)) ? "" :
8173 ", IBSS",
8174 channels[i].
8175 flag & IEEE80211_CHAN_W_ACTIVE_SCAN ?
8176 "active/passive" : "passive only");
8177
bb8c093b 8178 hw_mode = iwl3945_get_hw_mode(priv, MODE_IEEE80211A);
b481de9c
ZY
8179 if (hw_mode) {
8180 channels = hw_mode->channels;
8181 count = hw_mode->num_channels;
8182 } else {
8183 channels = NULL;
8184 count = 0;
8185 }
8186
8187 len += sprintf(&buf[len], "Displaying %d channels in 5.2GHz band "
8188 "(802.11a):\n", count);
8189
8190 for (i = 0; i < count; i++)
8191 len += sprintf(&buf[len], "%d: %ddBm: BSS%s%s, %s.\n",
8192 channels[i].chan,
8193 channels[i].power_level,
8194 channels[i].
8195 flag & IEEE80211_CHAN_W_RADAR_DETECT ?
8196 " (IEEE 802.11h required)" : "",
8197 (!(channels[i].flag & IEEE80211_CHAN_W_IBSS)
8198 || (channels[i].
8199 flag &
8200 IEEE80211_CHAN_W_RADAR_DETECT)) ? "" :
8201 ", IBSS",
8202 channels[i].
8203 flag & IEEE80211_CHAN_W_ACTIVE_SCAN ?
8204 "active/passive" : "passive only");
8205
8206 return len;
8207}
8208
8209static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
8210
8211static ssize_t show_statistics(struct device *d,
8212 struct device_attribute *attr, char *buf)
8213{
bb8c093b
CH
8214 struct iwl3945_priv *priv = dev_get_drvdata(d);
8215 u32 size = sizeof(struct iwl3945_notif_statistics);
b481de9c
ZY
8216 u32 len = 0, ofs = 0;
8217 u8 *data = (u8 *) & priv->statistics;
8218 int rc = 0;
8219
bb8c093b 8220 if (!iwl3945_is_alive(priv))
b481de9c
ZY
8221 return -EAGAIN;
8222
8223 mutex_lock(&priv->mutex);
bb8c093b 8224 rc = iwl3945_send_statistics_request(priv);
b481de9c
ZY
8225 mutex_unlock(&priv->mutex);
8226
8227 if (rc) {
8228 len = sprintf(buf,
8229 "Error sending statistics request: 0x%08X\n", rc);
8230 return len;
8231 }
8232
8233 while (size && (PAGE_SIZE - len)) {
8234 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
8235 PAGE_SIZE - len, 1);
8236 len = strlen(buf);
8237 if (PAGE_SIZE - len)
8238 buf[len++] = '\n';
8239
8240 ofs += 16;
8241 size -= min(size, 16U);
8242 }
8243
8244 return len;
8245}
8246
8247static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
8248
8249static ssize_t show_antenna(struct device *d,
8250 struct device_attribute *attr, char *buf)
8251{
bb8c093b 8252 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c 8253
bb8c093b 8254 if (!iwl3945_is_alive(priv))
b481de9c
ZY
8255 return -EAGAIN;
8256
8257 return sprintf(buf, "%d\n", priv->antenna);
8258}
8259
8260static ssize_t store_antenna(struct device *d,
8261 struct device_attribute *attr,
8262 const char *buf, size_t count)
8263{
8264 int ant;
bb8c093b 8265 struct iwl3945_priv *priv = dev_get_drvdata(d);
b481de9c
ZY
8266
8267 if (count == 0)
8268 return 0;
8269
8270 if (sscanf(buf, "%1i", &ant) != 1) {
8271 IWL_DEBUG_INFO("not in hex or decimal form.\n");
8272 return count;
8273 }
8274
8275 if ((ant >= 0) && (ant <= 2)) {
8276 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
bb8c093b 8277 priv->antenna = (enum iwl3945_antenna)ant;
b481de9c
ZY
8278 } else
8279 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
8280
8281
8282 return count;
8283}
8284
8285static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
8286
8287static ssize_t show_status(struct device *d,
8288 struct device_attribute *attr, char *buf)
8289{
bb8c093b
CH
8290 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
8291 if (!iwl3945_is_alive(priv))
b481de9c
ZY
8292 return -EAGAIN;
8293 return sprintf(buf, "0x%08x\n", (int)priv->status);
8294}
8295
8296static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
8297
8298static ssize_t dump_error_log(struct device *d,
8299 struct device_attribute *attr,
8300 const char *buf, size_t count)
8301{
8302 char *p = (char *)buf;
8303
8304 if (p[0] == '1')
bb8c093b 8305 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
b481de9c
ZY
8306
8307 return strnlen(buf, count);
8308}
8309
8310static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
8311
8312static ssize_t dump_event_log(struct device *d,
8313 struct device_attribute *attr,
8314 const char *buf, size_t count)
8315{
8316 char *p = (char *)buf;
8317
8318 if (p[0] == '1')
bb8c093b 8319 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
b481de9c
ZY
8320
8321 return strnlen(buf, count);
8322}
8323
8324static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
8325
8326/*****************************************************************************
8327 *
8328 * driver setup and teardown
8329 *
8330 *****************************************************************************/
8331
bb8c093b 8332static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
b481de9c
ZY
8333{
8334 priv->workqueue = create_workqueue(DRV_NAME);
8335
8336 init_waitqueue_head(&priv->wait_command_queue);
8337
bb8c093b
CH
8338 INIT_WORK(&priv->up, iwl3945_bg_up);
8339 INIT_WORK(&priv->restart, iwl3945_bg_restart);
8340 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
8341 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
8342 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
8343 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
8344 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
8345 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
8346 INIT_DELAYED_WORK(&priv->post_associate, iwl3945_bg_post_associate);
8347 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
8348 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
8349 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
8350
8351 iwl3945_hw_setup_deferred_work(priv);
b481de9c
ZY
8352
8353 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
bb8c093b 8354 iwl3945_irq_tasklet, (unsigned long)priv);
b481de9c
ZY
8355}
8356
bb8c093b 8357static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
b481de9c 8358{
bb8c093b 8359 iwl3945_hw_cancel_deferred_work(priv);
b481de9c 8360
e47eb6ad 8361 cancel_delayed_work_sync(&priv->init_alive_start);
b481de9c
ZY
8362 cancel_delayed_work(&priv->scan_check);
8363 cancel_delayed_work(&priv->alive_start);
8364 cancel_delayed_work(&priv->post_associate);
8365 cancel_work_sync(&priv->beacon_update);
8366}
8367
bb8c093b 8368static struct attribute *iwl3945_sysfs_entries[] = {
b481de9c
ZY
8369 &dev_attr_antenna.attr,
8370 &dev_attr_channels.attr,
8371 &dev_attr_dump_errors.attr,
8372 &dev_attr_dump_events.attr,
8373 &dev_attr_flags.attr,
8374 &dev_attr_filter_flags.attr,
c8b0e6e1 8375#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
b481de9c
ZY
8376 &dev_attr_measurement.attr,
8377#endif
8378 &dev_attr_power_level.attr,
8379 &dev_attr_rate.attr,
8380 &dev_attr_retry_rate.attr,
8381 &dev_attr_rf_kill.attr,
8382 &dev_attr_rs_window.attr,
8383 &dev_attr_statistics.attr,
8384 &dev_attr_status.attr,
8385 &dev_attr_temperature.attr,
8386 &dev_attr_tune.attr,
8387 &dev_attr_tx_power.attr,
8388
8389 NULL
8390};
8391
bb8c093b 8392static struct attribute_group iwl3945_attribute_group = {
b481de9c 8393 .name = NULL, /* put in device directory */
bb8c093b 8394 .attrs = iwl3945_sysfs_entries,
b481de9c
ZY
8395};
8396
bb8c093b
CH
8397static struct ieee80211_ops iwl3945_hw_ops = {
8398 .tx = iwl3945_mac_tx,
8399 .start = iwl3945_mac_start,
8400 .stop = iwl3945_mac_stop,
8401 .add_interface = iwl3945_mac_add_interface,
8402 .remove_interface = iwl3945_mac_remove_interface,
8403 .config = iwl3945_mac_config,
8404 .config_interface = iwl3945_mac_config_interface,
8405 .configure_filter = iwl3945_configure_filter,
8406 .set_key = iwl3945_mac_set_key,
8407 .get_stats = iwl3945_mac_get_stats,
8408 .get_tx_stats = iwl3945_mac_get_tx_stats,
8409 .conf_tx = iwl3945_mac_conf_tx,
8410 .get_tsf = iwl3945_mac_get_tsf,
8411 .reset_tsf = iwl3945_mac_reset_tsf,
8412 .beacon_update = iwl3945_mac_beacon_update,
8413 .hw_scan = iwl3945_mac_hw_scan
b481de9c
ZY
8414};
8415
bb8c093b 8416static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
b481de9c
ZY
8417{
8418 int err = 0;
8419 u32 pci_id;
bb8c093b 8420 struct iwl3945_priv *priv;
b481de9c
ZY
8421 struct ieee80211_hw *hw;
8422 int i;
5a66926a 8423 DECLARE_MAC_BUF(mac);
b481de9c 8424
6440adb5
CB
8425 /* Disabling hardware scan means that mac80211 will perform scans
8426 * "the hard way", rather than using device's scan. */
bb8c093b 8427 if (iwl3945_param_disable_hw_scan) {
b481de9c 8428 IWL_DEBUG_INFO("Disabling hw_scan\n");
bb8c093b 8429 iwl3945_hw_ops.hw_scan = NULL;
b481de9c
ZY
8430 }
8431
bb8c093b
CH
8432 if ((iwl3945_param_queues_num > IWL_MAX_NUM_QUEUES) ||
8433 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
b481de9c
ZY
8434 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
8435 IWL_MIN_NUM_QUEUES, IWL_MAX_NUM_QUEUES);
8436 err = -EINVAL;
8437 goto out;
8438 }
8439
8440 /* mac80211 allocates memory for this device instance, including
8441 * space for this driver's private structure */
bb8c093b 8442 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
b481de9c
ZY
8443 if (hw == NULL) {
8444 IWL_ERROR("Can not allocate network device\n");
8445 err = -ENOMEM;
8446 goto out;
8447 }
8448 SET_IEEE80211_DEV(hw, &pdev->dev);
8449
f51359a8
JB
8450 hw->rate_control_algorithm = "iwl-3945-rs";
8451
b481de9c
ZY
8452 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
8453 priv = hw->priv;
8454 priv->hw = hw;
8455
8456 priv->pci_dev = pdev;
6440adb5
CB
8457
8458 /* Select antenna (may be helpful if only one antenna is connected) */
bb8c093b 8459 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
c8b0e6e1 8460#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 8461 iwl3945_debug_level = iwl3945_param_debug;
b481de9c
ZY
8462 atomic_set(&priv->restrict_refcnt, 0);
8463#endif
8464 priv->retry_rate = 1;
8465
8466 priv->ibss_beacon = NULL;
8467
8468 /* Tell mac80211 and its clients (e.g. Wireless Extensions)
8469 * the range of signal quality values that we'll provide.
8470 * Negative values for level/noise indicate that we'll provide dBm.
8471 * For WE, at least, non-0 values here *enable* display of values
8472 * in app (iwconfig). */
8473 hw->max_rssi = -20; /* signal level, negative indicates dBm */
8474 hw->max_noise = -20; /* noise level, negative indicates dBm */
8475 hw->max_signal = 100; /* link quality indication (%) */
8476
8477 /* Tell mac80211 our Tx characteristics */
8478 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE;
8479
6440adb5 8480 /* 4 EDCA QOS priorities */
b481de9c
ZY
8481 hw->queues = 4;
8482
8483 spin_lock_init(&priv->lock);
8484 spin_lock_init(&priv->power_data.lock);
8485 spin_lock_init(&priv->sta_lock);
8486 spin_lock_init(&priv->hcmd_lock);
8487
8488 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++)
8489 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
8490
8491 INIT_LIST_HEAD(&priv->free_frames);
8492
8493 mutex_init(&priv->mutex);
8494 if (pci_enable_device(pdev)) {
8495 err = -ENODEV;
8496 goto out_ieee80211_free_hw;
8497 }
8498
8499 pci_set_master(pdev);
8500
6440adb5 8501 /* Clear the driver's (not device's) station table */
bb8c093b 8502 iwl3945_clear_stations_table(priv);
b481de9c
ZY
8503
8504 priv->data_retry_limit = -1;
8505 priv->ieee_channels = NULL;
8506 priv->ieee_rates = NULL;
8507 priv->phymode = -1;
8508
8509 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
8510 if (!err)
8511 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
8512 if (err) {
8513 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
8514 goto out_pci_disable_device;
8515 }
8516
8517 pci_set_drvdata(pdev, priv);
8518 err = pci_request_regions(pdev, DRV_NAME);
8519 if (err)
8520 goto out_pci_disable_device;
6440adb5 8521
b481de9c
ZY
8522 /* We disable the RETRY_TIMEOUT register (0x41) to keep
8523 * PCI Tx retries from interfering with C3 CPU state */
8524 pci_write_config_byte(pdev, 0x41, 0x00);
6440adb5 8525
b481de9c
ZY
8526 priv->hw_base = pci_iomap(pdev, 0, 0);
8527 if (!priv->hw_base) {
8528 err = -ENODEV;
8529 goto out_pci_release_regions;
8530 }
8531
8532 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
8533 (unsigned long long) pci_resource_len(pdev, 0));
8534 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
8535
8536 /* Initialize module parameter values here */
8537
6440adb5 8538 /* Disable radio (SW RF KILL) via parameter when loading driver */
bb8c093b 8539 if (iwl3945_param_disable) {
b481de9c
ZY
8540 set_bit(STATUS_RF_KILL_SW, &priv->status);
8541 IWL_DEBUG_INFO("Radio disabled.\n");
8542 }
8543
8544 priv->iw_mode = IEEE80211_IF_TYPE_STA;
8545
8546 pci_id =
8547 (priv->pci_dev->device << 16) | priv->pci_dev->subsystem_device;
8548
8549 switch (pci_id) {
8550 case 0x42221005: /* 0x4222 0x8086 0x1005 is BG SKU */
8551 case 0x42221034: /* 0x4222 0x8086 0x1034 is BG SKU */
8552 case 0x42271014: /* 0x4227 0x8086 0x1014 is BG SKU */
8553 case 0x42221044: /* 0x4222 0x8086 0x1044 is BG SKU */
8554 priv->is_abg = 0;
8555 break;
8556
8557 /*
8558 * Rest are assumed ABG SKU -- if this is not the
8559 * case then the card will get the wrong 'Detected'
8560 * line in the kernel log however the code that
8561 * initializes the GEO table will detect no A-band
8562 * channels and remove the is_abg mask.
8563 */
8564 default:
8565 priv->is_abg = 1;
8566 break;
8567 }
8568
8569 printk(KERN_INFO DRV_NAME
8570 ": Detected Intel PRO/Wireless 3945%sBG Network Connection\n",
8571 priv->is_abg ? "A" : "");
8572
8573 /* Device-specific setup */
bb8c093b 8574 if (iwl3945_hw_set_hw_setting(priv)) {
b481de9c 8575 IWL_ERROR("failed to set hw settings\n");
b481de9c
ZY
8576 goto out_iounmap;
8577 }
8578
c8b0e6e1 8579#ifdef CONFIG_IWL3945_QOS
bb8c093b 8580 if (iwl3945_param_qos_enable)
b481de9c
ZY
8581 priv->qos_data.qos_enable = 1;
8582
bb8c093b 8583 iwl3945_reset_qos(priv);
b481de9c
ZY
8584
8585 priv->qos_data.qos_active = 0;
8586 priv->qos_data.qos_cap.val = 0;
c8b0e6e1 8587#endif /* CONFIG_IWL3945_QOS */
b481de9c 8588
bb8c093b
CH
8589 iwl3945_set_rxon_channel(priv, MODE_IEEE80211G, 6);
8590 iwl3945_setup_deferred_work(priv);
8591 iwl3945_setup_rx_handlers(priv);
b481de9c
ZY
8592
8593 priv->rates_mask = IWL_RATES_MASK;
8594 /* If power management is turned on, default to AC mode */
8595 priv->power_mode = IWL_POWER_AC;
8596 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
8597
bb8c093b 8598 iwl3945_disable_interrupts(priv);
49df2b33 8599
bb8c093b 8600 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
b481de9c
ZY
8601 if (err) {
8602 IWL_ERROR("failed to create sysfs device attributes\n");
b481de9c
ZY
8603 goto out_release_irq;
8604 }
8605
5a66926a
ZY
8606 /* nic init */
8607 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
8608 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
8609
8610 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
8611 err = iwl3945_poll_bit(priv, CSR_GP_CNTRL,
8612 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
8613 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
8614 if (err < 0) {
8615 IWL_DEBUG_INFO("Failed to init the card\n");
8616 goto out_remove_sysfs;
8617 }
8618 /* Read the EEPROM */
8619 err = iwl3945_eeprom_init(priv);
b481de9c 8620 if (err) {
5a66926a
ZY
8621 IWL_ERROR("Unable to init EEPROM\n");
8622 goto out_remove_sysfs;
b481de9c 8623 }
5a66926a
ZY
8624 /* MAC Address location in EEPROM same for 3945/4965 */
8625 get_eeprom_mac(priv, priv->mac_addr);
8626 IWL_DEBUG_INFO("MAC address: %s\n", print_mac(mac, priv->mac_addr));
8627 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
b481de9c 8628
5a66926a
ZY
8629 iwl3945_rate_control_register(priv->hw);
8630 err = ieee80211_register_hw(priv->hw);
8631 if (err) {
8632 IWL_ERROR("Failed to register network device (error %d)\n", err);
8633 goto out_remove_sysfs;
8634 }
b481de9c 8635
5a66926a
ZY
8636 priv->hw->conf.beacon_int = 100;
8637 priv->mac80211_registered = 1;
8638 pci_save_state(pdev);
8639 pci_disable_device(pdev);
b481de9c
ZY
8640
8641 return 0;
8642
5a66926a 8643 out_remove_sysfs:
bb8c093b 8644 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
b481de9c
ZY
8645
8646 out_release_irq:
b481de9c
ZY
8647 destroy_workqueue(priv->workqueue);
8648 priv->workqueue = NULL;
bb8c093b 8649 iwl3945_unset_hw_setting(priv);
b481de9c
ZY
8650
8651 out_iounmap:
8652 pci_iounmap(pdev, priv->hw_base);
8653 out_pci_release_regions:
8654 pci_release_regions(pdev);
8655 out_pci_disable_device:
8656 pci_disable_device(pdev);
8657 pci_set_drvdata(pdev, NULL);
8658 out_ieee80211_free_hw:
8659 ieee80211_free_hw(priv->hw);
8660 out:
8661 return err;
8662}
8663
bb8c093b 8664static void iwl3945_pci_remove(struct pci_dev *pdev)
b481de9c 8665{
bb8c093b 8666 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
b481de9c
ZY
8667 struct list_head *p, *q;
8668 int i;
8669
8670 if (!priv)
8671 return;
8672
8673 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8674
b481de9c 8675 set_bit(STATUS_EXIT_PENDING, &priv->status);
b24d22b1 8676
bb8c093b 8677 iwl3945_down(priv);
b481de9c
ZY
8678
8679 /* Free MAC hash list for ADHOC */
8680 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++) {
8681 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
8682 list_del(p);
bb8c093b 8683 kfree(list_entry(p, struct iwl3945_ibss_seq, list));
b481de9c
ZY
8684 }
8685 }
8686
bb8c093b 8687 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
b481de9c 8688
bb8c093b 8689 iwl3945_dealloc_ucode_pci(priv);
b481de9c
ZY
8690
8691 if (priv->rxq.bd)
bb8c093b
CH
8692 iwl3945_rx_queue_free(priv, &priv->rxq);
8693 iwl3945_hw_txq_ctx_free(priv);
b481de9c 8694
bb8c093b
CH
8695 iwl3945_unset_hw_setting(priv);
8696 iwl3945_clear_stations_table(priv);
b481de9c
ZY
8697
8698 if (priv->mac80211_registered) {
8699 ieee80211_unregister_hw(priv->hw);
bb8c093b 8700 iwl3945_rate_control_unregister(priv->hw);
b481de9c
ZY
8701 }
8702
6ef89d0a
MA
8703 /*netif_stop_queue(dev); */
8704 flush_workqueue(priv->workqueue);
8705
bb8c093b 8706 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
b481de9c
ZY
8707 * priv->workqueue... so we can't take down the workqueue
8708 * until now... */
8709 destroy_workqueue(priv->workqueue);
8710 priv->workqueue = NULL;
8711
b481de9c
ZY
8712 pci_iounmap(pdev, priv->hw_base);
8713 pci_release_regions(pdev);
8714 pci_disable_device(pdev);
8715 pci_set_drvdata(pdev, NULL);
8716
8717 kfree(priv->channel_info);
8718
8719 kfree(priv->ieee_channels);
8720 kfree(priv->ieee_rates);
8721
8722 if (priv->ibss_beacon)
8723 dev_kfree_skb(priv->ibss_beacon);
8724
8725 ieee80211_free_hw(priv->hw);
8726}
8727
8728#ifdef CONFIG_PM
8729
bb8c093b 8730static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
b481de9c 8731{
bb8c093b 8732 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
b481de9c 8733
b481de9c
ZY
8734 set_bit(STATUS_IN_SUSPEND, &priv->status);
8735
8736 /* Take down the device; powers it off, etc. */
bb8c093b 8737 iwl3945_down(priv);
b481de9c
ZY
8738
8739 if (priv->mac80211_registered)
8740 ieee80211_stop_queues(priv->hw);
8741
8742 pci_save_state(pdev);
8743 pci_disable_device(pdev);
8744 pci_set_power_state(pdev, PCI_D3hot);
8745
b481de9c
ZY
8746 return 0;
8747}
8748
bb8c093b 8749static void iwl3945_resume(struct iwl3945_priv *priv)
b481de9c
ZY
8750{
8751 unsigned long flags;
8752
8753 /* The following it a temporary work around due to the
8754 * suspend / resume not fully initializing the NIC correctly.
8755 * Without all of the following, resume will not attempt to take
8756 * down the NIC (it shouldn't really need to) and will just try
8757 * and bring the NIC back up. However that fails during the
bb8c093b
CH
8758 * ucode verification process. This then causes iwl3945_down to be
8759 * called *after* iwl3945_hw_nic_init() has succeeded -- which
b481de9c
ZY
8760 * then lets the next init sequence succeed. So, we've
8761 * replicated all of that NIC init code here... */
8762
bb8c093b 8763 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
b481de9c 8764
bb8c093b 8765 iwl3945_hw_nic_init(priv);
b481de9c 8766
bb8c093b
CH
8767 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
8768 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
b481de9c 8769 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
bb8c093b
CH
8770 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
8771 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
8772 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
b481de9c
ZY
8773
8774 /* tell the device to stop sending interrupts */
bb8c093b 8775 iwl3945_disable_interrupts(priv);
b481de9c
ZY
8776
8777 spin_lock_irqsave(&priv->lock, flags);
bb8c093b 8778 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
b481de9c 8779
bb8c093b
CH
8780 if (!iwl3945_grab_nic_access(priv)) {
8781 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
b481de9c 8782 APMG_CLK_VAL_DMA_CLK_RQT);
bb8c093b 8783 iwl3945_release_nic_access(priv);
b481de9c
ZY
8784 }
8785 spin_unlock_irqrestore(&priv->lock, flags);
8786
8787 udelay(5);
8788
bb8c093b 8789 iwl3945_hw_nic_reset(priv);
b481de9c
ZY
8790
8791 /* Bring the device back up */
8792 clear_bit(STATUS_IN_SUSPEND, &priv->status);
8793 queue_work(priv->workqueue, &priv->up);
8794}
8795
bb8c093b 8796static int iwl3945_pci_resume(struct pci_dev *pdev)
b481de9c 8797{
bb8c093b 8798 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
b481de9c
ZY
8799 int err;
8800
8801 printk(KERN_INFO "Coming out of suspend...\n");
8802
b481de9c
ZY
8803 pci_set_power_state(pdev, PCI_D0);
8804 err = pci_enable_device(pdev);
8805 pci_restore_state(pdev);
8806
8807 /*
8808 * Suspend/Resume resets the PCI configuration space, so we have to
8809 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
8810 * from interfering with C3 CPU state. pci_restore_state won't help
8811 * here since it only restores the first 64 bytes pci config header.
8812 */
8813 pci_write_config_byte(pdev, 0x41, 0x00);
8814
bb8c093b 8815 iwl3945_resume(priv);
b481de9c
ZY
8816
8817 return 0;
8818}
8819
8820#endif /* CONFIG_PM */
8821
8822/*****************************************************************************
8823 *
8824 * driver and module entry point
8825 *
8826 *****************************************************************************/
8827
bb8c093b 8828static struct pci_driver iwl3945_driver = {
b481de9c 8829 .name = DRV_NAME,
bb8c093b
CH
8830 .id_table = iwl3945_hw_card_ids,
8831 .probe = iwl3945_pci_probe,
8832 .remove = __devexit_p(iwl3945_pci_remove),
b481de9c 8833#ifdef CONFIG_PM
bb8c093b
CH
8834 .suspend = iwl3945_pci_suspend,
8835 .resume = iwl3945_pci_resume,
b481de9c
ZY
8836#endif
8837};
8838
bb8c093b 8839static int __init iwl3945_init(void)
b481de9c
ZY
8840{
8841
8842 int ret;
8843 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8844 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
bb8c093b 8845 ret = pci_register_driver(&iwl3945_driver);
b481de9c
ZY
8846 if (ret) {
8847 IWL_ERROR("Unable to initialize PCI module\n");
8848 return ret;
8849 }
c8b0e6e1 8850#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 8851 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
b481de9c
ZY
8852 if (ret) {
8853 IWL_ERROR("Unable to create driver sysfs file\n");
bb8c093b 8854 pci_unregister_driver(&iwl3945_driver);
b481de9c
ZY
8855 return ret;
8856 }
8857#endif
8858
8859 return ret;
8860}
8861
bb8c093b 8862static void __exit iwl3945_exit(void)
b481de9c 8863{
c8b0e6e1 8864#ifdef CONFIG_IWL3945_DEBUG
bb8c093b 8865 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
b481de9c 8866#endif
bb8c093b 8867 pci_unregister_driver(&iwl3945_driver);
b481de9c
ZY
8868}
8869
bb8c093b 8870module_param_named(antenna, iwl3945_param_antenna, int, 0444);
b481de9c 8871MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
bb8c093b 8872module_param_named(disable, iwl3945_param_disable, int, 0444);
b481de9c 8873MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
bb8c093b 8874module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
b481de9c
ZY
8875MODULE_PARM_DESC(hwcrypto,
8876 "using hardware crypto engine (default 0 [software])\n");
bb8c093b 8877module_param_named(debug, iwl3945_param_debug, int, 0444);
b481de9c 8878MODULE_PARM_DESC(debug, "debug output mask");
bb8c093b 8879module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
b481de9c
ZY
8880MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8881
bb8c093b 8882module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
b481de9c
ZY
8883MODULE_PARM_DESC(queues_num, "number of hw queues.");
8884
8885/* QoS */
bb8c093b 8886module_param_named(qos_enable, iwl3945_param_qos_enable, int, 0444);
b481de9c
ZY
8887MODULE_PARM_DESC(qos_enable, "enable all QoS functionality");
8888
bb8c093b
CH
8889module_exit(iwl3945_exit);
8890module_init(iwl3945_init);