blob: 0cafbd42d84cb6881dc66ab27b21b6045bfcae1e [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
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
Zhu Yib481de92007-09-25 17:54:57 -070030#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>
Zhu Yib481de92007-09-25 17:54:57 -070041#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
Zhu Yib481de92007-09-25 17:54:57 -070049#include "iwl-3945.h"
50#include "iwl-helpers.h"
51
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080052#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080053u32 iwl3945_debug_level;
Zhu Yib481de92007-09-25 17:54:57 -070054#endif
55
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080056static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
57 struct iwl3945_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080058
Zhu Yib481de92007-09-25 17:54:57 -070059/******************************************************************************
60 *
61 * module boiler plate
62 *
63 ******************************************************************************/
64
65/* module parameters */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080066static 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 */
Ben Cahill9fbab512007-11-29 11:09:47 +080069static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080070int 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 */
Zhu Yib481de92007-09-25 17:54:57 -070073
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
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080082#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070083#define VD "d"
84#else
85#define VD
86#endif
87
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080088#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070089#define VS "s"
90#else
91#define VS
92#endif
93
Reinette Chatreb9e0b442008-02-08 16:39:11 -080094#define IWLWIFI_VERSION "1.2.26k" VD VS
Zhu Yib481de92007-09-25 17:54:57 -070095#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
Christoph Hellwig416e1432007-10-25 17:15:49 +0800109static __le16 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -0700110{
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
Johannes Berg8318d782008-01-24 19:38:38 +0100119static const struct ieee80211_supported_band *iwl3945_get_band(
120 struct iwl3945_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700121{
Johannes Berg8318d782008-01-24 19:38:38 +0100122 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700123}
124
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800125static int iwl3945_is_empty_essid(const char *essid, int essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700126{
127 /* Single white space is for Linksys APs */
128 if (essid_len == 1 && essid[0] == ' ')
129 return 1;
130
131 /* Otherwise, if the entire essid is 0, we assume it is hidden */
132 while (essid_len) {
133 essid_len--;
134 if (essid[essid_len] != '\0')
135 return 0;
136 }
137
138 return 1;
139}
140
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800141static const char *iwl3945_escape_essid(const char *essid, u8 essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700142{
143 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
144 const char *s = essid;
145 char *d = escaped;
146
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800147 if (iwl3945_is_empty_essid(essid, essid_len)) {
Zhu Yib481de92007-09-25 17:54:57 -0700148 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
149 return escaped;
150 }
151
152 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
153 while (essid_len--) {
154 if (*s == '\0') {
155 *d++ = '\\';
156 *d++ = '0';
157 s++;
158 } else
159 *d++ = *s++;
160 }
161 *d = '\0';
162 return escaped;
163}
164
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800165static void iwl3945_print_hex_dump(int level, void *p, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -0700166{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800167#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800168 if (!(iwl3945_debug_level & level))
Zhu Yib481de92007-09-25 17:54:57 -0700169 return;
170
171 print_hex_dump(KERN_DEBUG, "iwl data: ", DUMP_PREFIX_OFFSET, 16, 1,
172 p, len, 1);
173#endif
174}
175
176/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
177 * DMA services
178 *
179 * Theory of operation
180 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800181 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
182 * of buffer descriptors, each of which points to one or more data buffers for
183 * the device to read from or fill. Driver and device exchange status of each
184 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
185 * entries in each circular buffer, to protect against confusing empty and full
186 * queue states.
187 *
188 * The device reads or writes the data in the queues via the device's several
189 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700190 *
191 * For Tx queue, there are low mark and high mark limits. If, after queuing
192 * the packet for Tx, free space become < low mark, Tx queue stopped. When
193 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
194 * Tx queue resumed.
195 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800196 * The 3945 operates with six queues: One receive queue, one transmit queue
197 * (#4) for sending commands to the device firmware, and four transmit queues
198 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
Zhu Yib481de92007-09-25 17:54:57 -0700199 ***************************************************/
200
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800201static int iwl3945_queue_space(const struct iwl3945_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700202{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800203 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700204
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800205 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700206 s -= q->n_bd;
207
208 if (s <= 0)
209 s += q->n_window;
210 /* keep some reserve to not confuse empty and full situations */
211 s -= 2;
212 if (s < 0)
213 s = 0;
214 return s;
215}
216
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800217/**
218 * iwl3945_queue_inc_wrap - increment queue index, wrap back to beginning
219 * @index -- current index
220 * @n_bd -- total number of entries in queue (must be power of 2)
221 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800222static inline int iwl3945_queue_inc_wrap(int index, int n_bd)
Zhu Yib481de92007-09-25 17:54:57 -0700223{
224 return ++index & (n_bd - 1);
225}
226
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800227/**
228 * iwl3945_queue_dec_wrap - increment queue index, wrap back to end
229 * @index -- current index
230 * @n_bd -- total number of entries in queue (must be power of 2)
231 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800232static inline int iwl3945_queue_dec_wrap(int index, int n_bd)
Zhu Yib481de92007-09-25 17:54:57 -0700233{
234 return --index & (n_bd - 1);
235}
236
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800237static inline int x2_queue_used(const struct iwl3945_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700238{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800239 return q->write_ptr > q->read_ptr ?
240 (i >= q->read_ptr && i < q->write_ptr) :
241 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700242}
243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800244static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700245{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800246 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700247 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800248 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700249
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800250 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700251 return index & (q->n_window - 1);
252}
253
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800254/**
255 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
256 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800257static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700258 int count, int slots_num, u32 id)
259{
260 q->n_bd = count;
261 q->n_window = slots_num;
262 q->id = id;
263
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800264 /* count must be power-of-two size, otherwise iwl3945_queue_inc_wrap
265 * and iwl3945_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700266 BUG_ON(!is_power_of_2(count));
267
268 /* slots_num must be power-of-two size, otherwise
269 * get_cmd_index is broken. */
270 BUG_ON(!is_power_of_2(slots_num));
271
272 q->low_mark = q->n_window / 4;
273 if (q->low_mark < 4)
274 q->low_mark = 4;
275
276 q->high_mark = q->n_window / 8;
277 if (q->high_mark < 2)
278 q->high_mark = 2;
279
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800280 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700281
282 return 0;
283}
284
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800285/**
286 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
287 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800288static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
289 struct iwl3945_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700290{
291 struct pci_dev *dev = priv->pci_dev;
292
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800293 /* Driver private data, only for Tx (not command) queues,
294 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700295 if (id != IWL_CMD_QUEUE_NUM) {
296 txq->txb = kmalloc(sizeof(txq->txb[0]) *
297 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
298 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800299 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700300 "structures failed\n");
301 goto error;
302 }
303 } else
304 txq->txb = NULL;
305
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800306 /* Circular buffer of transmit frame descriptors (TFDs),
307 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700308 txq->bd = pci_alloc_consistent(dev,
309 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
310 &txq->q.dma_addr);
311
312 if (!txq->bd) {
313 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
314 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
315 goto error;
316 }
317 txq->q.id = id;
318
319 return 0;
320
321 error:
322 if (txq->txb) {
323 kfree(txq->txb);
324 txq->txb = NULL;
325 }
326
327 return -ENOMEM;
328}
329
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800330/**
331 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
332 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800333int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
334 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700335{
336 struct pci_dev *dev = priv->pci_dev;
337 int len;
338 int rc = 0;
339
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800340 /*
341 * Alloc buffer array for commands (Tx or other types of commands).
342 * For the command queue (#4), allocate command space + one big
343 * command for scan, since scan command is very huge; the system will
344 * not have two scans at the same time, so only one is needed.
345 * For data Tx queues (all other queues), no super-size command
346 * space is needed.
347 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800348 len = sizeof(struct iwl3945_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700349 if (txq_id == IWL_CMD_QUEUE_NUM)
350 len += IWL_MAX_SCAN_SIZE;
351 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
352 if (!txq->cmd)
353 return -ENOMEM;
354
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800355 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800356 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700357 if (rc) {
358 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
359
360 return -ENOMEM;
361 }
362 txq->need_update = 0;
363
364 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800365 * iwl3945_queue_inc_wrap and iwl3945_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700366 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800367
368 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800369 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700370
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800371 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800372 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700373
374 return 0;
375}
376
377/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800378 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700379 * @txq: Transmit queue to deallocate.
380 *
381 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800382 * Free all buffers.
383 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700384 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800385void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700386{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800387 struct iwl3945_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700388 struct pci_dev *dev = priv->pci_dev;
389 int len;
390
391 if (q->n_bd == 0)
392 return;
393
394 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800395 for (; q->write_ptr != q->read_ptr;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800396 q->read_ptr = iwl3945_queue_inc_wrap(q->read_ptr, q->n_bd))
397 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700398
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800399 len = sizeof(struct iwl3945_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700400 if (q->id == IWL_CMD_QUEUE_NUM)
401 len += IWL_MAX_SCAN_SIZE;
402
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800403 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700404 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
405
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800406 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700407 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800408 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700409 txq->q.n_bd, txq->bd, txq->q.dma_addr);
410
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800411 /* De-alloc array of per-TFD driver data */
Zhu Yib481de92007-09-25 17:54:57 -0700412 if (txq->txb) {
413 kfree(txq->txb);
414 txq->txb = NULL;
415 }
416
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800417 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700418 memset(txq, 0, sizeof(*txq));
419}
420
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800421const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700422
423/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800424 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700425 * the functionality provided here
426 */
427
428/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800429#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800430/**
431 * iwl3945_remove_station - Remove driver's knowledge of station.
432 *
433 * NOTE: This does not remove station from device's station table.
434 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800435static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700436{
437 int index = IWL_INVALID_STATION;
438 int i;
439 unsigned long flags;
440
441 spin_lock_irqsave(&priv->sta_lock, flags);
442
443 if (is_ap)
444 index = IWL_AP_ID;
445 else if (is_broadcast_ether_addr(addr))
446 index = priv->hw_setting.bcast_sta_id;
447 else
448 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
449 if (priv->stations[i].used &&
450 !compare_ether_addr(priv->stations[i].sta.sta.addr,
451 addr)) {
452 index = i;
453 break;
454 }
455
456 if (unlikely(index == IWL_INVALID_STATION))
457 goto out;
458
459 if (priv->stations[index].used) {
460 priv->stations[index].used = 0;
461 priv->num_stations--;
462 }
463
464 BUG_ON(priv->num_stations < 0);
465
466out:
467 spin_unlock_irqrestore(&priv->sta_lock, flags);
468 return 0;
469}
Zhu Yi556f8db2007-09-27 11:27:33 +0800470#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800471
472/**
473 * iwl3945_clear_stations_table - Clear the driver's station table
474 *
475 * NOTE: This does not clear or otherwise alter the device's station table.
476 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800477static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700478{
479 unsigned long flags;
480
481 spin_lock_irqsave(&priv->sta_lock, flags);
482
483 priv->num_stations = 0;
484 memset(priv->stations, 0, sizeof(priv->stations));
485
486 spin_unlock_irqrestore(&priv->sta_lock, flags);
487}
488
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800489/**
490 * iwl3945_add_station - Add station to station tables in driver and device
491 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800492u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700493{
494 int i;
495 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800496 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700497 unsigned long flags_spin;
Joe Perches0795af52007-10-03 17:59:30 -0700498 DECLARE_MAC_BUF(mac);
Zhu Yic14c5212007-09-27 11:27:35 +0800499 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700500
501 spin_lock_irqsave(&priv->sta_lock, flags_spin);
502 if (is_ap)
503 index = IWL_AP_ID;
504 else if (is_broadcast_ether_addr(addr))
505 index = priv->hw_setting.bcast_sta_id;
506 else
507 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
508 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
509 addr)) {
510 index = i;
511 break;
512 }
513
514 if (!priv->stations[i].used &&
515 index == IWL_INVALID_STATION)
516 index = i;
517 }
518
Ian Schram01ebd062007-10-25 17:15:22 +0800519 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700520 since they have different meaning */
521 if (unlikely(index == IWL_INVALID_STATION)) {
522 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
523 return index;
524 }
525
526 if (priv->stations[index].used &&
527 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
528 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
529 return index;
530 }
531
Joe Perches0795af52007-10-03 17:59:30 -0700532 IWL_DEBUG_ASSOC("Add STA ID %d: %s\n", index, print_mac(mac, addr));
Zhu Yib481de92007-09-25 17:54:57 -0700533 station = &priv->stations[index];
534 station->used = 1;
535 priv->num_stations++;
536
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800537 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800538 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700539 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
540 station->sta.mode = 0;
541 station->sta.sta.sta_id = index;
542 station->sta.station_flags = 0;
543
Johannes Berg8318d782008-01-24 19:38:38 +0100544 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800545 rate = IWL_RATE_6M_PLCP;
546 else
547 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800548
549 /* Turn on both antennas for the station... */
550 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800551 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800552 station->current_rate.rate_n_flags =
553 le16_to_cpu(station->sta.rate_n_flags);
554
Zhu Yib481de92007-09-25 17:54:57 -0700555 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800556
557 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800558 iwl3945_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700559 return index;
560
561}
562
563/*************** DRIVER STATUS FUNCTIONS *****/
564
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800565static inline int iwl3945_is_ready(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700566{
567 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
568 * set but EXIT_PENDING is not */
569 return test_bit(STATUS_READY, &priv->status) &&
570 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
571 !test_bit(STATUS_EXIT_PENDING, &priv->status);
572}
573
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800574static inline int iwl3945_is_alive(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700575{
576 return test_bit(STATUS_ALIVE, &priv->status);
577}
578
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800579static inline int iwl3945_is_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700580{
581 return test_bit(STATUS_INIT, &priv->status);
582}
583
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800584static inline int iwl3945_is_rfkill(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700585{
586 return test_bit(STATUS_RF_KILL_HW, &priv->status) ||
587 test_bit(STATUS_RF_KILL_SW, &priv->status);
588}
589
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800590static inline int iwl3945_is_ready_rf(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700591{
592
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800593 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700594 return 0;
595
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800596 return iwl3945_is_ready(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700597}
598
599/*************** HOST COMMAND QUEUE FUNCTIONS *****/
600
601#define IWL_CMD(x) case x : return #x
602
603static const char *get_cmd_string(u8 cmd)
604{
605 switch (cmd) {
606 IWL_CMD(REPLY_ALIVE);
607 IWL_CMD(REPLY_ERROR);
608 IWL_CMD(REPLY_RXON);
609 IWL_CMD(REPLY_RXON_ASSOC);
610 IWL_CMD(REPLY_QOS_PARAM);
611 IWL_CMD(REPLY_RXON_TIMING);
612 IWL_CMD(REPLY_ADD_STA);
613 IWL_CMD(REPLY_REMOVE_STA);
614 IWL_CMD(REPLY_REMOVE_ALL_STA);
615 IWL_CMD(REPLY_3945_RX);
616 IWL_CMD(REPLY_TX);
617 IWL_CMD(REPLY_RATE_SCALE);
618 IWL_CMD(REPLY_LEDS_CMD);
619 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
620 IWL_CMD(RADAR_NOTIFICATION);
621 IWL_CMD(REPLY_QUIET_CMD);
622 IWL_CMD(REPLY_CHANNEL_SWITCH);
623 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
624 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
625 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
626 IWL_CMD(POWER_TABLE_CMD);
627 IWL_CMD(PM_SLEEP_NOTIFICATION);
628 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
629 IWL_CMD(REPLY_SCAN_CMD);
630 IWL_CMD(REPLY_SCAN_ABORT_CMD);
631 IWL_CMD(SCAN_START_NOTIFICATION);
632 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
633 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
634 IWL_CMD(BEACON_NOTIFICATION);
635 IWL_CMD(REPLY_TX_BEACON);
636 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
637 IWL_CMD(QUIET_NOTIFICATION);
638 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
639 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
640 IWL_CMD(REPLY_BT_CONFIG);
641 IWL_CMD(REPLY_STATISTICS_CMD);
642 IWL_CMD(STATISTICS_NOTIFICATION);
643 IWL_CMD(REPLY_CARD_STATE_CMD);
644 IWL_CMD(CARD_STATE_NOTIFICATION);
645 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
646 default:
647 return "UNKNOWN";
648
649 }
650}
651
652#define HOST_COMPLETE_TIMEOUT (HZ / 2)
653
654/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800655 * iwl3945_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700656 * @priv: device private data point
657 * @cmd: a point to the ucode command structure
658 *
659 * The function returns < 0 values to indicate the operation is
660 * failed. On success, it turns the index (> 0) of command in the
661 * command queue.
662 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800663static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700664{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800665 struct iwl3945_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
666 struct iwl3945_queue *q = &txq->q;
667 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -0700668 u32 *control_flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800669 struct iwl3945_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700670 u32 idx;
671 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
672 dma_addr_t phys_addr;
673 int pad;
674 u16 count;
675 int ret;
676 unsigned long flags;
677
678 /* If any of the command structures end up being larger than
679 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
680 * we will need to increase the size of the TFD entries */
681 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
682 !(cmd->meta.flags & CMD_SIZE_HUGE));
683
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800684
685 if (iwl3945_is_rfkill(priv)) {
686 IWL_DEBUG_INFO("Not sending command - RF KILL");
687 return -EIO;
688 }
689
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800690 if (iwl3945_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Zhu Yib481de92007-09-25 17:54:57 -0700691 IWL_ERROR("No space for Tx\n");
692 return -ENOSPC;
693 }
694
695 spin_lock_irqsave(&priv->hcmd_lock, flags);
696
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800697 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700698 memset(tfd, 0, sizeof(*tfd));
699
700 control_flags = (u32 *) tfd;
701
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800702 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Zhu Yib481de92007-09-25 17:54:57 -0700703 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) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800714 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700715 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 +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800719 offsetof(struct iwl3945_cmd, hdr);
720 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700721
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),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800730 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700731
732 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800733
734 /* Increment and update queue's write index */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800735 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd);
736 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700737
738 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
739 return ret ? ret : idx;
740}
741
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800742static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700743{
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
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800757 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700758 if (ret < 0) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800759 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700760 get_cmd_string(cmd->id), ret);
761 return ret;
762 }
763 return 0;
764}
765
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800766static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700767{
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
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800788 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700789 if (cmd_idx < 0) {
790 ret = cmd_idx;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800791 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700792 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) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800835 struct iwl3945_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700836
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
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800854int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700855{
Zhu Yib481de92007-09-25 17:54:57 -0700856 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800857 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700858
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800859 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700860}
861
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800862int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700863{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800864 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700865 .id = id,
866 .len = len,
867 .data = data,
868 };
869
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800870 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700871}
872
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800873static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700874{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800875 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700876 .id = id,
877 .len = sizeof(val),
878 .data = &val,
879 };
880
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800881 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700882}
883
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800884int iwl3945_send_statistics_request(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700885{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800886 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700887}
888
889/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800890 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100891 * @band: 2.4 or 5 GHz band
892 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700893
Johannes Berg8318d782008-01-24 19:38:38 +0100894 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700895 *
896 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100897 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700898 */
Johannes Berg8318d782008-01-24 19:38:38 +0100899static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv,
900 enum ieee80211_band band,
901 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700902{
Johannes Berg8318d782008-01-24 19:38:38 +0100903 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700904 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100905 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700906 return -EINVAL;
907 }
908
909 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100910 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700911 return 0;
912
913 priv->staging_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100914 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700915 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
916 else
917 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
918
Johannes Berg8318d782008-01-24 19:38:38 +0100919 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700920
Johannes Berg8318d782008-01-24 19:38:38 +0100921 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700922
923 return 0;
924}
925
926/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800927 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700928 *
929 * NOTE: This is really only useful during development and can eventually
930 * be #ifdef'd out once the driver is stable and folks aren't actively
931 * making changes
932 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800933static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700934{
935 int error = 0;
936 int counter = 1;
937
938 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
939 error |= le32_to_cpu(rxon->flags &
940 (RXON_FLG_TGJ_NARROW_BAND_MSK |
941 RXON_FLG_RADAR_DETECT_MSK));
942 if (error)
943 IWL_WARNING("check 24G fields %d | %d\n",
944 counter++, error);
945 } else {
946 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
947 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
948 if (error)
949 IWL_WARNING("check 52 fields %d | %d\n",
950 counter++, error);
951 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
952 if (error)
953 IWL_WARNING("check 52 CCK %d | %d\n",
954 counter++, error);
955 }
956 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
957 if (error)
958 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
959
960 /* make sure basic rates 6Mbps and 1Mbps are supported */
961 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
962 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
963 if (error)
964 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
965
966 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
967 if (error)
968 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
969
970 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
971 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
972 if (error)
973 IWL_WARNING("check CCK and short slot %d | %d\n",
974 counter++, error);
975
976 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
977 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
978 if (error)
979 IWL_WARNING("check CCK & auto detect %d | %d\n",
980 counter++, error);
981
982 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
983 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
984 if (error)
985 IWL_WARNING("check TGG and auto detect %d | %d\n",
986 counter++, error);
987
988 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
989 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
990 RXON_FLG_ANT_A_MSK)) == 0);
991 if (error)
992 IWL_WARNING("check antenna %d %d\n", counter++, error);
993
994 if (error)
995 IWL_WARNING("Tuning to channel %d\n",
996 le16_to_cpu(rxon->channel));
997
998 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800999 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -07001000 return -1;
1001 }
1002 return 0;
1003}
1004
1005/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001006 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +08001007 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -07001008 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001009 * If the RXON structure is changing enough to require a new tune,
1010 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
1011 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -07001012 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001013static int iwl3945_full_rxon_required(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001014{
1015
1016 /* These items are only settable from the full RXON command */
1017 if (!(priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ||
1018 compare_ether_addr(priv->staging_rxon.bssid_addr,
1019 priv->active_rxon.bssid_addr) ||
1020 compare_ether_addr(priv->staging_rxon.node_addr,
1021 priv->active_rxon.node_addr) ||
1022 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
1023 priv->active_rxon.wlap_bssid_addr) ||
1024 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
1025 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
1026 (priv->staging_rxon.air_propagation !=
1027 priv->active_rxon.air_propagation) ||
1028 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
1029 return 1;
1030
1031 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
1032 * be updated with the RXON_ASSOC command -- however only some
1033 * flag transitions are allowed using RXON_ASSOC */
1034
1035 /* Check if we are not switching bands */
1036 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
1037 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
1038 return 1;
1039
1040 /* Check if we are switching association toggle */
1041 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
1042 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
1043 return 1;
1044
1045 return 0;
1046}
1047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001048static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001049{
1050 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001051 struct iwl3945_rx_packet *res = NULL;
1052 struct iwl3945_rxon_assoc_cmd rxon_assoc;
1053 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001054 .id = REPLY_RXON_ASSOC,
1055 .len = sizeof(rxon_assoc),
1056 .meta.flags = CMD_WANT_SKB,
1057 .data = &rxon_assoc,
1058 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001059 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon;
1060 const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001061
1062 if ((rxon1->flags == rxon2->flags) &&
1063 (rxon1->filter_flags == rxon2->filter_flags) &&
1064 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1065 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
1066 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
1067 return 0;
1068 }
1069
1070 rxon_assoc.flags = priv->staging_rxon.flags;
1071 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1072 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1073 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1074 rxon_assoc.reserved = 0;
1075
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001076 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001077 if (rc)
1078 return rc;
1079
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001080 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001081 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1082 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1083 rc = -EIO;
1084 }
1085
1086 priv->alloc_rxb_skb--;
1087 dev_kfree_skb_any(cmd.meta.u.skb);
1088
1089 return rc;
1090}
1091
1092/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001093 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -07001094 *
Ian Schram01ebd062007-10-25 17:15:22 +08001095 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -07001096 * the active_rxon structure is updated with the new data. This
1097 * function correctly transitions out of the RXON_ASSOC_MSK state if
1098 * a HW tune is required based on the RXON structure changes.
1099 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001100static int iwl3945_commit_rxon(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001101{
1102 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001103 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001104 int rc = 0;
Joe Perches0795af52007-10-03 17:59:30 -07001105 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07001106
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001107 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001108 return -1;
1109
1110 /* always get timestamp with Rx frame */
1111 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1112
1113 /* select antenna */
1114 priv->staging_rxon.flags &=
1115 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1116 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1117
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001118 rc = iwl3945_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001119 if (rc) {
1120 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1121 return -EINVAL;
1122 }
1123
1124 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001125 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -07001126 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001127 if (!iwl3945_full_rxon_required(priv)) {
1128 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001129 if (rc) {
1130 IWL_ERROR("Error setting RXON_ASSOC "
1131 "configuration (%d).\n", rc);
1132 return rc;
1133 }
1134
1135 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1136
1137 return 0;
1138 }
1139
1140 /* If we are currently associated and the new config requires
1141 * an RXON_ASSOC and the new config wants the associated mask enabled,
1142 * we must clear the associated from the active configuration
1143 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001144 if (iwl3945_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07001145 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1146 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1147 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1148
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001149 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1150 sizeof(struct iwl3945_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001151 &priv->active_rxon);
1152
1153 /* If the mask clearing failed then we set
1154 * active_rxon back to what it was previously */
1155 if (rc) {
1156 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1157 IWL_ERROR("Error clearing ASSOC_MSK on current "
1158 "configuration (%d).\n", rc);
1159 return rc;
1160 }
Zhu Yib481de92007-09-25 17:54:57 -07001161 }
1162
1163 IWL_DEBUG_INFO("Sending RXON\n"
1164 "* with%s RXON_FILTER_ASSOC_MSK\n"
1165 "* channel = %d\n"
Joe Perches0795af52007-10-03 17:59:30 -07001166 "* bssid = %s\n",
Zhu Yib481de92007-09-25 17:54:57 -07001167 ((priv->staging_rxon.filter_flags &
1168 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1169 le16_to_cpu(priv->staging_rxon.channel),
Joe Perches0795af52007-10-03 17:59:30 -07001170 print_mac(mac, priv->staging_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07001171
1172 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001173 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1174 sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001175 if (rc) {
1176 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1177 return rc;
1178 }
1179
1180 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1181
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001182 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08001183
Zhu Yib481de92007-09-25 17:54:57 -07001184 /* If we issue a new RXON command which required a tune then we must
1185 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001186 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001187 if (rc) {
1188 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1189 return rc;
1190 }
1191
1192 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001193 if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -07001194 IWL_INVALID_STATION) {
1195 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1196 return -EIO;
1197 }
1198
1199 /* If we have set the ASSOC_MSK and we are in BSS mode then
1200 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001201 if (iwl3945_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07001202 (priv->iw_mode == IEEE80211_IF_TYPE_STA))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001203 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001204 == IWL_INVALID_STATION) {
1205 IWL_ERROR("Error adding AP address for transmit.\n");
1206 return -EIO;
1207 }
1208
Johannes Berg8318d782008-01-24 19:38:38 +01001209 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001210 rc = iwl3945_init_hw_rate_table(priv);
1211 if (rc) {
1212 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1213 return -EIO;
1214 }
1215
1216 return 0;
1217}
1218
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001219static int iwl3945_send_bt_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001220{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001221 struct iwl3945_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001222 .flags = 3,
1223 .lead_time = 0xAA,
1224 .max_kill = 1,
1225 .kill_ack_mask = 0,
1226 .kill_cts_mask = 0,
1227 };
1228
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001229 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1230 sizeof(struct iwl3945_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001231}
1232
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001233static int iwl3945_send_scan_abort(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001234{
1235 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001236 struct iwl3945_rx_packet *res;
1237 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001238 .id = REPLY_SCAN_ABORT_CMD,
1239 .meta.flags = CMD_WANT_SKB,
1240 };
1241
1242 /* If there isn't a scan actively going on in the hardware
1243 * then we are in between scan bands and not actually
1244 * actively scanning, so don't send the abort command */
1245 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1246 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1247 return 0;
1248 }
1249
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001250 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001251 if (rc) {
1252 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1253 return rc;
1254 }
1255
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001256 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001257 if (res->u.status != CAN_ABORT_STATUS) {
1258 /* The scan abort will return 1 for success or
1259 * 2 for "failure". A failure condition can be
1260 * due to simply not being in an active scan which
1261 * can occur if we send the scan abort before we
1262 * the microcode has notified us that a scan is
1263 * completed. */
1264 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1265 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1266 clear_bit(STATUS_SCAN_HW, &priv->status);
1267 }
1268
1269 dev_kfree_skb_any(cmd.meta.u.skb);
1270
1271 return rc;
1272}
1273
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001274static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv,
1275 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001276 struct sk_buff *skb)
1277{
1278 return 1;
1279}
1280
1281/*
1282 * CARD_STATE_CMD
1283 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001284 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001285 *
1286 * When in the 'enable' state the card operates as normal.
1287 * When in the 'disable' state, the card enters into a low power mode.
1288 * When in the 'halt' state, the card is shut down and must be fully
1289 * restarted to come back on.
1290 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001291static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001292{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001293 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001294 .id = REPLY_CARD_STATE_CMD,
1295 .len = sizeof(u32),
1296 .data = &flags,
1297 .meta.flags = meta_flag,
1298 };
1299
1300 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001301 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001302
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001303 return iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001304}
1305
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001306static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv,
1307 struct iwl3945_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001308{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001309 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001310
1311 if (!skb) {
1312 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1313 return 1;
1314 }
1315
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001316 res = (struct iwl3945_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001317 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1318 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1319 res->hdr.flags);
1320 return 1;
1321 }
1322
1323 switch (res->u.add_sta.status) {
1324 case ADD_STA_SUCCESS_MSK:
1325 break;
1326 default:
1327 break;
1328 }
1329
1330 /* We didn't cache the SKB; let the caller free it */
1331 return 1;
1332}
1333
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001334int iwl3945_send_add_station(struct iwl3945_priv *priv,
1335 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001336{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001337 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001338 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001339 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001340 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001341 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001342 .meta.flags = flags,
1343 .data = sta,
1344 };
1345
1346 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001347 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001348 else
1349 cmd.meta.flags |= CMD_WANT_SKB;
1350
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001351 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001352
1353 if (rc || (flags & CMD_ASYNC))
1354 return rc;
1355
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001356 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001357 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1358 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1359 res->hdr.flags);
1360 rc = -EIO;
1361 }
1362
1363 if (rc == 0) {
1364 switch (res->u.add_sta.status) {
1365 case ADD_STA_SUCCESS_MSK:
1366 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1367 break;
1368 default:
1369 rc = -EIO;
1370 IWL_WARNING("REPLY_ADD_STA failed\n");
1371 break;
1372 }
1373 }
1374
1375 priv->alloc_rxb_skb--;
1376 dev_kfree_skb_any(cmd.meta.u.skb);
1377
1378 return rc;
1379}
1380
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001381static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001382 struct ieee80211_key_conf *keyconf,
1383 u8 sta_id)
1384{
1385 unsigned long flags;
1386 __le16 key_flags = 0;
1387
1388 switch (keyconf->alg) {
1389 case ALG_CCMP:
1390 key_flags |= STA_KEY_FLG_CCMP;
1391 key_flags |= cpu_to_le16(
1392 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1393 key_flags &= ~STA_KEY_FLG_INVALID;
1394 break;
1395 case ALG_TKIP:
1396 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001397 default:
1398 return -EINVAL;
1399 }
1400 spin_lock_irqsave(&priv->sta_lock, flags);
1401 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1402 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1403 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1404 keyconf->keylen);
1405
1406 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1407 keyconf->keylen);
1408 priv->stations[sta_id].sta.key.key_flags = key_flags;
1409 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1410 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1411
1412 spin_unlock_irqrestore(&priv->sta_lock, flags);
1413
1414 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001415 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001416 return 0;
1417}
1418
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001419static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001420{
1421 unsigned long flags;
1422
1423 spin_lock_irqsave(&priv->sta_lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001424 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1425 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl3945_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001426 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1427 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1428 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1429 spin_unlock_irqrestore(&priv->sta_lock, flags);
1430
1431 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001432 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001433 return 0;
1434}
1435
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001436static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001437{
1438 struct list_head *element;
1439
1440 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1441 priv->frames_count);
1442
1443 while (!list_empty(&priv->free_frames)) {
1444 element = priv->free_frames.next;
1445 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001446 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001447 priv->frames_count--;
1448 }
1449
1450 if (priv->frames_count) {
1451 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1452 priv->frames_count);
1453 priv->frames_count = 0;
1454 }
1455}
1456
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001457static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001458{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001459 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001460 struct list_head *element;
1461 if (list_empty(&priv->free_frames)) {
1462 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1463 if (!frame) {
1464 IWL_ERROR("Could not allocate frame!\n");
1465 return NULL;
1466 }
1467
1468 priv->frames_count++;
1469 return frame;
1470 }
1471
1472 element = priv->free_frames.next;
1473 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001474 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001475}
1476
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001477static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001478{
1479 memset(frame, 0, sizeof(*frame));
1480 list_add(&frame->list, &priv->free_frames);
1481}
1482
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001483unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001484 struct ieee80211_hdr *hdr,
1485 const u8 *dest, int left)
1486{
1487
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001488 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Zhu Yib481de92007-09-25 17:54:57 -07001489 ((priv->iw_mode != IEEE80211_IF_TYPE_IBSS) &&
1490 (priv->iw_mode != IEEE80211_IF_TYPE_AP)))
1491 return 0;
1492
1493 if (priv->ibss_beacon->len > left)
1494 return 0;
1495
1496 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1497
1498 return priv->ibss_beacon->len;
1499}
1500
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001501static u8 iwl3945_rate_get_lowest_plcp(int rate_mask)
Zhu Yib481de92007-09-25 17:54:57 -07001502{
1503 u8 i;
1504
1505 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001506 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001507 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001508 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001509 }
1510
1511 return IWL_RATE_INVALID;
1512}
1513
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001514static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001515{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001516 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001517 unsigned int frame_size;
1518 int rc;
1519 u8 rate;
1520
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001521 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001522
1523 if (!frame) {
1524 IWL_ERROR("Could not obtain free frame buffer for beacon "
1525 "command.\n");
1526 return -ENOMEM;
1527 }
1528
1529 if (!(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001530 rate = iwl3945_rate_get_lowest_plcp(priv->active_rate_basic &
Zhu Yib481de92007-09-25 17:54:57 -07001531 0xFF0);
1532 if (rate == IWL_INVALID_RATE)
1533 rate = IWL_RATE_6M_PLCP;
1534 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001535 rate = iwl3945_rate_get_lowest_plcp(priv->active_rate_basic & 0xF);
Zhu Yib481de92007-09-25 17:54:57 -07001536 if (rate == IWL_INVALID_RATE)
1537 rate = IWL_RATE_1M_PLCP;
1538 }
1539
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001540 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001541
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001542 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001543 &frame->u.cmd[0]);
1544
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001545 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001546
1547 return rc;
1548}
1549
1550/******************************************************************************
1551 *
1552 * EEPROM related functions
1553 *
1554 ******************************************************************************/
1555
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001556static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001557{
1558 memcpy(mac, priv->eeprom.mac_address, 6);
1559}
1560
Reinette Chatre74a3a252008-01-23 10:15:19 -08001561/*
1562 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1563 * embedded controller) as EEPROM reader; each read is a series of pulses
1564 * to/from the EEPROM chip, not a single event, so even reads could conflict
1565 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1566 * simply claims ownership, which should be safe when this function is called
1567 * (i.e. before loading uCode!).
1568 */
1569static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1570{
1571 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1572 return 0;
1573}
1574
Zhu Yib481de92007-09-25 17:54:57 -07001575/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001576 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001577 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001578 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001579 *
1580 * NOTE: This routine uses the non-debug IO access functions.
1581 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001582int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001583{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001584 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001585 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001586 u32 r;
1587 int sz = sizeof(priv->eeprom);
1588 int rc;
1589 int i;
1590 u16 addr;
1591
1592 /* The EEPROM structure has several padding buffers within it
1593 * and when adding new EEPROM maps is subject to programmer errors
1594 * which may be very difficult to identify without explicitly
1595 * checking the resulting size of the eeprom map. */
1596 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1597
1598 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
1599 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x", gp);
1600 return -ENOENT;
1601 }
1602
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001603 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001604 rc = iwl3945_eeprom_acquire_semaphore(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001605 if (rc < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001606 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001607 return -ENOENT;
1608 }
1609
1610 /* eeprom is an array of 16bit values */
1611 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001612 _iwl3945_write32(priv, CSR_EEPROM_REG, addr << 1);
1613 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu Yib481de92007-09-25 17:54:57 -07001614
1615 for (i = 0; i < IWL_EEPROM_ACCESS_TIMEOUT;
1616 i += IWL_EEPROM_ACCESS_DELAY) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001617 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Zhu Yib481de92007-09-25 17:54:57 -07001618 if (r & CSR_EEPROM_REG_READ_VALID_MSK)
1619 break;
1620 udelay(IWL_EEPROM_ACCESS_DELAY);
1621 }
1622
1623 if (!(r & CSR_EEPROM_REG_READ_VALID_MSK)) {
1624 IWL_ERROR("Time out reading EEPROM[%d]", addr);
1625 return -ETIMEDOUT;
1626 }
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001627 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001628 }
1629
1630 return 0;
1631}
1632
1633/******************************************************************************
1634 *
1635 * Misc. internal state and helper functions
1636 *
1637 ******************************************************************************/
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001638#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001639
1640/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001641 * iwl3945_report_frame - dump frame to syslog during debug sessions
Zhu Yib481de92007-09-25 17:54:57 -07001642 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001643 * You may hack this function to show different aspects of received frames,
Zhu Yib481de92007-09-25 17:54:57 -07001644 * including selective frame dumps.
1645 * group100 parameter selects whether to show 1 out of 100 good frames.
Zhu Yib481de92007-09-25 17:54:57 -07001646 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001647void iwl3945_report_frame(struct iwl3945_priv *priv,
1648 struct iwl3945_rx_packet *pkt,
Zhu Yib481de92007-09-25 17:54:57 -07001649 struct ieee80211_hdr *header, int group100)
1650{
1651 u32 to_us;
1652 u32 print_summary = 0;
1653 u32 print_dump = 0; /* set to 1 to dump all frames' contents */
1654 u32 hundred = 0;
1655 u32 dataframe = 0;
1656 u16 fc;
1657 u16 seq_ctl;
1658 u16 channel;
1659 u16 phy_flags;
1660 int rate_sym;
1661 u16 length;
1662 u16 status;
1663 u16 bcn_tmr;
1664 u32 tsf_low;
1665 u64 tsf;
1666 u8 rssi;
1667 u8 agc;
1668 u16 sig_avg;
1669 u16 noise_diff;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001670 struct iwl3945_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt);
1671 struct iwl3945_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt);
1672 struct iwl3945_rx_frame_end *rx_end = IWL_RX_END(pkt);
Zhu Yib481de92007-09-25 17:54:57 -07001673 u8 *data = IWL_RX_DATA(pkt);
1674
1675 /* MAC header */
1676 fc = le16_to_cpu(header->frame_control);
1677 seq_ctl = le16_to_cpu(header->seq_ctrl);
1678
1679 /* metadata */
1680 channel = le16_to_cpu(rx_hdr->channel);
1681 phy_flags = le16_to_cpu(rx_hdr->phy_flags);
1682 rate_sym = rx_hdr->rate;
1683 length = le16_to_cpu(rx_hdr->len);
1684
1685 /* end-of-frame status and timestamp */
1686 status = le32_to_cpu(rx_end->status);
1687 bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp);
1688 tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff;
1689 tsf = le64_to_cpu(rx_end->timestamp);
1690
1691 /* signal statistics */
1692 rssi = rx_stats->rssi;
1693 agc = rx_stats->agc;
1694 sig_avg = le16_to_cpu(rx_stats->sig_avg);
1695 noise_diff = le16_to_cpu(rx_stats->noise_diff);
1696
1697 to_us = !compare_ether_addr(header->addr1, priv->mac_addr);
1698
1699 /* if data frame is to us and all is good,
1700 * (optionally) print summary for only 1 out of every 100 */
1701 if (to_us && (fc & ~IEEE80211_FCTL_PROTECTED) ==
1702 (IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) {
1703 dataframe = 1;
1704 if (!group100)
1705 print_summary = 1; /* print each frame */
1706 else if (priv->framecnt_to_us < 100) {
1707 priv->framecnt_to_us++;
1708 print_summary = 0;
1709 } else {
1710 priv->framecnt_to_us = 0;
1711 print_summary = 1;
1712 hundred = 1;
1713 }
1714 } else {
1715 /* print summary for all other frames */
1716 print_summary = 1;
1717 }
1718
1719 if (print_summary) {
1720 char *title;
1721 u32 rate;
1722
1723 if (hundred)
1724 title = "100Frames";
1725 else if (fc & IEEE80211_FCTL_RETRY)
1726 title = "Retry";
1727 else if (ieee80211_is_assoc_response(fc))
1728 title = "AscRsp";
1729 else if (ieee80211_is_reassoc_response(fc))
1730 title = "RasRsp";
1731 else if (ieee80211_is_probe_response(fc)) {
1732 title = "PrbRsp";
1733 print_dump = 1; /* dump frame contents */
1734 } else if (ieee80211_is_beacon(fc)) {
1735 title = "Beacon";
1736 print_dump = 1; /* dump frame contents */
1737 } else if (ieee80211_is_atim(fc))
1738 title = "ATIM";
1739 else if (ieee80211_is_auth(fc))
1740 title = "Auth";
1741 else if (ieee80211_is_deauth(fc))
1742 title = "DeAuth";
1743 else if (ieee80211_is_disassoc(fc))
1744 title = "DisAssoc";
1745 else
1746 title = "Frame";
1747
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001748 rate = iwl3945_rate_index_from_plcp(rate_sym);
Zhu Yib481de92007-09-25 17:54:57 -07001749 if (rate == -1)
1750 rate = 0;
1751 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001752 rate = iwl3945_rates[rate].ieee / 2;
Zhu Yib481de92007-09-25 17:54:57 -07001753
1754 /* print frame summary.
1755 * MAC addresses show just the last byte (for brevity),
1756 * but you can hack it to show more, if you'd like to. */
1757 if (dataframe)
1758 IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, "
1759 "len=%u, rssi=%d, chnl=%d, rate=%u, \n",
1760 title, fc, header->addr1[5],
1761 length, rssi, channel, rate);
1762 else {
1763 /* src/dst addresses assume managed mode */
1764 IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, "
1765 "src=0x%02x, rssi=%u, tim=%lu usec, "
1766 "phy=0x%02x, chnl=%d\n",
1767 title, fc, header->addr1[5],
1768 header->addr3[5], rssi,
1769 tsf_low - priv->scan_start_tsf,
1770 phy_flags, channel);
1771 }
1772 }
1773 if (print_dump)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001774 iwl3945_print_hex_dump(IWL_DL_RX, data, length);
Zhu Yib481de92007-09-25 17:54:57 -07001775}
1776#endif
1777
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001778static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001779{
1780 if (priv->hw_setting.shared_virt)
1781 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001782 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001783 priv->hw_setting.shared_virt,
1784 priv->hw_setting.shared_phys);
1785}
1786
1787/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001788 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001789 *
1790 * return : set the bit for each supported rate insert in ie
1791 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001792static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001793 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001794{
1795 u16 ret_rates = 0, bit;
1796 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001797 u8 *cnt = ie;
1798 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001799
1800 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1801 if (bit & supported_rate) {
1802 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001803 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001804 ((bit & basic_rate) ? 0x80 : 0x00);
1805 (*cnt)++;
1806 (*left)--;
1807 if ((*left <= 0) ||
1808 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001809 break;
1810 }
1811 }
1812
1813 return ret_rates;
1814}
1815
1816/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001817 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001818 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001819static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001820 struct ieee80211_mgmt *frame,
1821 int left, int is_direct)
1822{
1823 int len = 0;
1824 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001825 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001826
1827 /* Make sure there is enough space for the probe request,
1828 * two mandatory IEs and the data */
1829 left -= 24;
1830 if (left < 0)
1831 return 0;
1832 len += 24;
1833
1834 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001835 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001836 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001837 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001838 frame->seq_ctrl = 0;
1839
1840 /* fill in our indirect SSID IE */
1841 /* ...next IE... */
1842
1843 left -= 2;
1844 if (left < 0)
1845 return 0;
1846 len += 2;
1847 pos = &(frame->u.probe_req.variable[0]);
1848 *pos++ = WLAN_EID_SSID;
1849 *pos++ = 0;
1850
1851 /* fill in our direct SSID IE... */
1852 if (is_direct) {
1853 /* ...next IE... */
1854 left -= 2 + priv->essid_len;
1855 if (left < 0)
1856 return 0;
1857 /* ... fill it in... */
1858 *pos++ = WLAN_EID_SSID;
1859 *pos++ = priv->essid_len;
1860 memcpy(pos, priv->essid, priv->essid_len);
1861 pos += priv->essid_len;
1862 len += 2 + priv->essid_len;
1863 }
1864
1865 /* fill in supported rate */
1866 /* ...next IE... */
1867 left -= 2;
1868 if (left < 0)
1869 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001870
Zhu Yib481de92007-09-25 17:54:57 -07001871 /* ... fill it in... */
1872 *pos++ = WLAN_EID_SUPP_RATES;
1873 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001874
1875 priv->active_rate = priv->rates_mask;
1876 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001877 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1878
Tomas Winklerc7c46672007-10-18 02:04:15 +02001879 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001880 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001881 priv->active_rate_basic, &left);
1882 active_rates &= ~ret_rates;
1883
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001884 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001885 priv->active_rate_basic, &left);
1886 active_rates &= ~ret_rates;
1887
Zhu Yib481de92007-09-25 17:54:57 -07001888 len += 2 + *pos;
1889 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001890 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001891 goto fill_end;
1892
1893 /* fill in supported extended rate */
1894 /* ...next IE... */
1895 left -= 2;
1896 if (left < 0)
1897 return 0;
1898 /* ... fill it in... */
1899 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1900 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001901 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001902 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001903 if (*pos > 0)
1904 len += 2 + *pos;
1905
1906 fill_end:
1907 return (u16)len;
1908}
1909
1910/*
1911 * QoS support
1912*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001913static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
1914 struct iwl3945_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001915{
1916
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001917 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1918 sizeof(struct iwl3945_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001919}
1920
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001921static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001922{
1923 u16 cw_min = 15;
1924 u16 cw_max = 1023;
1925 u8 aifs = 2;
1926 u8 is_legacy = 0;
1927 unsigned long flags;
1928 int i;
1929
1930 spin_lock_irqsave(&priv->lock, flags);
1931 priv->qos_data.qos_active = 0;
1932
1933 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS) {
1934 if (priv->qos_data.qos_enable)
1935 priv->qos_data.qos_active = 1;
1936 if (!(priv->active_rate & 0xfff0)) {
1937 cw_min = 31;
1938 is_legacy = 1;
1939 }
1940 } else if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
1941 if (priv->qos_data.qos_enable)
1942 priv->qos_data.qos_active = 1;
1943 } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) {
1944 cw_min = 31;
1945 is_legacy = 1;
1946 }
1947
1948 if (priv->qos_data.qos_active)
1949 aifs = 3;
1950
1951 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1952 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1953 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1954 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1955 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1956
1957 if (priv->qos_data.qos_active) {
1958 i = 1;
1959 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1960 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1961 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1962 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1963 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1964
1965 i = 2;
1966 priv->qos_data.def_qos_parm.ac[i].cw_min =
1967 cpu_to_le16((cw_min + 1) / 2 - 1);
1968 priv->qos_data.def_qos_parm.ac[i].cw_max =
1969 cpu_to_le16(cw_max);
1970 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1971 if (is_legacy)
1972 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1973 cpu_to_le16(6016);
1974 else
1975 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1976 cpu_to_le16(3008);
1977 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1978
1979 i = 3;
1980 priv->qos_data.def_qos_parm.ac[i].cw_min =
1981 cpu_to_le16((cw_min + 1) / 4 - 1);
1982 priv->qos_data.def_qos_parm.ac[i].cw_max =
1983 cpu_to_le16((cw_max + 1) / 2 - 1);
1984 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1985 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1986 if (is_legacy)
1987 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1988 cpu_to_le16(3264);
1989 else
1990 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1991 cpu_to_le16(1504);
1992 } else {
1993 for (i = 1; i < 4; i++) {
1994 priv->qos_data.def_qos_parm.ac[i].cw_min =
1995 cpu_to_le16(cw_min);
1996 priv->qos_data.def_qos_parm.ac[i].cw_max =
1997 cpu_to_le16(cw_max);
1998 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1999 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
2000 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
2001 }
2002 }
2003 IWL_DEBUG_QOS("set QoS to default \n");
2004
2005 spin_unlock_irqrestore(&priv->lock, flags);
2006}
2007
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002008static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07002009{
2010 unsigned long flags;
2011
Zhu Yib481de92007-09-25 17:54:57 -07002012 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2013 return;
2014
2015 if (!priv->qos_data.qos_enable)
2016 return;
2017
2018 spin_lock_irqsave(&priv->lock, flags);
2019 priv->qos_data.def_qos_parm.qos_flags = 0;
2020
2021 if (priv->qos_data.qos_cap.q_AP.queue_request &&
2022 !priv->qos_data.qos_cap.q_AP.txop_request)
2023 priv->qos_data.def_qos_parm.qos_flags |=
2024 QOS_PARAM_FLG_TXOP_TYPE_MSK;
2025
2026 if (priv->qos_data.qos_active)
2027 priv->qos_data.def_qos_parm.qos_flags |=
2028 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
2029
2030 spin_unlock_irqrestore(&priv->lock, flags);
2031
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002032 if (force || iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002033 IWL_DEBUG_QOS("send QoS cmd with Qos active %d \n",
2034 priv->qos_data.qos_active);
2035
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002036 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07002037 &(priv->qos_data.def_qos_parm));
2038 }
2039}
2040
Zhu Yib481de92007-09-25 17:54:57 -07002041/*
2042 * Power management (not Tx power!) functions
2043 */
2044#define MSEC_TO_USEC 1024
2045
2046#define NOSLP __constant_cpu_to_le32(0)
2047#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
2048#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
2049#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
2050 __constant_cpu_to_le32(X1), \
2051 __constant_cpu_to_le32(X2), \
2052 __constant_cpu_to_le32(X3), \
2053 __constant_cpu_to_le32(X4)}
2054
2055
2056/* default power management (not Tx power) table values */
2057/* for tim 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002058static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07002059 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2060 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
2061 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
2062 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
2063 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
2064 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
2065};
2066
2067/* for tim > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002068static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07002069 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2070 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
2071 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
2072 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
2073 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
2074 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
2075 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
2076 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
2077 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
2078 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
2079};
2080
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002081int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002082{
2083 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002084 struct iwl3945_power_mgr *pow_data;
2085 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07002086 u16 pci_pm;
2087
2088 IWL_DEBUG_POWER("Initialize power \n");
2089
2090 pow_data = &(priv->power_data);
2091
2092 memset(pow_data, 0, sizeof(*pow_data));
2093
2094 pow_data->active_index = IWL_POWER_RANGE_0;
2095 pow_data->dtim_val = 0xffff;
2096
2097 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
2098 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
2099
2100 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
2101 if (rc != 0)
2102 return 0;
2103 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002104 struct iwl3945_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07002105
2106 IWL_DEBUG_POWER("adjust power command flags\n");
2107
2108 for (i = 0; i < IWL_POWER_AC; i++) {
2109 cmd = &pow_data->pwr_range_0[i].cmd;
2110
2111 if (pci_pm & 0x1)
2112 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
2113 else
2114 cmd->flags |= IWL_POWER_PCI_PM_MSK;
2115 }
2116 }
2117 return rc;
2118}
2119
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002120static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
2121 struct iwl3945_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07002122{
2123 int rc = 0, i;
2124 u8 skip;
2125 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002126 struct iwl3945_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07002127 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002128 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07002129
2130 if (mode > IWL_POWER_INDEX_5) {
2131 IWL_DEBUG_POWER("Error invalid power mode \n");
2132 return -1;
2133 }
2134 pow_data = &(priv->power_data);
2135
2136 if (pow_data->active_index == IWL_POWER_RANGE_0)
2137 range = &pow_data->pwr_range_0[0];
2138 else
2139 range = &pow_data->pwr_range_1[1];
2140
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002141 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07002142
2143#ifdef IWL_MAC80211_DISABLE
2144 if (priv->assoc_network != NULL) {
2145 unsigned long flags;
2146
2147 period = priv->assoc_network->tim.tim_period;
2148 }
2149#endif /*IWL_MAC80211_DISABLE */
2150 skip = range[mode].no_dtim;
2151
2152 if (period == 0) {
2153 period = 1;
2154 skip = 0;
2155 }
2156
2157 if (skip == 0) {
2158 max_sleep = period;
2159 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
2160 } else {
2161 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
2162 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
2163 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
2164 }
2165
2166 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
2167 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
2168 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
2169 }
2170
2171 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
2172 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
2173 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
2174 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
2175 le32_to_cpu(cmd->sleep_interval[0]),
2176 le32_to_cpu(cmd->sleep_interval[1]),
2177 le32_to_cpu(cmd->sleep_interval[2]),
2178 le32_to_cpu(cmd->sleep_interval[3]),
2179 le32_to_cpu(cmd->sleep_interval[4]));
2180
2181 return rc;
2182}
2183
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002184static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07002185{
John W. Linville9a62f732007-11-15 16:27:36 -05002186 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002187 int rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002188 struct iwl3945_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07002189
2190 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08002191 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07002192 * else user level */
2193 switch (mode) {
2194 case IWL_POWER_BATTERY:
2195 final_mode = IWL_POWER_INDEX_3;
2196 break;
2197 case IWL_POWER_AC:
2198 final_mode = IWL_POWER_MODE_CAM;
2199 break;
2200 default:
2201 final_mode = mode;
2202 break;
2203 }
2204
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002205 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002206
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002207 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002208
2209 if (final_mode == IWL_POWER_MODE_CAM)
2210 clear_bit(STATUS_POWER_PMI, &priv->status);
2211 else
2212 set_bit(STATUS_POWER_PMI, &priv->status);
2213
2214 return rc;
2215}
2216
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002217int iwl3945_is_network_packet(struct iwl3945_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07002218{
2219 /* Filter incoming packets to determine if they are targeted toward
2220 * this network, discarding packets coming from ourselves */
2221 switch (priv->iw_mode) {
2222 case IEEE80211_IF_TYPE_IBSS: /* Header: Dest. | Source | BSSID */
2223 /* packets from our adapter are dropped (echo) */
2224 if (!compare_ether_addr(header->addr2, priv->mac_addr))
2225 return 0;
2226 /* {broad,multi}cast packets to our IBSS go through */
2227 if (is_multicast_ether_addr(header->addr1))
2228 return !compare_ether_addr(header->addr3, priv->bssid);
2229 /* packets to our adapter go through */
2230 return !compare_ether_addr(header->addr1, priv->mac_addr);
2231 case IEEE80211_IF_TYPE_STA: /* Header: Dest. | AP{BSSID} | Source */
2232 /* packets from our adapter are dropped (echo) */
2233 if (!compare_ether_addr(header->addr3, priv->mac_addr))
2234 return 0;
2235 /* {broad,multi}cast packets to our BSS go through */
2236 if (is_multicast_ether_addr(header->addr1))
2237 return !compare_ether_addr(header->addr2, priv->bssid);
2238 /* packets to our adapter go through */
2239 return !compare_ether_addr(header->addr1, priv->mac_addr);
2240 }
2241
2242 return 1;
2243}
2244
2245#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2246
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002247static const char *iwl3945_get_tx_fail_reason(u32 status)
Zhu Yib481de92007-09-25 17:54:57 -07002248{
2249 switch (status & TX_STATUS_MSK) {
2250 case TX_STATUS_SUCCESS:
2251 return "SUCCESS";
2252 TX_STATUS_ENTRY(SHORT_LIMIT);
2253 TX_STATUS_ENTRY(LONG_LIMIT);
2254 TX_STATUS_ENTRY(FIFO_UNDERRUN);
2255 TX_STATUS_ENTRY(MGMNT_ABORT);
2256 TX_STATUS_ENTRY(NEXT_FRAG);
2257 TX_STATUS_ENTRY(LIFE_EXPIRE);
2258 TX_STATUS_ENTRY(DEST_PS);
2259 TX_STATUS_ENTRY(ABORTED);
2260 TX_STATUS_ENTRY(BT_RETRY);
2261 TX_STATUS_ENTRY(STA_INVALID);
2262 TX_STATUS_ENTRY(FRAG_DROPPED);
2263 TX_STATUS_ENTRY(TID_DISABLE);
2264 TX_STATUS_ENTRY(FRAME_FLUSHED);
2265 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
2266 TX_STATUS_ENTRY(TX_LOCKED);
2267 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
2268 }
2269
2270 return "UNKNOWN";
2271}
2272
2273/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002274 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002275 *
2276 * NOTE: priv->mutex is not required before calling this function
2277 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002278static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002279{
2280 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
2281 clear_bit(STATUS_SCANNING, &priv->status);
2282 return 0;
2283 }
2284
2285 if (test_bit(STATUS_SCANNING, &priv->status)) {
2286 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2287 IWL_DEBUG_SCAN("Queuing scan abort.\n");
2288 set_bit(STATUS_SCAN_ABORTING, &priv->status);
2289 queue_work(priv->workqueue, &priv->abort_scan);
2290
2291 } else
2292 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2293
2294 return test_bit(STATUS_SCANNING, &priv->status);
2295 }
2296
2297 return 0;
2298}
2299
2300/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002301 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002302 * @ms: amount of time to wait (in milliseconds) for scan to abort
2303 *
2304 * NOTE: priv->mutex must be held before calling this function
2305 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002306static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07002307{
2308 unsigned long now = jiffies;
2309 int ret;
2310
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002311 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002312 if (ret && ms) {
2313 mutex_unlock(&priv->mutex);
2314 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2315 test_bit(STATUS_SCANNING, &priv->status))
2316 msleep(1);
2317 mutex_lock(&priv->mutex);
2318
2319 return test_bit(STATUS_SCANNING, &priv->status);
2320 }
2321
2322 return ret;
2323}
2324
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002325static void iwl3945_sequence_reset(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002326{
2327 /* Reset ieee stats */
2328
2329 /* We don't reset the net_device_stats (ieee->stats) on
2330 * re-association */
2331
2332 priv->last_seq_num = -1;
2333 priv->last_frag_num = -1;
2334 priv->last_packet_time = 0;
2335
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002336 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002337}
2338
2339#define MAX_UCODE_BEACON_INTERVAL 1024
2340#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2341
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002342static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07002343{
2344 u16 new_val = 0;
2345 u16 beacon_factor = 0;
2346
2347 beacon_factor =
2348 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2349 / MAX_UCODE_BEACON_INTERVAL;
2350 new_val = beacon_val / beacon_factor;
2351
2352 return cpu_to_le16(new_val);
2353}
2354
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002355static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002356{
2357 u64 interval_tm_unit;
2358 u64 tsf, result;
2359 unsigned long flags;
2360 struct ieee80211_conf *conf = NULL;
2361 u16 beacon_int = 0;
2362
2363 conf = ieee80211_get_hw_conf(priv->hw);
2364
2365 spin_lock_irqsave(&priv->lock, flags);
2366 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2367 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2368
2369 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2370
2371 tsf = priv->timestamp1;
2372 tsf = ((tsf << 32) | priv->timestamp0);
2373
2374 beacon_int = priv->beacon_int;
2375 spin_unlock_irqrestore(&priv->lock, flags);
2376
2377 if (priv->iw_mode == IEEE80211_IF_TYPE_STA) {
2378 if (beacon_int == 0) {
2379 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2380 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2381 } else {
2382 priv->rxon_timing.beacon_interval =
2383 cpu_to_le16(beacon_int);
2384 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002385 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002386 le16_to_cpu(priv->rxon_timing.beacon_interval));
2387 }
2388
2389 priv->rxon_timing.atim_window = 0;
2390 } else {
2391 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002392 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002393 /* TODO: we need to get atim_window from upper stack
2394 * for now we set to 0 */
2395 priv->rxon_timing.atim_window = 0;
2396 }
2397
2398 interval_tm_unit =
2399 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2400 result = do_div(tsf, interval_tm_unit);
2401 priv->rxon_timing.beacon_init_val =
2402 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2403
2404 IWL_DEBUG_ASSOC
2405 ("beacon interval %d beacon timer %d beacon tim %d\n",
2406 le16_to_cpu(priv->rxon_timing.beacon_interval),
2407 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2408 le16_to_cpu(priv->rxon_timing.atim_window));
2409}
2410
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002411static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002412{
2413 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
2414 IWL_ERROR("APs don't scan.\n");
2415 return 0;
2416 }
2417
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002418 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002419 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2420 return -EIO;
2421 }
2422
2423 if (test_bit(STATUS_SCANNING, &priv->status)) {
2424 IWL_DEBUG_SCAN("Scan already in progress.\n");
2425 return -EAGAIN;
2426 }
2427
2428 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2429 IWL_DEBUG_SCAN("Scan request while abort pending. "
2430 "Queuing.\n");
2431 return -EAGAIN;
2432 }
2433
2434 IWL_DEBUG_INFO("Starting scan...\n");
2435 priv->scan_bands = 2;
2436 set_bit(STATUS_SCANNING, &priv->status);
2437 priv->scan_start = jiffies;
2438 priv->scan_pass_start = priv->scan_start;
2439
2440 queue_work(priv->workqueue, &priv->request_scan);
2441
2442 return 0;
2443}
2444
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002445static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002446{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002447 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002448
2449 if (hw_decrypt)
2450 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2451 else
2452 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2453
2454 return 0;
2455}
2456
Johannes Berg8318d782008-01-24 19:38:38 +01002457static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2458 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002459{
Johannes Berg8318d782008-01-24 19:38:38 +01002460 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002461 priv->staging_rxon.flags &=
2462 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2463 | RXON_FLG_CCK_MSK);
2464 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2465 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002466 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002467 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2468 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2469 else
2470 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2471
2472 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
2473 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2474
2475 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2476 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2477 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2478 }
2479}
2480
2481/*
Ian Schram01ebd062007-10-25 17:15:22 +08002482 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002483 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002484static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002485{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002486 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002487
2488 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2489
2490 switch (priv->iw_mode) {
2491 case IEEE80211_IF_TYPE_AP:
2492 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2493 break;
2494
2495 case IEEE80211_IF_TYPE_STA:
2496 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2497 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2498 break;
2499
2500 case IEEE80211_IF_TYPE_IBSS:
2501 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2502 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2503 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2504 RXON_FILTER_ACCEPT_GRP_MSK;
2505 break;
2506
2507 case IEEE80211_IF_TYPE_MNTR:
2508 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2509 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2510 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2511 break;
2512 }
2513
2514#if 0
2515 /* TODO: Figure out when short_preamble would be set and cache from
2516 * that */
2517 if (!hw_to_local(priv->hw)->short_preamble)
2518 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2519 else
2520 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2521#endif
2522
Johannes Berg8318d782008-01-24 19:38:38 +01002523 ch_info = iwl3945_get_channel_info(priv, priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002524 le16_to_cpu(priv->staging_rxon.channel));
2525
2526 if (!ch_info)
2527 ch_info = &priv->channel_info[0];
2528
2529 /*
2530 * in some case A channels are all non IBSS
2531 * in this case force B/G channel
2532 */
2533 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
2534 !(is_channel_ibss(ch_info)))
2535 ch_info = &priv->channel_info[0];
2536
2537 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2538 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002539 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002540 else
Johannes Berg8318d782008-01-24 19:38:38 +01002541 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002542
Johannes Berg8318d782008-01-24 19:38:38 +01002543 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002544
2545 priv->staging_rxon.ofdm_basic_rates =
2546 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2547 priv->staging_rxon.cck_basic_rates =
2548 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2549}
2550
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002551static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002552{
Zhu Yib481de92007-09-25 17:54:57 -07002553 if (mode == IEEE80211_IF_TYPE_IBSS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002554 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002555
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002556 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002557 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002558 le16_to_cpu(priv->staging_rxon.channel));
2559
2560 if (!ch_info || !is_channel_ibss(ch_info)) {
2561 IWL_ERROR("channel %d not IBSS channel\n",
2562 le16_to_cpu(priv->staging_rxon.channel));
2563 return -EINVAL;
2564 }
2565 }
2566
Zhu Yib481de92007-09-25 17:54:57 -07002567 priv->iw_mode = mode;
2568
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002569 iwl3945_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002570 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2571
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002572 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002573
Mohamed Abbasfde35712007-11-29 11:10:15 +08002574 /* dont commit rxon if rf-kill is on*/
2575 if (!iwl3945_is_ready_rf(priv))
2576 return -EAGAIN;
2577
2578 cancel_delayed_work(&priv->scan_check);
2579 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2580 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2581 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2582 return -EAGAIN;
2583 }
2584
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002585 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002586
2587 return 0;
2588}
2589
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002590static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002591 struct ieee80211_tx_control *ctl,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002592 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002593 struct sk_buff *skb_frag,
2594 int last_frag)
2595{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002596 struct iwl3945_hw_key *keyinfo = &priv->stations[ctl->key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002597
2598 switch (keyinfo->alg) {
2599 case ALG_CCMP:
2600 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2601 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
2602 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
2603 break;
2604
2605 case ALG_TKIP:
2606#if 0
2607 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2608
2609 if (last_frag)
2610 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2611 8);
2612 else
2613 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2614#endif
2615 break;
2616
2617 case ALG_WEP:
2618 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
2619 (ctl->key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
2620
2621 if (keyinfo->keylen == 13)
2622 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2623
2624 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2625
2626 IWL_DEBUG_TX("Configuring packet for WEP encryption "
2627 "with key %d\n", ctl->key_idx);
2628 break;
2629
Zhu Yib481de92007-09-25 17:54:57 -07002630 default:
2631 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2632 break;
2633 }
2634}
2635
2636/*
2637 * handle build REPLY_TX command notification.
2638 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002639static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2640 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002641 struct ieee80211_tx_control *ctrl,
2642 struct ieee80211_hdr *hdr,
2643 int is_unicast, u8 std_id)
2644{
2645 __le16 *qc;
2646 u16 fc = le16_to_cpu(hdr->frame_control);
2647 __le32 tx_flags = cmd->cmd.tx.tx_flags;
2648
2649 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2650 if (!(ctrl->flags & IEEE80211_TXCTL_NO_ACK)) {
2651 tx_flags |= TX_CMD_FLG_ACK_MSK;
2652 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
2653 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2654 if (ieee80211_is_probe_response(fc) &&
2655 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2656 tx_flags |= TX_CMD_FLG_TSF_MSK;
2657 } else {
2658 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2659 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2660 }
2661
2662 cmd->cmd.tx.sta_id = std_id;
2663 if (ieee80211_get_morefrag(hdr))
2664 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2665
2666 qc = ieee80211_get_qos_ctrl(hdr);
2667 if (qc) {
2668 cmd->cmd.tx.tid_tspec = (u8) (le16_to_cpu(*qc) & 0xf);
2669 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
2670 } else
2671 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2672
2673 if (ctrl->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
2674 tx_flags |= TX_CMD_FLG_RTS_MSK;
2675 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2676 } else if (ctrl->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
2677 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2678 tx_flags |= TX_CMD_FLG_CTS_MSK;
2679 }
2680
2681 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2682 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2683
2684 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
2685 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) {
2686 if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ ||
2687 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
Ian Schrambc434dd2007-10-25 17:15:29 +08002688 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002689 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002690 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Zhu Yib481de92007-09-25 17:54:57 -07002691 } else
2692 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
2693
2694 cmd->cmd.tx.driver_txop = 0;
2695 cmd->cmd.tx.tx_flags = tx_flags;
2696 cmd->cmd.tx.next_frame_len = 0;
2697}
2698
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002699/**
2700 * iwl3945_get_sta_id - Find station's index within station table
2701 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002702static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002703{
2704 int sta_id;
2705 u16 fc = le16_to_cpu(hdr->frame_control);
2706
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002707 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002708 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2709 is_multicast_ether_addr(hdr->addr1))
2710 return priv->hw_setting.bcast_sta_id;
2711
2712 switch (priv->iw_mode) {
2713
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002714 /* If we are a client station in a BSS network, use the special
2715 * AP station entry (that's the only station we communicate with) */
Zhu Yib481de92007-09-25 17:54:57 -07002716 case IEEE80211_IF_TYPE_STA:
2717 return IWL_AP_ID;
2718
2719 /* If we are an AP, then find the station, or use BCAST */
2720 case IEEE80211_IF_TYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002721 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002722 if (sta_id != IWL_INVALID_STATION)
2723 return sta_id;
2724 return priv->hw_setting.bcast_sta_id;
2725
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002726 /* If this frame is going out to an IBSS network, find the station,
2727 * or create a new station table entry */
Joe Perches0795af52007-10-03 17:59:30 -07002728 case IEEE80211_IF_TYPE_IBSS: {
2729 DECLARE_MAC_BUF(mac);
2730
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002731 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002732 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002733 if (sta_id != IWL_INVALID_STATION)
2734 return sta_id;
2735
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002736 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002737
2738 if (sta_id != IWL_INVALID_STATION)
2739 return sta_id;
2740
Joe Perches0795af52007-10-03 17:59:30 -07002741 IWL_DEBUG_DROP("Station %s not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002742 "Defaulting to broadcast...\n",
Joe Perches0795af52007-10-03 17:59:30 -07002743 print_mac(mac, hdr->addr1));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002744 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002745 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002746 }
Zhu Yib481de92007-09-25 17:54:57 -07002747 default:
Ian Schram01ebd062007-10-25 17:15:22 +08002748 IWL_WARNING("Unknown mode of operation: %d", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002749 return priv->hw_setting.bcast_sta_id;
2750 }
2751}
2752
2753/*
2754 * start REPLY_TX command process
2755 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002756static int iwl3945_tx_skb(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002757 struct sk_buff *skb, struct ieee80211_tx_control *ctl)
2758{
2759 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002760 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002761 u32 *control_flags;
2762 int txq_id = ctl->queue;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002763 struct iwl3945_tx_queue *txq = NULL;
2764 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002765 dma_addr_t phys_addr;
2766 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002767 struct iwl3945_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002768 u16 len, idx, len_org;
2769 u8 id, hdr_len, unicast;
2770 u8 sta_id;
2771 u16 seq_number = 0;
2772 u16 fc;
2773 __le16 *qc;
2774 u8 wait_write_ptr = 0;
2775 unsigned long flags;
2776 int rc;
2777
2778 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002779 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002780 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2781 goto drop_unlock;
2782 }
2783
Johannes Berg32bfd352007-12-19 01:31:26 +01002784 if (!priv->vif) {
2785 IWL_DEBUG_DROP("Dropping - !priv->vif\n");
Zhu Yib481de92007-09-25 17:54:57 -07002786 goto drop_unlock;
2787 }
2788
Johannes Berg8318d782008-01-24 19:38:38 +01002789 if ((ctl->tx_rate->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002790 IWL_ERROR("ERROR: No TX rate available.\n");
2791 goto drop_unlock;
2792 }
2793
2794 unicast = !is_multicast_ether_addr(hdr->addr1);
2795 id = 0;
2796
2797 fc = le16_to_cpu(hdr->frame_control);
2798
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002799#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002800 if (ieee80211_is_auth(fc))
2801 IWL_DEBUG_TX("Sending AUTH frame\n");
2802 else if (ieee80211_is_assoc_request(fc))
2803 IWL_DEBUG_TX("Sending ASSOC frame\n");
2804 else if (ieee80211_is_reassoc_request(fc))
2805 IWL_DEBUG_TX("Sending REASSOC frame\n");
2806#endif
2807
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002808 /* drop all data frame if we are not associated */
Reinette Chatrea6477242008-02-14 10:40:28 -08002809 if ((!iwl3945_is_associated(priv) ||
2810 ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && !priv->assoc_id)) &&
Zhu Yib481de92007-09-25 17:54:57 -07002811 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002812 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002813 goto drop_unlock;
2814 }
2815
2816 spin_unlock_irqrestore(&priv->lock, flags);
2817
2818 hdr_len = ieee80211_get_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002819
2820 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002821 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002822 if (sta_id == IWL_INVALID_STATION) {
Joe Perches0795af52007-10-03 17:59:30 -07002823 DECLARE_MAC_BUF(mac);
2824
2825 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
2826 print_mac(mac, hdr->addr1));
Zhu Yib481de92007-09-25 17:54:57 -07002827 goto drop;
2828 }
2829
2830 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2831
2832 qc = ieee80211_get_qos_ctrl(hdr);
2833 if (qc) {
2834 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2835 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2836 IEEE80211_SCTL_SEQ;
2837 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2838 (hdr->seq_ctrl &
2839 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2840 seq_number += 0x10;
2841 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002842
2843 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002844 txq = &priv->txq[txq_id];
2845 q = &txq->q;
2846
2847 spin_lock_irqsave(&priv->lock, flags);
2848
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002849 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002850 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002851 memset(tfd, 0, sizeof(*tfd));
2852 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002853 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002854
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002855 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002856 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002857 txq->txb[q->write_ptr].skb[0] = skb;
2858 memcpy(&(txq->txb[q->write_ptr].status.control),
Zhu Yib481de92007-09-25 17:54:57 -07002859 ctl, sizeof(struct ieee80211_tx_control));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002860
2861 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002862 out_cmd = &txq->cmd[idx];
2863 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2864 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002865
2866 /*
2867 * Set up the Tx-command (not MAC!) header.
2868 * Store the chosen Tx queue and TFD index within the sequence field;
2869 * after Tx, uCode's Tx response will return this value so driver can
2870 * locate the frame within the tx queue and do post-tx processing.
2871 */
Zhu Yib481de92007-09-25 17:54:57 -07002872 out_cmd->hdr.cmd = REPLY_TX;
2873 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002874 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002875
2876 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002877 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2878
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002879 /*
2880 * Use the first empty entry in this queue's command buffer array
2881 * to contain the Tx command and MAC header concatenated together
2882 * (payload data will be in another buffer).
2883 * Size of this varies, due to varying MAC header length.
2884 * If end is not dword aligned, we'll have 2 extra bytes at the end
2885 * of the MAC header (device reads on dword boundaries).
2886 * We'll tell device about this padding later.
2887 */
Zhu Yib481de92007-09-25 17:54:57 -07002888 len = priv->hw_setting.tx_cmd_len +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002889 sizeof(struct iwl3945_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002890
2891 len_org = len;
2892 len = (len + 3) & ~3;
2893
2894 if (len_org != len)
2895 len_org = 1;
2896 else
2897 len_org = 0;
2898
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002899 /* Physical address of this Tx command's header (not MAC header!),
2900 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002901 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2902 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002903
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002904 /* Add buffer containing Tx command and MAC(!) header to TFD's
2905 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002906 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002907
2908 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002909 iwl3945_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002910
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002911 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2912 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002913 len = skb->len - hdr_len;
2914 if (len) {
2915 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2916 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002917 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002918 }
2919
Zhu Yib481de92007-09-25 17:54:57 -07002920 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002921 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002922 *control_flags = TFD_CTL_COUNT_SET(1);
2923 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002924 /* Else use 2 buffers.
2925 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002926 *control_flags = TFD_CTL_COUNT_SET(2) |
2927 TFD_CTL_PAD_SET(U32_PAD(len));
2928
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002929 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002930 len = (u16)skb->len;
2931 out_cmd->cmd.tx.len = cpu_to_le16(len);
2932
2933 /* TODO need this for burst mode later on */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002934 iwl3945_build_tx_cmd_basic(priv, out_cmd, ctl, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002935
2936 /* set is_hcca to 0; it probably will never be implemented */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002937 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, ctl, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002938
2939 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2940 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2941
2942 if (!ieee80211_get_morefrag(hdr)) {
2943 txq->need_update = 1;
2944 if (qc) {
2945 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2946 priv->stations[sta_id].tid[tid].seq_number = seq_number;
2947 }
2948 } else {
2949 wait_write_ptr = 1;
2950 txq->need_update = 0;
2951 }
2952
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002953 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002954 sizeof(out_cmd->cmd.tx));
2955
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002956 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Zhu Yib481de92007-09-25 17:54:57 -07002957 ieee80211_get_hdrlen(fc));
2958
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002959 /* Tell device the write index *just past* this latest filled TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002960 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd);
2961 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002962 spin_unlock_irqrestore(&priv->lock, flags);
2963
2964 if (rc)
2965 return rc;
2966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002967 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002968 && priv->mac80211_registered) {
2969 if (wait_write_ptr) {
2970 spin_lock_irqsave(&priv->lock, flags);
2971 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002972 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002973 spin_unlock_irqrestore(&priv->lock, flags);
2974 }
2975
2976 ieee80211_stop_queue(priv->hw, ctl->queue);
2977 }
2978
2979 return 0;
2980
2981drop_unlock:
2982 spin_unlock_irqrestore(&priv->lock, flags);
2983drop:
2984 return -1;
2985}
2986
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002987static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002988{
Johannes Berg8318d782008-01-24 19:38:38 +01002989 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002990 struct ieee80211_rate *rate;
2991 int i;
2992
Johannes Berg8318d782008-01-24 19:38:38 +01002993 sband = iwl3945_get_band(priv, priv->band);
2994 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002995 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2996 return;
2997 }
Zhu Yib481de92007-09-25 17:54:57 -07002998
2999 priv->active_rate = 0;
3000 priv->active_rate_basic = 0;
3001
Johannes Berg8318d782008-01-24 19:38:38 +01003002 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
3003 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07003004
Johannes Berg8318d782008-01-24 19:38:38 +01003005 for (i = 0; i < sband->n_bitrates; i++) {
3006 rate = &sband->bitrates[i];
3007 if ((rate->hw_value < IWL_RATE_COUNT) &&
3008 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
3009 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
3010 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
3011 priv->active_rate |= (1 << rate->hw_value);
3012 }
Zhu Yib481de92007-09-25 17:54:57 -07003013 }
3014
3015 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
3016 priv->active_rate, priv->active_rate_basic);
3017
3018 /*
3019 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
3020 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
3021 * OFDM
3022 */
3023 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
3024 priv->staging_rxon.cck_basic_rates =
3025 ((priv->active_rate_basic &
3026 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
3027 else
3028 priv->staging_rxon.cck_basic_rates =
3029 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
3030
3031 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
3032 priv->staging_rxon.ofdm_basic_rates =
3033 ((priv->active_rate_basic &
3034 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
3035 IWL_FIRST_OFDM_RATE) & 0xFF;
3036 else
3037 priv->staging_rxon.ofdm_basic_rates =
3038 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
3039}
3040
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003041static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07003042{
3043 unsigned long flags;
3044
3045 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
3046 return;
3047
3048 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
3049 disable_radio ? "OFF" : "ON");
3050
3051 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003052 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003053 /* FIXME: This is a workaround for AP */
3054 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
3055 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003056 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003057 CSR_UCODE_SW_BIT_RFKILL);
3058 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003059 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003060 set_bit(STATUS_RF_KILL_SW, &priv->status);
3061 }
3062 return;
3063 }
3064
3065 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003066 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003067
3068 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3069 spin_unlock_irqrestore(&priv->lock, flags);
3070
3071 /* wake up ucode */
3072 msleep(10);
3073
3074 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003075 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
3076 if (!iwl3945_grab_nic_access(priv))
3077 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003078 spin_unlock_irqrestore(&priv->lock, flags);
3079
3080 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
3081 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
3082 "disabled by HW switch\n");
3083 return;
3084 }
3085
3086 queue_work(priv->workqueue, &priv->restart);
3087 return;
3088}
3089
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003090void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07003091 u32 decrypt_res, struct ieee80211_rx_status *stats)
3092{
3093 u16 fc =
3094 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
3095
3096 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
3097 return;
3098
3099 if (!(fc & IEEE80211_FCTL_PROTECTED))
3100 return;
3101
3102 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
3103 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
3104 case RX_RES_STATUS_SEC_TYPE_TKIP:
3105 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
3106 RX_RES_STATUS_BAD_ICV_MIC)
3107 stats->flag |= RX_FLAG_MMIC_ERROR;
3108 case RX_RES_STATUS_SEC_TYPE_WEP:
3109 case RX_RES_STATUS_SEC_TYPE_CCMP:
3110 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
3111 RX_RES_STATUS_DECRYPT_OK) {
3112 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
3113 stats->flag |= RX_FLAG_DECRYPTED;
3114 }
3115 break;
3116
3117 default:
3118 break;
3119 }
3120}
3121
Zhu Yib481de92007-09-25 17:54:57 -07003122#define IWL_PACKET_RETRY_TIME HZ
3123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003124int iwl3945_is_duplicate_packet(struct iwl3945_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07003125{
3126 u16 sc = le16_to_cpu(header->seq_ctrl);
3127 u16 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
3128 u16 frag = sc & IEEE80211_SCTL_FRAG;
3129 u16 *last_seq, *last_frag;
3130 unsigned long *last_time;
3131
3132 switch (priv->iw_mode) {
3133 case IEEE80211_IF_TYPE_IBSS:{
3134 struct list_head *p;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003135 struct iwl3945_ibss_seq *entry = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003136 u8 *mac = header->addr2;
3137 int index = mac[5] & (IWL_IBSS_MAC_HASH_SIZE - 1);
3138
3139 __list_for_each(p, &priv->ibss_mac_hash[index]) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003140 entry = list_entry(p, struct iwl3945_ibss_seq, list);
Zhu Yib481de92007-09-25 17:54:57 -07003141 if (!compare_ether_addr(entry->mac, mac))
3142 break;
3143 }
3144 if (p == &priv->ibss_mac_hash[index]) {
3145 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
3146 if (!entry) {
Ian Schrambc434dd2007-10-25 17:15:29 +08003147 IWL_ERROR("Cannot malloc new mac entry\n");
Zhu Yib481de92007-09-25 17:54:57 -07003148 return 0;
3149 }
3150 memcpy(entry->mac, mac, ETH_ALEN);
3151 entry->seq_num = seq;
3152 entry->frag_num = frag;
3153 entry->packet_time = jiffies;
Ian Schrambc434dd2007-10-25 17:15:29 +08003154 list_add(&entry->list, &priv->ibss_mac_hash[index]);
Zhu Yib481de92007-09-25 17:54:57 -07003155 return 0;
3156 }
3157 last_seq = &entry->seq_num;
3158 last_frag = &entry->frag_num;
3159 last_time = &entry->packet_time;
3160 break;
3161 }
3162 case IEEE80211_IF_TYPE_STA:
3163 last_seq = &priv->last_seq_num;
3164 last_frag = &priv->last_frag_num;
3165 last_time = &priv->last_packet_time;
3166 break;
3167 default:
3168 return 0;
3169 }
3170 if ((*last_seq == seq) &&
3171 time_after(*last_time + IWL_PACKET_RETRY_TIME, jiffies)) {
3172 if (*last_frag == frag)
3173 goto drop;
3174 if (*last_frag + 1 != frag)
3175 /* out-of-order fragment */
3176 goto drop;
3177 } else
3178 *last_seq = seq;
3179
3180 *last_frag = frag;
3181 *last_time = jiffies;
3182 return 0;
3183
3184 drop:
3185 return 1;
3186}
3187
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003188#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003189
3190#include "iwl-spectrum.h"
3191
3192#define BEACON_TIME_MASK_LOW 0x00FFFFFF
3193#define BEACON_TIME_MASK_HIGH 0xFF000000
3194#define TIME_UNIT 1024
3195
3196/*
3197 * extended beacon time format
3198 * time in usec will be changed into a 32-bit value in 8:24 format
3199 * the high 1 byte is the beacon counts
3200 * the lower 3 bytes is the time in usec within one beacon interval
3201 */
3202
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003203static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07003204{
3205 u32 quot;
3206 u32 rem;
3207 u32 interval = beacon_interval * 1024;
3208
3209 if (!interval || !usec)
3210 return 0;
3211
3212 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
3213 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
3214
3215 return (quot << 24) + rem;
3216}
3217
3218/* base is usually what we get from ucode with each received frame,
3219 * the same as HW timer counter counting down
3220 */
3221
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003222static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07003223{
3224 u32 base_low = base & BEACON_TIME_MASK_LOW;
3225 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
3226 u32 interval = beacon_interval * TIME_UNIT;
3227 u32 res = (base & BEACON_TIME_MASK_HIGH) +
3228 (addon & BEACON_TIME_MASK_HIGH);
3229
3230 if (base_low > addon_low)
3231 res += base_low - addon_low;
3232 else if (base_low < addon_low) {
3233 res += interval + base_low - addon_low;
3234 res += (1 << 24);
3235 } else
3236 res += (1 << 24);
3237
3238 return cpu_to_le32(res);
3239}
3240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003241static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003242 struct ieee80211_measurement_params *params,
3243 u8 type)
3244{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003245 struct iwl3945_spectrum_cmd spectrum;
3246 struct iwl3945_rx_packet *res;
3247 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07003248 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
3249 .data = (void *)&spectrum,
3250 .meta.flags = CMD_WANT_SKB,
3251 };
3252 u32 add_time = le64_to_cpu(params->start_time);
3253 int rc;
3254 int spectrum_resp_status;
3255 int duration = le16_to_cpu(params->duration);
3256
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003257 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003258 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003259 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07003260 le64_to_cpu(params->start_time) - priv->last_tsf,
3261 le16_to_cpu(priv->rxon_timing.beacon_interval));
3262
3263 memset(&spectrum, 0, sizeof(spectrum));
3264
3265 spectrum.channel_count = cpu_to_le16(1);
3266 spectrum.flags =
3267 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
3268 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
3269 cmd.len = sizeof(spectrum);
3270 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
3271
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003272 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003273 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003274 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07003275 add_time,
3276 le16_to_cpu(priv->rxon_timing.beacon_interval));
3277 else
3278 spectrum.start_time = 0;
3279
3280 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
3281 spectrum.channels[0].channel = params->channel;
3282 spectrum.channels[0].type = type;
3283 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
3284 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
3285 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
3286
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003287 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003288 if (rc)
3289 return rc;
3290
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003291 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003292 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
3293 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
3294 rc = -EIO;
3295 }
3296
3297 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
3298 switch (spectrum_resp_status) {
3299 case 0: /* Command will be handled */
3300 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08003301 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
3302 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07003303 priv->measurement_status &= ~MEASUREMENT_READY;
3304 }
3305 priv->measurement_status |= MEASUREMENT_ACTIVE;
3306 rc = 0;
3307 break;
3308
3309 case 1: /* Command will not be handled */
3310 rc = -EAGAIN;
3311 break;
3312 }
3313
3314 dev_kfree_skb_any(cmd.meta.u.skb);
3315
3316 return rc;
3317}
3318#endif
3319
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003320static void iwl3945_txstatus_to_ieee(struct iwl3945_priv *priv,
3321 struct iwl3945_tx_info *tx_sta)
Zhu Yib481de92007-09-25 17:54:57 -07003322{
3323
3324 tx_sta->status.ack_signal = 0;
3325 tx_sta->status.excessive_retries = 0;
3326 tx_sta->status.queue_length = 0;
3327 tx_sta->status.queue_number = 0;
3328
3329 if (in_interrupt())
3330 ieee80211_tx_status_irqsafe(priv->hw,
3331 tx_sta->skb[0], &(tx_sta->status));
3332 else
3333 ieee80211_tx_status(priv->hw,
3334 tx_sta->skb[0], &(tx_sta->status));
3335
3336 tx_sta->skb[0] = NULL;
3337}
3338
3339/**
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003340 * iwl3945_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd
Zhu Yib481de92007-09-25 17:54:57 -07003341 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003342 * When FW advances 'R' index, all entries between old and new 'R' index
3343 * need to be reclaimed. As result, some free space forms. If there is
3344 * enough free space (> low mark), wake the stack that feeds us.
Zhu Yib481de92007-09-25 17:54:57 -07003345 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003346static int iwl3945_tx_queue_reclaim(struct iwl3945_priv *priv, int txq_id, int index)
Zhu Yib481de92007-09-25 17:54:57 -07003347{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003348 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3349 struct iwl3945_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -07003350 int nfreed = 0;
3351
3352 if ((index >= q->n_bd) || (x2_queue_used(q, index) == 0)) {
3353 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3354 "is out of range [0-%d] %d %d.\n", txq_id,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003355 index, q->n_bd, q->write_ptr, q->read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003356 return 0;
3357 }
3358
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003359 for (index = iwl3945_queue_inc_wrap(index, q->n_bd);
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003360 q->read_ptr != index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003361 q->read_ptr = iwl3945_queue_inc_wrap(q->read_ptr, q->n_bd)) {
Zhu Yib481de92007-09-25 17:54:57 -07003362 if (txq_id != IWL_CMD_QUEUE_NUM) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003363 iwl3945_txstatus_to_ieee(priv,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003364 &(txq->txb[txq->q.read_ptr]));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003365 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07003366 } else if (nfreed > 1) {
3367 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003368 q->write_ptr, q->read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003369 queue_work(priv->workqueue, &priv->restart);
3370 }
3371 nfreed++;
3372 }
3373
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003374 if (iwl3945_queue_space(q) > q->low_mark && (txq_id >= 0) &&
Zhu Yib481de92007-09-25 17:54:57 -07003375 (txq_id != IWL_CMD_QUEUE_NUM) &&
3376 priv->mac80211_registered)
3377 ieee80211_wake_queue(priv->hw, txq_id);
3378
3379
3380 return nfreed;
3381}
3382
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003383static int iwl3945_is_tx_success(u32 status)
Zhu Yib481de92007-09-25 17:54:57 -07003384{
3385 return (status & 0xFF) == 0x1;
3386}
3387
3388/******************************************************************************
3389 *
3390 * Generic RX handler implementations
3391 *
3392 ******************************************************************************/
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003393/**
3394 * iwl3945_rx_reply_tx - Handle Tx response
3395 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003396static void iwl3945_rx_reply_tx(struct iwl3945_priv *priv,
3397 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003398{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003399 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003400 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3401 int txq_id = SEQ_TO_QUEUE(sequence);
3402 int index = SEQ_TO_INDEX(sequence);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003403 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07003404 struct ieee80211_tx_status *tx_status;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003405 struct iwl3945_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
Zhu Yib481de92007-09-25 17:54:57 -07003406 u32 status = le32_to_cpu(tx_resp->status);
3407
3408 if ((index >= txq->q.n_bd) || (x2_queue_used(&txq->q, index) == 0)) {
3409 IWL_ERROR("Read index for DMA queue txq_id (%d) index %d "
3410 "is out of range [0-%d] %d %d\n", txq_id,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003411 index, txq->q.n_bd, txq->q.write_ptr,
3412 txq->q.read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003413 return;
3414 }
3415
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003416 tx_status = &(txq->txb[txq->q.read_ptr].status);
Zhu Yib481de92007-09-25 17:54:57 -07003417
3418 tx_status->retry_count = tx_resp->failure_frame;
3419 tx_status->queue_number = status;
3420 tx_status->queue_length = tx_resp->bt_kill_count;
3421 tx_status->queue_length |= tx_resp->failure_rts;
3422
3423 tx_status->flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003424 iwl3945_is_tx_success(status) ? IEEE80211_TX_STATUS_ACK : 0;
Zhu Yib481de92007-09-25 17:54:57 -07003425
Zhu Yib481de92007-09-25 17:54:57 -07003426 IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) plcp rate %d retries %d\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003427 txq_id, iwl3945_get_tx_fail_reason(status), status,
Zhu Yib481de92007-09-25 17:54:57 -07003428 tx_resp->rate, tx_resp->failure_frame);
3429
3430 IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index);
3431 if (index != -1)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003432 iwl3945_tx_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003433
3434 if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
3435 IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n");
3436}
3437
3438
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003439static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
3440 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003441{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003442 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3443 struct iwl3945_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07003444 struct delayed_work *pwork;
3445
3446 palive = &pkt->u.alive_frame;
3447
3448 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
3449 "0x%01X 0x%01X\n",
3450 palive->is_valid, palive->ver_type,
3451 palive->ver_subtype);
3452
3453 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
3454 IWL_DEBUG_INFO("Initialization Alive received.\n");
3455 memcpy(&priv->card_alive_init,
3456 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003457 sizeof(struct iwl3945_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07003458 pwork = &priv->init_alive_start;
3459 } else {
3460 IWL_DEBUG_INFO("Runtime Alive received.\n");
3461 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003462 sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07003463 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003464 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003465 }
3466
3467 /* We delay the ALIVE response by 5ms to
3468 * give the HW RF Kill time to activate... */
3469 if (palive->is_valid == UCODE_VALID_OK)
3470 queue_delayed_work(priv->workqueue, pwork,
3471 msecs_to_jiffies(5));
3472 else
3473 IWL_WARNING("uCode did not respond OK.\n");
3474}
3475
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003476static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
3477 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003478{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003479 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003480
3481 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
3482 return;
3483}
3484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003485static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
3486 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003487{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003488 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003489
3490 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3491 "seq 0x%04X ser 0x%08X\n",
3492 le32_to_cpu(pkt->u.err_resp.error_type),
3493 get_cmd_string(pkt->u.err_resp.cmd_id),
3494 pkt->u.err_resp.cmd_id,
3495 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3496 le32_to_cpu(pkt->u.err_resp.error_info));
3497}
3498
3499#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3500
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003501static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003502{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003503 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3504 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
3505 struct iwl3945_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003506 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3507 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3508 rxon->channel = csa->channel;
3509 priv->staging_rxon.channel = csa->channel;
3510}
3511
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003512static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3513 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003514{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003515#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003516 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3517 struct iwl3945_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003518
3519 if (!report->state) {
3520 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3521 "Spectrum Measure Notification: Start\n");
3522 return;
3523 }
3524
3525 memcpy(&priv->measure_report, report, sizeof(*report));
3526 priv->measurement_status |= MEASUREMENT_READY;
3527#endif
3528}
3529
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003530static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3531 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003532{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003533#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003534 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3535 struct iwl3945_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003536 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3537 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3538#endif
3539}
3540
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003541static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3542 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003543{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003544 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003545 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3546 "notification for %s:\n",
3547 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003548 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003549}
3550
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003551static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003552{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003553 struct iwl3945_priv *priv =
3554 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003555 struct sk_buff *beacon;
3556
3557 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berg32bfd352007-12-19 01:31:26 +01003558 beacon = ieee80211_beacon_get(priv->hw, priv->vif, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003559
3560 if (!beacon) {
3561 IWL_ERROR("update beacon failed\n");
3562 return;
3563 }
3564
3565 mutex_lock(&priv->mutex);
3566 /* new beacon skb is allocated every time; dispose previous.*/
3567 if (priv->ibss_beacon)
3568 dev_kfree_skb(priv->ibss_beacon);
3569
3570 priv->ibss_beacon = beacon;
3571 mutex_unlock(&priv->mutex);
3572
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003573 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003574}
3575
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003576static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3577 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003578{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003579#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003580 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3581 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003582 u8 rate = beacon->beacon_notify_hdr.rate;
3583
3584 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3585 "tsf %d %d rate %d\n",
3586 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3587 beacon->beacon_notify_hdr.failure_frame,
3588 le32_to_cpu(beacon->ibss_mgr_status),
3589 le32_to_cpu(beacon->high_tsf),
3590 le32_to_cpu(beacon->low_tsf), rate);
3591#endif
3592
3593 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
3594 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3595 queue_work(priv->workqueue, &priv->beacon_update);
3596}
3597
3598/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003599static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3600 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003601{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003602#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003603 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3604 struct iwl3945_scanreq_notification *notif =
3605 (struct iwl3945_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003606
3607 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3608#endif
3609}
3610
3611/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003612static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3613 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003614{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003615 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3616 struct iwl3945_scanstart_notification *notif =
3617 (struct iwl3945_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003618 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3619 IWL_DEBUG_SCAN("Scan start: "
3620 "%d [802.11%s] "
3621 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3622 notif->channel,
3623 notif->band ? "bg" : "a",
3624 notif->tsf_high,
3625 notif->tsf_low, notif->status, notif->beacon_timer);
3626}
3627
3628/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003629static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3630 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003631{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003632 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3633 struct iwl3945_scanresults_notification *notif =
3634 (struct iwl3945_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003635
3636 IWL_DEBUG_SCAN("Scan ch.res: "
3637 "%d [802.11%s] "
3638 "(TSF: 0x%08X:%08X) - %d "
3639 "elapsed=%lu usec (%dms since last)\n",
3640 notif->channel,
3641 notif->band ? "bg" : "a",
3642 le32_to_cpu(notif->tsf_high),
3643 le32_to_cpu(notif->tsf_low),
3644 le32_to_cpu(notif->statistics[0]),
3645 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3646 jiffies_to_msecs(elapsed_jiffies
3647 (priv->last_scan_jiffies, jiffies)));
3648
3649 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003650 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003651}
3652
3653/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003654static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3655 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003656{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003657 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3658 struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003659
3660 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3661 scan_notif->scanned_channels,
3662 scan_notif->tsf_low,
3663 scan_notif->tsf_high, scan_notif->status);
3664
3665 /* The HW is no longer scanning */
3666 clear_bit(STATUS_SCAN_HW, &priv->status);
3667
3668 /* The scan completion notification came in, so kill that timer... */
3669 cancel_delayed_work(&priv->scan_check);
3670
3671 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
3672 (priv->scan_bands == 2) ? "2.4" : "5.2",
3673 jiffies_to_msecs(elapsed_jiffies
3674 (priv->scan_pass_start, jiffies)));
3675
3676 /* Remove this scanned band from the list
3677 * of pending bands to scan */
3678 priv->scan_bands--;
3679
3680 /* If a request to abort was given, or the scan did not succeed
3681 * then we reset the scan state machine and terminate,
3682 * re-queuing another scan if one has been requested */
3683 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3684 IWL_DEBUG_INFO("Aborted scan completed.\n");
3685 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3686 } else {
3687 /* If there are more bands on this scan pass reschedule */
3688 if (priv->scan_bands > 0)
3689 goto reschedule;
3690 }
3691
3692 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003693 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003694 IWL_DEBUG_INFO("Setting scan to off\n");
3695
3696 clear_bit(STATUS_SCANNING, &priv->status);
3697
3698 IWL_DEBUG_INFO("Scan took %dms\n",
3699 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3700
3701 queue_work(priv->workqueue, &priv->scan_completed);
3702
3703 return;
3704
3705reschedule:
3706 priv->scan_pass_start = jiffies;
3707 queue_work(priv->workqueue, &priv->request_scan);
3708}
3709
3710/* Handle notification from uCode that card's power state is changing
3711 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003712static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3713 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003714{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003715 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003716 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3717 unsigned long status = priv->status;
3718
3719 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3720 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3721 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3722
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003723 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003724 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3725
3726 if (flags & HW_CARD_DISABLED)
3727 set_bit(STATUS_RF_KILL_HW, &priv->status);
3728 else
3729 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3730
3731
3732 if (flags & SW_CARD_DISABLED)
3733 set_bit(STATUS_RF_KILL_SW, &priv->status);
3734 else
3735 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3736
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003737 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003738
3739 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3740 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3741 (test_bit(STATUS_RF_KILL_SW, &status) !=
3742 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3743 queue_work(priv->workqueue, &priv->rf_kill);
3744 else
3745 wake_up_interruptible(&priv->wait_command_queue);
3746}
3747
3748/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003749 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003750 *
3751 * Setup the RX handlers for each of the reply types sent from the uCode
3752 * to the host.
3753 *
3754 * This function chains into the hardware specific files for them to setup
3755 * any hardware specific handlers as well.
3756 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003757static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003758{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003759 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3760 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3761 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3762 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003763 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003764 iwl3945_rx_spectrum_measure_notif;
3765 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003766 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003767 iwl3945_rx_pm_debug_statistics_notif;
3768 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003769
Ben Cahill9fbab512007-11-29 11:09:47 +08003770 /*
3771 * The same handler is used for both the REPLY to a discrete
3772 * statistics request from the host as well as for the periodic
3773 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003774 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003775 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3776 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003777
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003778 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3779 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003780 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003781 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003782 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003783 iwl3945_rx_scan_complete_notif;
3784 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
3785 priv->rx_handlers[REPLY_TX] = iwl3945_rx_reply_tx;
Zhu Yib481de92007-09-25 17:54:57 -07003786
Ben Cahill9fbab512007-11-29 11:09:47 +08003787 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003788 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003789}
3790
3791/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003792 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003793 * @rxb: Rx buffer to reclaim
3794 *
3795 * If an Rx buffer has an async callback associated with it the callback
3796 * will be executed. The attached skb (if present) will only be freed
3797 * if the callback returns 1
3798 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003799static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3800 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003801{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003802 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003803 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3804 int txq_id = SEQ_TO_QUEUE(sequence);
3805 int index = SEQ_TO_INDEX(sequence);
3806 int huge = sequence & SEQ_HUGE_FRAME;
3807 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003808 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003809
3810 /* If a Tx command is being handled and it isn't in the actual
3811 * command queue then there a command routing bug has been introduced
3812 * in the queue management code. */
3813 if (txq_id != IWL_CMD_QUEUE_NUM)
3814 IWL_ERROR("Error wrong command queue %d command id 0x%X\n",
3815 txq_id, pkt->hdr.cmd);
3816 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3817
3818 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3819 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3820
3821 /* Input error checking is done when commands are added to queue. */
3822 if (cmd->meta.flags & CMD_WANT_SKB) {
3823 cmd->meta.source->u.skb = rxb->skb;
3824 rxb->skb = NULL;
3825 } else if (cmd->meta.u.callback &&
3826 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3827 rxb->skb = NULL;
3828
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003829 iwl3945_tx_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003830
3831 if (!(cmd->meta.flags & CMD_ASYNC)) {
3832 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3833 wake_up_interruptible(&priv->wait_command_queue);
3834 }
3835}
3836
3837/************************** RX-FUNCTIONS ****************************/
3838/*
3839 * Rx theory of operation
3840 *
3841 * The host allocates 32 DMA target addresses and passes the host address
3842 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3843 * 0 to 31
3844 *
3845 * Rx Queue Indexes
3846 * The host/firmware share two index registers for managing the Rx buffers.
3847 *
3848 * The READ index maps to the first position that the firmware may be writing
3849 * to -- the driver can read up to (but not including) this position and get
3850 * good data.
3851 * The READ index is managed by the firmware once the card is enabled.
3852 *
3853 * The WRITE index maps to the last position the driver has read from -- the
3854 * position preceding WRITE is the last slot the firmware can place a packet.
3855 *
3856 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3857 * WRITE = READ.
3858 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003859 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003860 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3861 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003862 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003863 * and fire the RX interrupt. The driver can then query the READ index and
3864 * process as many packets as possible, moving the WRITE index forward as it
3865 * resets the Rx queue buffers with new memory.
3866 *
3867 * The management in the driver is as follows:
3868 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3869 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003870 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003871 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003872 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3873 * 'processed' and 'read' driver indexes as well)
3874 * + A received packet is processed and handed to the kernel network stack,
3875 * detached from the iwl->rxq. The driver 'processed' index is updated.
3876 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3877 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3878 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3879 * were enough free buffers and RX_STALLED is set it is cleared.
3880 *
3881 *
3882 * Driver sequence:
3883 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003884 * iwl3945_rx_queue_alloc() Allocates rx_free
3885 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003886 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003887 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003888 * queue, updates firmware pointers, and updates
3889 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003890 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003891 *
3892 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003893 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003894 * READ INDEX, detaching the SKB from the pool.
3895 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003896 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003897 * slots.
3898 * ...
3899 *
3900 */
3901
3902/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003903 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003904 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003905static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003906{
3907 int s = q->read - q->write;
3908 if (s <= 0)
3909 s += RX_QUEUE_SIZE;
3910 /* keep some buffer to not confuse full and empty queue */
3911 s -= 2;
3912 if (s < 0)
3913 s = 0;
3914 return s;
3915}
3916
3917/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003918 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003919 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003920int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003921{
3922 u32 reg = 0;
3923 int rc = 0;
3924 unsigned long flags;
3925
3926 spin_lock_irqsave(&q->lock, flags);
3927
3928 if (q->need_update == 0)
3929 goto exit_unlock;
3930
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003931 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003932 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003933 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003934
3935 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003936 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003937 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3938 goto exit_unlock;
3939 }
3940
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003941 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003942 if (rc)
3943 goto exit_unlock;
3944
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003945 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003946 iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003947 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003948 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003949
3950 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003951 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003952 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003953 iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003954
3955
3956 q->need_update = 0;
3957
3958 exit_unlock:
3959 spin_unlock_irqrestore(&q->lock, flags);
3960 return rc;
3961}
3962
3963/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003964 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003965 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003966static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003967 dma_addr_t dma_addr)
3968{
3969 return cpu_to_le32((u32)dma_addr);
3970}
3971
3972/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003973 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003974 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003975 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003976 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003977 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003978 *
3979 * This moves the 'write' index forward to catch up with 'processed', and
3980 * also updates the memory address in the firmware to reference the new
3981 * target buffer.
3982 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003983static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003984{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003985 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003986 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003987 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003988 unsigned long flags;
3989 int write, rc;
3990
3991 spin_lock_irqsave(&rxq->lock, flags);
3992 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003993 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003994 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003995 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003996 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003997 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003998
3999 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004000 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07004001 rxq->queue[rxq->write] = rxb;
4002 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
4003 rxq->free_count--;
4004 }
4005 spin_unlock_irqrestore(&rxq->lock, flags);
4006 /* If the pre-allocated buffer pool is dropping low, schedule to
4007 * refill it */
4008 if (rxq->free_count <= RX_LOW_WATERMARK)
4009 queue_work(priv->workqueue, &priv->rx_replenish);
4010
4011
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004012 /* If we've added more space for the firmware to place data, tell it.
4013 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07004014 if ((write != (rxq->write & ~0x7))
4015 || (abs(rxq->write - rxq->read) > 7)) {
4016 spin_lock_irqsave(&rxq->lock, flags);
4017 rxq->need_update = 1;
4018 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004019 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07004020 if (rc)
4021 return rc;
4022 }
4023
4024 return 0;
4025}
4026
4027/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004028 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07004029 *
4030 * When moving to rx_free an SKB is allocated for the slot.
4031 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004032 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08004033 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07004034 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004035static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004036{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004037 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07004038 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004039 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07004040 unsigned long flags;
4041 spin_lock_irqsave(&rxq->lock, flags);
4042 while (!list_empty(&rxq->rx_used)) {
4043 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004044 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004045
4046 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07004047 rxb->skb =
4048 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
4049 if (!rxb->skb) {
4050 if (net_ratelimit())
4051 printk(KERN_CRIT DRV_NAME
4052 ": Can not allocate SKB buffers\n");
4053 /* We don't reschedule replenish work here -- we will
4054 * call the restock method and if it still needs
4055 * more buffers it will schedule replenish */
4056 break;
4057 }
Zhu Yi12342c42007-12-20 11:27:32 +08004058
4059 /* If radiotap head is required, reserve some headroom here.
4060 * The physical head count is a variable rx_stats->phy_count.
4061 * We reserve 4 bytes here. Plus these extra bytes, the
4062 * headroom of the physical head should be enough for the
4063 * radiotap head that iwl3945 supported. See iwl3945_rt.
4064 */
4065 skb_reserve(rxb->skb, 4);
4066
Zhu Yib481de92007-09-25 17:54:57 -07004067 priv->alloc_rxb_skb++;
4068 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004069
4070 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07004071 rxb->dma_addr =
4072 pci_map_single(priv->pci_dev, rxb->skb->data,
4073 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4074 list_add_tail(&rxb->list, &rxq->rx_free);
4075 rxq->free_count++;
4076 }
4077 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004078}
4079
4080/*
4081 * this should be called while priv->lock is locked
4082 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02004083static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004084{
4085 struct iwl3945_priv *priv = data;
4086
4087 iwl3945_rx_allocate(priv);
4088 iwl3945_rx_queue_restock(priv);
4089}
4090
4091
4092void iwl3945_rx_replenish(void *data)
4093{
4094 struct iwl3945_priv *priv = data;
4095 unsigned long flags;
4096
4097 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004098
4099 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004100 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004101 spin_unlock_irqrestore(&priv->lock, flags);
4102}
4103
4104/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08004105 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07004106 * This free routine walks the list of POOL entries and if SKB is set to
4107 * non NULL it is unmapped and freed
4108 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004109static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07004110{
4111 int i;
4112 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4113 if (rxq->pool[i].skb != NULL) {
4114 pci_unmap_single(priv->pci_dev,
4115 rxq->pool[i].dma_addr,
4116 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4117 dev_kfree_skb(rxq->pool[i].skb);
4118 }
4119 }
4120
4121 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
4122 rxq->dma_addr);
4123 rxq->bd = NULL;
4124}
4125
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004126int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004127{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004128 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07004129 struct pci_dev *dev = priv->pci_dev;
4130 int i;
4131
4132 spin_lock_init(&rxq->lock);
4133 INIT_LIST_HEAD(&rxq->rx_free);
4134 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004135
4136 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07004137 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
4138 if (!rxq->bd)
4139 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004140
Zhu Yib481de92007-09-25 17:54:57 -07004141 /* Fill the rx_used queue with _all_ of the Rx buffers */
4142 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
4143 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004144
Zhu Yib481de92007-09-25 17:54:57 -07004145 /* Set us so that we have processed and used all buffers, but have
4146 * not restocked the Rx queue with fresh buffers */
4147 rxq->read = rxq->write = 0;
4148 rxq->free_count = 0;
4149 rxq->need_update = 0;
4150 return 0;
4151}
4152
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004153void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07004154{
4155 unsigned long flags;
4156 int i;
4157 spin_lock_irqsave(&rxq->lock, flags);
4158 INIT_LIST_HEAD(&rxq->rx_free);
4159 INIT_LIST_HEAD(&rxq->rx_used);
4160 /* Fill the rx_used queue with _all_ of the Rx buffers */
4161 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
4162 /* In the reset function, these buffers may have been allocated
4163 * to an SKB, so we need to unmap and free potential storage */
4164 if (rxq->pool[i].skb != NULL) {
4165 pci_unmap_single(priv->pci_dev,
4166 rxq->pool[i].dma_addr,
4167 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4168 priv->alloc_rxb_skb--;
4169 dev_kfree_skb(rxq->pool[i].skb);
4170 rxq->pool[i].skb = NULL;
4171 }
4172 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4173 }
4174
4175 /* Set us so that we have processed and used all buffers, but have
4176 * not restocked the Rx queue with fresh buffers */
4177 rxq->read = rxq->write = 0;
4178 rxq->free_count = 0;
4179 spin_unlock_irqrestore(&rxq->lock, flags);
4180}
4181
4182/* Convert linear signal-to-noise ratio into dB */
4183static u8 ratio2dB[100] = {
4184/* 0 1 2 3 4 5 6 7 8 9 */
4185 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
4186 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
4187 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
4188 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
4189 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
4190 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
4191 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
4192 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
4193 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
4194 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
4195};
4196
4197/* Calculates a relative dB value from a ratio of linear
4198 * (i.e. not dB) signal levels.
4199 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004200int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07004201{
Adrian Bunk221c80c2008-02-02 23:19:01 +02004202 /* 1000:1 or higher just report as 60 dB */
4203 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07004204 return 60;
4205
Adrian Bunk221c80c2008-02-02 23:19:01 +02004206 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07004207 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02004208 if (sig_ratio >= 100)
Zhu Yib481de92007-09-25 17:54:57 -07004209 return (20 + (int)ratio2dB[sig_ratio/10]);
4210
4211 /* We shouldn't see this */
4212 if (sig_ratio < 1)
4213 return 0;
4214
4215 /* Use table for ratios 1:1 - 99:1 */
4216 return (int)ratio2dB[sig_ratio];
4217}
4218
4219#define PERFECT_RSSI (-20) /* dBm */
4220#define WORST_RSSI (-95) /* dBm */
4221#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
4222
4223/* Calculate an indication of rx signal quality (a percentage, not dBm!).
4224 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
4225 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004226int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07004227{
4228 int sig_qual;
4229 int degradation = PERFECT_RSSI - rssi_dbm;
4230
4231 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
4232 * as indicator; formula is (signal dbm - noise dbm).
4233 * SNR at or above 40 is a great signal (100%).
4234 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
4235 * Weakest usable signal is usually 10 - 15 dB SNR. */
4236 if (noise_dbm) {
4237 if (rssi_dbm - noise_dbm >= 40)
4238 return 100;
4239 else if (rssi_dbm < noise_dbm)
4240 return 0;
4241 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
4242
4243 /* Else use just the signal level.
4244 * This formula is a least squares fit of data points collected and
4245 * compared with a reference system that had a percentage (%) display
4246 * for signal quality. */
4247 } else
4248 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
4249 (15 * RSSI_RANGE + 62 * degradation)) /
4250 (RSSI_RANGE * RSSI_RANGE);
4251
4252 if (sig_qual > 100)
4253 sig_qual = 100;
4254 else if (sig_qual < 1)
4255 sig_qual = 0;
4256
4257 return sig_qual;
4258}
4259
4260/**
Ben Cahill9fbab512007-11-29 11:09:47 +08004261 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07004262 *
4263 * Uses the priv->rx_handlers callback function array to invoke
4264 * the appropriate handlers, including command responses,
4265 * frame-received notifications, and other notifications.
4266 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004267static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004268{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004269 struct iwl3945_rx_mem_buffer *rxb;
4270 struct iwl3945_rx_packet *pkt;
4271 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07004272 u32 r, i;
4273 int reclaim;
4274 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004275 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08004276 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07004277
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004278 /* uCode's read index (stored in shared DRAM) indicates the last Rx
4279 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004280 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004281 i = rxq->read;
4282
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004283 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
4284 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07004285 /* Rx interrupt, but nothing sent from uCode */
4286 if (i == r)
4287 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
4288
4289 while (i != r) {
4290 rxb = rxq->queue[i];
4291
Ben Cahill9fbab512007-11-29 11:09:47 +08004292 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07004293 * then a bug has been introduced in the queue refilling
4294 * routines -- catch it here */
4295 BUG_ON(rxb == NULL);
4296
4297 rxq->queue[i] = NULL;
4298
4299 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
4300 IWL_RX_BUF_SIZE,
4301 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004302 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07004303
4304 /* Reclaim a command buffer only if this packet is a response
4305 * to a (driver-originated) command.
4306 * If the packet (e.g. Rx frame) originated from uCode,
4307 * there is no command buffer to reclaim.
4308 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
4309 * but apparently a few don't get set; catch them here. */
4310 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
4311 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
4312 (pkt->hdr.cmd != REPLY_TX);
4313
4314 /* Based on type of command response or notification,
4315 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004316 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07004317 if (priv->rx_handlers[pkt->hdr.cmd]) {
4318 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
4319 "r = %d, i = %d, %s, 0x%02x\n", r, i,
4320 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
4321 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
4322 } else {
4323 /* No handling needed */
4324 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
4325 "r %d i %d No handler needed for %s, 0x%02x\n",
4326 r, i, get_cmd_string(pkt->hdr.cmd),
4327 pkt->hdr.cmd);
4328 }
4329
4330 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004331 /* Invoke any callbacks, transfer the skb to caller, and
4332 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07004333 * as we reclaim the driver command queue */
4334 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004335 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07004336 else
4337 IWL_WARNING("Claim null rxb?\n");
4338 }
4339
4340 /* For now we just don't re-use anything. We can tweak this
4341 * later to try and re-use notification packets and SKBs that
4342 * fail to Rx correctly */
4343 if (rxb->skb != NULL) {
4344 priv->alloc_rxb_skb--;
4345 dev_kfree_skb_any(rxb->skb);
4346 rxb->skb = NULL;
4347 }
4348
4349 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
4350 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
4351 spin_lock_irqsave(&rxq->lock, flags);
4352 list_add_tail(&rxb->list, &priv->rxq.rx_used);
4353 spin_unlock_irqrestore(&rxq->lock, flags);
4354 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004355 /* If there are a lot of unused frames,
4356 * restock the Rx queue so ucode won't assert. */
4357 if (fill_rx) {
4358 count++;
4359 if (count >= 8) {
4360 priv->rxq.read = i;
4361 __iwl3945_rx_replenish(priv);
4362 count = 0;
4363 }
4364 }
Zhu Yib481de92007-09-25 17:54:57 -07004365 }
4366
4367 /* Backtrack one entry */
4368 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004369 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004370}
4371
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004372/**
4373 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
4374 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004375static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
4376 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07004377{
4378 u32 reg = 0;
4379 int rc = 0;
4380 int txq_id = txq->q.id;
4381
4382 if (txq->need_update == 0)
4383 return rc;
4384
4385 /* if we're trying to save power */
4386 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
4387 /* wake up nic if it's powered down ...
4388 * uCode will wake up, and interrupt us again, so next
4389 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004390 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07004391
4392 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
4393 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004394 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07004395 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
4396 return rc;
4397 }
4398
4399 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004400 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004401 if (rc)
4402 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004403 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08004404 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004405 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004406
4407 /* else not in power-save mode, uCode will never sleep when we're
4408 * trying to tx (during RFKILL, we're not trying to tx). */
4409 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004410 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08004411 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07004412
4413 txq->need_update = 0;
4414
4415 return rc;
4416}
4417
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004418#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004419static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07004420{
Joe Perches0795af52007-10-03 17:59:30 -07004421 DECLARE_MAC_BUF(mac);
4422
Zhu Yib481de92007-09-25 17:54:57 -07004423 IWL_DEBUG_RADIO("RX CONFIG:\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004424 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07004425 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
4426 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
4427 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
4428 le32_to_cpu(rxon->filter_flags));
4429 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
4430 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
4431 rxon->ofdm_basic_rates);
4432 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Joe Perches0795af52007-10-03 17:59:30 -07004433 IWL_DEBUG_RADIO("u8[6] node_addr: %s\n",
4434 print_mac(mac, rxon->node_addr));
4435 IWL_DEBUG_RADIO("u8[6] bssid_addr: %s\n",
4436 print_mac(mac, rxon->bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07004437 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
4438}
4439#endif
4440
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004441static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004442{
4443 IWL_DEBUG_ISR("Enabling interrupts\n");
4444 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004445 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004446}
4447
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004448static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004449{
4450 clear_bit(STATUS_INT_ENABLED, &priv->status);
4451
4452 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004453 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004454
4455 /* acknowledge/clear/reset any interrupts still pending
4456 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004457 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4458 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004459 IWL_DEBUG_ISR("Disabled interrupts\n");
4460}
4461
4462static const char *desc_lookup(int i)
4463{
4464 switch (i) {
4465 case 1:
4466 return "FAIL";
4467 case 2:
4468 return "BAD_PARAM";
4469 case 3:
4470 return "BAD_CHECKSUM";
4471 case 4:
4472 return "NMI_INTERRUPT";
4473 case 5:
4474 return "SYSASSERT";
4475 case 6:
4476 return "FATAL_ERROR";
4477 }
4478
4479 return "UNKNOWN";
4480}
4481
4482#define ERROR_START_OFFSET (1 * sizeof(u32))
4483#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004485static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004486{
4487 u32 i;
4488 u32 desc, time, count, base, data1;
4489 u32 blink1, blink2, ilink1, ilink2;
4490 int rc;
4491
4492 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4493
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004494 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004495 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4496 return;
4497 }
4498
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004499 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004500 if (rc) {
4501 IWL_WARNING("Can not read from adapter at this time.\n");
4502 return;
4503 }
4504
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004505 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004506
4507 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4508 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004509 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004510 }
4511
4512 IWL_ERROR("Desc Time asrtPC blink2 "
4513 "ilink1 nmiPC Line\n");
4514 for (i = ERROR_START_OFFSET;
4515 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4516 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004517 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004518 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004519 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004520 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004521 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004522 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004523 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004524 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004525 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004526 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004527 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004528 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004529 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004530
4531 IWL_ERROR
4532 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4533 desc_lookup(desc), desc, time, blink1, blink2,
4534 ilink1, ilink2, data1);
4535 }
4536
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004537 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004538
4539}
4540
Ben Cahillf58177b2007-11-29 11:09:43 +08004541#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004542
4543/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004544 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004545 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004546 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004547 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004548static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004549 u32 num_events, u32 mode)
4550{
4551 u32 i;
4552 u32 base; /* SRAM byte address of event log header */
4553 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4554 u32 ptr; /* SRAM byte address of log data */
4555 u32 ev, time, data; /* event log data */
4556
4557 if (num_events == 0)
4558 return;
4559
4560 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4561
4562 if (mode == 0)
4563 event_size = 2 * sizeof(u32);
4564 else
4565 event_size = 3 * sizeof(u32);
4566
4567 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4568
4569 /* "time" is actually "data" for mode 0 (no timestamp).
4570 * place event id # at far right for easier visual parsing. */
4571 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004572 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004573 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004574 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004575 ptr += sizeof(u32);
4576 if (mode == 0)
4577 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4578 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004579 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004580 ptr += sizeof(u32);
4581 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4582 }
4583 }
4584}
4585
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004586static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004587{
4588 int rc;
4589 u32 base; /* SRAM byte address of event log header */
4590 u32 capacity; /* event log capacity in # entries */
4591 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4592 u32 num_wraps; /* # times uCode wrapped to top of log */
4593 u32 next_entry; /* index of next entry to be written by uCode */
4594 u32 size; /* # entries that we'll print */
4595
4596 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004597 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004598 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4599 return;
4600 }
4601
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004602 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004603 if (rc) {
4604 IWL_WARNING("Can not read from adapter at this time.\n");
4605 return;
4606 }
4607
4608 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004609 capacity = iwl3945_read_targ_mem(priv, base);
4610 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4611 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4612 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004613
4614 size = num_wraps ? capacity : next_entry;
4615
4616 /* bail out if nothing in log */
4617 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004618 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004619 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004620 return;
4621 }
4622
Zhu Yi583fab32007-09-27 11:27:30 +08004623 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004624 size, num_wraps);
4625
4626 /* if uCode has wrapped back to top of log, start at the oldest entry,
4627 * i.e the next one that uCode would fill. */
4628 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004629 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004630 capacity - next_entry, mode);
4631
4632 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004633 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004634
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004635 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004636}
4637
4638/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004639 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004640 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004641static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004642{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004643 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004644 set_bit(STATUS_FW_ERROR, &priv->status);
4645
4646 /* Cancel currently queued command. */
4647 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4648
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004649#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004650 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4651 iwl3945_dump_nic_error_log(priv);
4652 iwl3945_dump_nic_event_log(priv);
4653 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004654 }
4655#endif
4656
4657 wake_up_interruptible(&priv->wait_command_queue);
4658
4659 /* Keep the restart process from trying to send host
4660 * commands by clearing the INIT status bit */
4661 clear_bit(STATUS_READY, &priv->status);
4662
4663 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4664 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4665 "Restarting adapter due to uCode error.\n");
4666
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004667 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004668 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4669 sizeof(priv->recovery_rxon));
4670 priv->error_recovering = 1;
4671 }
4672 queue_work(priv->workqueue, &priv->restart);
4673 }
4674}
4675
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004676static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004677{
4678 unsigned long flags;
4679
4680 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4681 sizeof(priv->staging_rxon));
4682 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004683 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004684
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004685 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004686
4687 spin_lock_irqsave(&priv->lock, flags);
4688 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4689 priv->error_recovering = 0;
4690 spin_unlock_irqrestore(&priv->lock, flags);
4691}
4692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004693static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004694{
4695 u32 inta, handled = 0;
4696 u32 inta_fh;
4697 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004698#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004699 u32 inta_mask;
4700#endif
4701
4702 spin_lock_irqsave(&priv->lock, flags);
4703
4704 /* Ack/clear/reset pending uCode interrupts.
4705 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4706 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004707 inta = iwl3945_read32(priv, CSR_INT);
4708 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004709
4710 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4711 * Any new interrupts that happen after this, either while we're
4712 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004713 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4714 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004715
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004716#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004717 if (iwl3945_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004718 /* just for debug */
4719 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004720 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4721 inta, inta_mask, inta_fh);
4722 }
4723#endif
4724
4725 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4726 * atomic, make sure that inta covers all the interrupts that
4727 * we've discovered, even if FH interrupt came in just after
4728 * reading CSR_INT. */
4729 if (inta_fh & CSR_FH_INT_RX_MASK)
4730 inta |= CSR_INT_BIT_FH_RX;
4731 if (inta_fh & CSR_FH_INT_TX_MASK)
4732 inta |= CSR_INT_BIT_FH_TX;
4733
4734 /* Now service all interrupt bits discovered above. */
4735 if (inta & CSR_INT_BIT_HW_ERR) {
4736 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4737
4738 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004739 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004740
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004741 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004742
4743 handled |= CSR_INT_BIT_HW_ERR;
4744
4745 spin_unlock_irqrestore(&priv->lock, flags);
4746
4747 return;
4748 }
4749
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004750#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004751 if (iwl3945_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004752 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004753 if (inta & CSR_INT_BIT_SCD)
4754 IWL_DEBUG_ISR("Scheduler finished to transmit "
4755 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004756
4757 /* Alive notification via Rx interrupt will do the real work */
4758 if (inta & CSR_INT_BIT_ALIVE)
4759 IWL_DEBUG_ISR("Alive interrupt\n");
4760 }
4761#endif
4762 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004763 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004764
4765 /* HW RF KILL switch toggled (4965 only) */
4766 if (inta & CSR_INT_BIT_RF_KILL) {
4767 int hw_rf_kill = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004768 if (!(iwl3945_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07004769 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
4770 hw_rf_kill = 1;
4771
4772 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL | IWL_DL_ISR,
4773 "RF_KILL bit toggled to %s.\n",
4774 hw_rf_kill ? "disable radio":"enable radio");
4775
4776 /* Queue restart only if RF_KILL switch was set to "kill"
4777 * when we loaded driver, and is now set to "enable".
4778 * After we're Alive, RF_KILL gets handled by
Reinette Chatre32304552008-02-15 14:34:37 -08004779 * iwl3945_rx_card_state_notif() */
Zhu Yi53e49092007-12-06 16:08:44 +08004780 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status)) {
4781 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07004782 queue_work(priv->workqueue, &priv->restart);
Zhu Yi53e49092007-12-06 16:08:44 +08004783 }
Zhu Yib481de92007-09-25 17:54:57 -07004784
4785 handled |= CSR_INT_BIT_RF_KILL;
4786 }
4787
4788 /* Chip got too hot and stopped itself (4965 only) */
4789 if (inta & CSR_INT_BIT_CT_KILL) {
4790 IWL_ERROR("Microcode CT kill error detected.\n");
4791 handled |= CSR_INT_BIT_CT_KILL;
4792 }
4793
4794 /* Error detected by uCode */
4795 if (inta & CSR_INT_BIT_SW_ERR) {
4796 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4797 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004798 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004799 handled |= CSR_INT_BIT_SW_ERR;
4800 }
4801
4802 /* uCode wakes up after power-down sleep */
4803 if (inta & CSR_INT_BIT_WAKEUP) {
4804 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004805 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4806 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4807 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4808 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4809 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4810 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4811 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004812
4813 handled |= CSR_INT_BIT_WAKEUP;
4814 }
4815
4816 /* All uCode command responses, including Tx command responses,
4817 * Rx "responses" (frame-received notification), and other
4818 * notifications from uCode come through here*/
4819 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004820 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004821 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4822 }
4823
4824 if (inta & CSR_INT_BIT_FH_TX) {
4825 IWL_DEBUG_ISR("Tx interrupt\n");
4826
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004827 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4828 if (!iwl3945_grab_nic_access(priv)) {
4829 iwl3945_write_direct32(priv,
Zhu Yib481de92007-09-25 17:54:57 -07004830 FH_TCSR_CREDIT
4831 (ALM_FH_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004832 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004833 }
4834 handled |= CSR_INT_BIT_FH_TX;
4835 }
4836
4837 if (inta & ~handled)
4838 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4839
4840 if (inta & ~CSR_INI_SET_MASK) {
4841 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4842 inta & ~CSR_INI_SET_MASK);
4843 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4844 }
4845
4846 /* Re-enable all interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004847 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004848
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004849#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004850 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4851 inta = iwl3945_read32(priv, CSR_INT);
4852 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4853 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004854 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4855 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4856 }
4857#endif
4858 spin_unlock_irqrestore(&priv->lock, flags);
4859}
4860
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004861static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004862{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004863 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004864 u32 inta, inta_mask;
4865 u32 inta_fh;
4866 if (!priv)
4867 return IRQ_NONE;
4868
4869 spin_lock(&priv->lock);
4870
4871 /* Disable (but don't clear!) interrupts here to avoid
4872 * back-to-back ISRs and sporadic interrupts from our NIC.
4873 * If we have something to service, the tasklet will re-enable ints.
4874 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004875 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4876 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004877
4878 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004879 inta = iwl3945_read32(priv, CSR_INT);
4880 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004881
4882 /* Ignore interrupt if there's nothing in NIC to service.
4883 * This may be due to IRQ shared with another device,
4884 * or due to sporadic interrupts thrown from our NIC. */
4885 if (!inta && !inta_fh) {
4886 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4887 goto none;
4888 }
4889
4890 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4891 /* Hardware disappeared */
4892 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004893 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004894 }
4895
4896 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4897 inta, inta_mask, inta_fh);
4898
Joonwoo Park25c03d82008-01-23 10:15:20 -08004899 inta &= ~CSR_INT_BIT_SCD;
4900
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004901 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004902 if (likely(inta || inta_fh))
4903 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004904unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004905 spin_unlock(&priv->lock);
4906
4907 return IRQ_HANDLED;
4908
4909 none:
4910 /* re-enable interrupts here since we don't have anything to service. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004911 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004912 spin_unlock(&priv->lock);
4913 return IRQ_NONE;
4914}
4915
4916/************************** EEPROM BANDS ****************************
4917 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004918 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004919 * EEPROM contents to the specific channel number supported for each
4920 * band.
4921 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004922 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004923 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4924 * The specific geography and calibration information for that channel
4925 * is contained in the eeprom map itself.
4926 *
4927 * During init, we copy the eeprom information and channel map
4928 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4929 *
4930 * channel_map_24/52 provides the index in the channel_info array for a
4931 * given channel. We have to have two separate maps as there is channel
4932 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4933 * band_2
4934 *
4935 * A value of 0xff stored in the channel_map indicates that the channel
4936 * is not supported by the hardware at all.
4937 *
4938 * A value of 0xfe in the channel_map indicates that the channel is not
4939 * valid for Tx with the current hardware. This means that
4940 * while the system can tune and receive on a given channel, it may not
4941 * be able to associate or transmit any frames on that
4942 * channel. There is no corresponding channel information for that
4943 * entry.
4944 *
4945 *********************************************************************/
4946
4947/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004948static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004949 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4950};
4951
4952/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004953static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004954 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4955};
4956
Ben Cahill9fbab512007-11-29 11:09:47 +08004957static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004958 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4959};
4960
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004961static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004962 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4963};
4964
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004965static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004966 145, 149, 153, 157, 161, 165
4967};
4968
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004969static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004970 int *eeprom_ch_count,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004971 const struct iwl3945_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004972 **eeprom_ch_info,
4973 const u8 **eeprom_ch_index)
4974{
4975 switch (band) {
4976 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004977 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004978 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004979 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004980 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004981 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004982 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004983 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004984 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004985 break;
4986 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004987 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004988 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004989 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004990 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004991 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004992 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004993 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004994 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004995 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004996 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004997 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004998 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004999 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07005000 break;
5001 default:
5002 BUG();
5003 return;
5004 }
5005}
5006
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005007/**
5008 * iwl3945_get_channel_info - Find driver's private channel info
5009 *
5010 * Based on band and channel number.
5011 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005012const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01005013 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07005014{
5015 int i;
5016
Johannes Berg8318d782008-01-24 19:38:38 +01005017 switch (band) {
5018 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07005019 for (i = 14; i < priv->channel_count; i++) {
5020 if (priv->channel_info[i].channel == channel)
5021 return &priv->channel_info[i];
5022 }
5023 break;
5024
Johannes Berg8318d782008-01-24 19:38:38 +01005025 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07005026 if (channel >= 1 && channel <= 14)
5027 return &priv->channel_info[channel - 1];
5028 break;
Johannes Berg8318d782008-01-24 19:38:38 +01005029 case IEEE80211_NUM_BANDS:
5030 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07005031 }
5032
5033 return NULL;
5034}
5035
5036#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
5037 ? # x " " : "")
5038
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005039/**
5040 * iwl3945_init_channel_map - Set up driver's info for all possible channels
5041 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005042static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005043{
5044 int eeprom_ch_count = 0;
5045 const u8 *eeprom_ch_index = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005046 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07005047 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005048 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07005049
5050 if (priv->channel_count) {
5051 IWL_DEBUG_INFO("Channel map already initialized.\n");
5052 return 0;
5053 }
5054
5055 if (priv->eeprom.version < 0x2f) {
5056 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
5057 priv->eeprom.version);
5058 return -EINVAL;
5059 }
5060
5061 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
5062
5063 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005064 ARRAY_SIZE(iwl3945_eeprom_band_1) +
5065 ARRAY_SIZE(iwl3945_eeprom_band_2) +
5066 ARRAY_SIZE(iwl3945_eeprom_band_3) +
5067 ARRAY_SIZE(iwl3945_eeprom_band_4) +
5068 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07005069
5070 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
5071
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005072 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07005073 priv->channel_count, GFP_KERNEL);
5074 if (!priv->channel_info) {
5075 IWL_ERROR("Could not allocate channel_info\n");
5076 priv->channel_count = 0;
5077 return -ENOMEM;
5078 }
5079
5080 ch_info = priv->channel_info;
5081
5082 /* Loop through the 5 EEPROM bands adding them in order to the
5083 * channel map we maintain (that contains additional information than
5084 * what just in the EEPROM) */
5085 for (band = 1; band <= 5; band++) {
5086
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005087 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07005088 &eeprom_ch_info, &eeprom_ch_index);
5089
5090 /* Loop through each band adding each of the channels */
5091 for (ch = 0; ch < eeprom_ch_count; ch++) {
5092 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01005093 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
5094 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07005095
5096 /* permanently store EEPROM's channel regulatory flags
5097 * and max power in channel info database. */
5098 ch_info->eeprom = eeprom_ch_info[ch];
5099
5100 /* Copy the run-time flags so they are there even on
5101 * invalid channels */
5102 ch_info->flags = eeprom_ch_info[ch].flags;
5103
5104 if (!(is_channel_valid(ch_info))) {
5105 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
5106 "No traffic\n",
5107 ch_info->channel,
5108 ch_info->flags,
5109 is_channel_a_band(ch_info) ?
5110 "5.2" : "2.4");
5111 ch_info++;
5112 continue;
5113 }
5114
5115 /* Initialize regulatory-based run-time data */
5116 ch_info->max_power_avg = ch_info->curr_txpow =
5117 eeprom_ch_info[ch].max_power_avg;
5118 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
5119 ch_info->min_power = 0;
5120
Tomas Winkler8211ef72008-03-02 01:36:04 +02005121 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07005122 " %ddBm): Ad-Hoc %ssupported\n",
5123 ch_info->channel,
5124 is_channel_a_band(ch_info) ?
5125 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02005126 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07005127 CHECK_AND_PRINT(IBSS),
5128 CHECK_AND_PRINT(ACTIVE),
5129 CHECK_AND_PRINT(RADAR),
5130 CHECK_AND_PRINT(WIDE),
5131 CHECK_AND_PRINT(NARROW),
5132 CHECK_AND_PRINT(DFS),
5133 eeprom_ch_info[ch].flags,
5134 eeprom_ch_info[ch].max_power_avg,
5135 ((eeprom_ch_info[ch].
5136 flags & EEPROM_CHANNEL_IBSS)
5137 && !(eeprom_ch_info[ch].
5138 flags & EEPROM_CHANNEL_RADAR))
5139 ? "" : "not ");
5140
5141 /* Set the user_txpower_limit to the highest power
5142 * supported by any channel */
5143 if (eeprom_ch_info[ch].max_power_avg >
5144 priv->user_txpower_limit)
5145 priv->user_txpower_limit =
5146 eeprom_ch_info[ch].max_power_avg;
5147
5148 ch_info++;
5149 }
5150 }
5151
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005152 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07005153 if (iwl3945_txpower_set_from_eeprom(priv))
5154 return -EIO;
5155
5156 return 0;
5157}
5158
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005159/*
5160 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
5161 */
5162static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
5163{
5164 kfree(priv->channel_info);
5165 priv->channel_count = 0;
5166}
5167
Zhu Yib481de92007-09-25 17:54:57 -07005168/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
5169 * sending probe req. This should be set long enough to hear probe responses
5170 * from more than one AP. */
5171#define IWL_ACTIVE_DWELL_TIME_24 (20) /* all times in msec */
5172#define IWL_ACTIVE_DWELL_TIME_52 (10)
5173
5174/* For faster active scanning, scan will move to the next channel if fewer than
5175 * PLCP_QUIET_THRESH packets are heard on this channel within
5176 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
5177 * time if it's a quiet channel (nothing responded to our probe, and there's
5178 * no other traffic).
5179 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
5180#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
5181#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(5) /* msec */
5182
5183/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
5184 * Must be set longer than active dwell time.
5185 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
5186#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
5187#define IWL_PASSIVE_DWELL_TIME_52 (10)
5188#define IWL_PASSIVE_DWELL_BASE (100)
5189#define IWL_CHANNEL_TUNE_TIME 5
5190
Johannes Berg8318d782008-01-24 19:38:38 +01005191static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
5192 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07005193{
Johannes Berg8318d782008-01-24 19:38:38 +01005194 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07005195 return IWL_ACTIVE_DWELL_TIME_52;
5196 else
5197 return IWL_ACTIVE_DWELL_TIME_24;
5198}
5199
Johannes Berg8318d782008-01-24 19:38:38 +01005200static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
5201 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07005202{
Johannes Berg8318d782008-01-24 19:38:38 +01005203 u16 active = iwl3945_get_active_dwell_time(priv, band);
5204 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07005205 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
5206 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
5207
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005208 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005209 /* If we're associated, we clamp the maximum passive
5210 * dwell time to be 98% of the beacon interval (minus
5211 * 2 * channel tune time) */
5212 passive = priv->beacon_int;
5213 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
5214 passive = IWL_PASSIVE_DWELL_BASE;
5215 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
5216 }
5217
5218 if (passive <= active)
5219 passive = active + 1;
5220
5221 return passive;
5222}
5223
Johannes Berg8318d782008-01-24 19:38:38 +01005224static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
5225 enum ieee80211_band band,
Zhu Yib481de92007-09-25 17:54:57 -07005226 u8 is_active, u8 direct_mask,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005227 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07005228{
5229 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01005230 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005231 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07005232 u16 passive_dwell = 0;
5233 u16 active_dwell = 0;
5234 int added, i;
5235
Johannes Berg8318d782008-01-24 19:38:38 +01005236 sband = iwl3945_get_band(priv, band);
5237 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07005238 return 0;
5239
Johannes Berg8318d782008-01-24 19:38:38 +01005240 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07005241
Johannes Berg8318d782008-01-24 19:38:38 +01005242 active_dwell = iwl3945_get_active_dwell_time(priv, band);
5243 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07005244
Johannes Berg8318d782008-01-24 19:38:38 +01005245 for (i = 0, added = 0; i < sband->n_channels; i++) {
5246 if (channels[i].hw_value ==
Zhu Yib481de92007-09-25 17:54:57 -07005247 le16_to_cpu(priv->active_rxon.channel)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005248 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005249 IWL_DEBUG_SCAN
5250 ("Skipping current channel %d\n",
5251 le16_to_cpu(priv->active_rxon.channel));
5252 continue;
5253 }
5254 } else if (priv->only_active_channel)
5255 continue;
5256
Johannes Berg8318d782008-01-24 19:38:38 +01005257 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07005258
Johannes Berg8318d782008-01-24 19:38:38 +01005259 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07005260 if (!is_channel_valid(ch_info)) {
5261 IWL_DEBUG_SCAN("Channel %d is INVALID for this SKU.\n",
5262 scan_ch->channel);
5263 continue;
5264 }
5265
5266 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg8318d782008-01-24 19:38:38 +01005267 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN))
Zhu Yib481de92007-09-25 17:54:57 -07005268 scan_ch->type = 0; /* passive */
5269 else
5270 scan_ch->type = 1; /* active */
5271
5272 if (scan_ch->type & 1)
5273 scan_ch->type |= (direct_mask << 1);
5274
5275 if (is_channel_narrow(ch_info))
5276 scan_ch->type |= (1 << 7);
5277
5278 scan_ch->active_dwell = cpu_to_le16(active_dwell);
5279 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
5280
Ben Cahill9fbab512007-11-29 11:09:47 +08005281 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07005282 scan_ch->tpc.dsp_atten = 110;
5283 /* scan_pwr_info->tpc.dsp_atten; */
5284
5285 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01005286 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07005287 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
5288 else {
5289 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
5290 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08005291 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08005292 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07005293 */
5294 }
5295
5296 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
5297 scan_ch->channel,
5298 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
5299 (scan_ch->type & 1) ?
5300 active_dwell : passive_dwell);
5301
5302 scan_ch++;
5303 added++;
5304 }
5305
5306 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
5307 return added;
5308}
5309
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005310static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07005311 struct ieee80211_rate *rates)
5312{
5313 int i;
5314
5315 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01005316 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
5317 rates[i].hw_value = i; /* Rate scaling will work on indexes */
5318 rates[i].hw_value_short = i;
5319 rates[i].flags = 0;
5320 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07005321 /*
Johannes Berg8318d782008-01-24 19:38:38 +01005322 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07005323 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005324 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01005325 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07005326 }
Zhu Yib481de92007-09-25 17:54:57 -07005327 }
5328}
5329
5330/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005331 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07005332 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005333static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005334{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005335 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02005336 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07005337 struct ieee80211_channel *channels;
5338 struct ieee80211_channel *geo_ch;
5339 struct ieee80211_rate *rates;
5340 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005341
Johannes Berg8318d782008-01-24 19:38:38 +01005342 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
5343 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07005344 IWL_DEBUG_INFO("Geography modes already initialized.\n");
5345 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
5346 return 0;
5347 }
5348
Zhu Yib481de92007-09-25 17:54:57 -07005349 channels = kzalloc(sizeof(struct ieee80211_channel) *
5350 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01005351 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07005352 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07005353
Tomas Winkler8211ef72008-03-02 01:36:04 +02005354 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07005355 GFP_KERNEL);
5356 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07005357 kfree(channels);
5358 return -ENOMEM;
5359 }
5360
Zhu Yib481de92007-09-25 17:54:57 -07005361 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02005362 sband = &priv->bands[IEEE80211_BAND_5GHZ];
5363 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
5364 /* just OFDM */
5365 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
5366 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07005367
Tomas Winkler8211ef72008-03-02 01:36:04 +02005368 sband = &priv->bands[IEEE80211_BAND_2GHZ];
5369 sband->channels = channels;
5370 /* OFDM & CCK */
5371 sband->bitrates = rates;
5372 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07005373
5374 priv->ieee_channels = channels;
5375 priv->ieee_rates = rates;
5376
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005377 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07005378
Tomas Winkler8211ef72008-03-02 01:36:04 +02005379 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07005380 ch = &priv->channel_info[i];
5381
Tomas Winkler8211ef72008-03-02 01:36:04 +02005382 /* FIXME: might be removed if scan is OK*/
5383 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07005384 continue;
Zhu Yib481de92007-09-25 17:54:57 -07005385
5386 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02005387 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01005388 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02005389 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07005390
Tomas Winkler8211ef72008-03-02 01:36:04 +02005391 geo_ch = &sband->channels[sband->n_channels++];
5392
5393 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01005394 geo_ch->max_power = ch->max_power_avg;
5395 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08005396 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07005397
5398 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01005399 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
5400 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07005401
Johannes Berg8318d782008-01-24 19:38:38 +01005402 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
5403 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07005404
5405 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01005406 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07005407
5408 if (ch->max_power_avg > priv->max_channel_txpower_limit)
5409 priv->max_channel_txpower_limit =
5410 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02005411 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01005412 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02005413 }
5414
5415 /* Save flags for reg domain usage */
5416 geo_ch->orig_flags = geo_ch->flags;
5417
5418 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
5419 ch->channel, geo_ch->center_freq,
5420 is_channel_a_band(ch) ? "5.2" : "2.4",
5421 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
5422 "restricted" : "valid",
5423 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07005424 }
5425
Johannes Berg8318d782008-01-24 19:38:38 +01005426 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) && priv->is_abg) {
Zhu Yib481de92007-09-25 17:54:57 -07005427 printk(KERN_INFO DRV_NAME
5428 ": Incorrectly detected BG card as ABG. Please send "
5429 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
5430 priv->pci_dev->device, priv->pci_dev->subsystem_device);
5431 priv->is_abg = 0;
5432 }
5433
5434 printk(KERN_INFO DRV_NAME
5435 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01005436 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
5437 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07005438
Johannes Berg8318d782008-01-24 19:38:38 +01005439 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->bands[IEEE80211_BAND_2GHZ];
5440 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07005441
Zhu Yib481de92007-09-25 17:54:57 -07005442 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
5443
5444 return 0;
5445}
5446
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005447/*
5448 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
5449 */
5450static void iwl3945_free_geos(struct iwl3945_priv *priv)
5451{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005452 kfree(priv->ieee_channels);
5453 kfree(priv->ieee_rates);
5454 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
5455}
5456
Zhu Yib481de92007-09-25 17:54:57 -07005457/******************************************************************************
5458 *
5459 * uCode download functions
5460 *
5461 ******************************************************************************/
5462
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005463static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005464{
Tomas Winkler98c92212008-01-14 17:46:20 -08005465 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
5466 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
5467 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
5468 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5469 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5470 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005471}
5472
5473/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005474 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005475 * looking at all data.
5476 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005477static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 * image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005478{
5479 u32 val;
5480 u32 save_len = len;
5481 int rc = 0;
5482 u32 errcnt;
5483
5484 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5485
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005486 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005487 if (rc)
5488 return rc;
5489
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005490 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005491
5492 errcnt = 0;
5493 for (; len > 0; len -= sizeof(u32), image++) {
5494 /* read data comes through single port, auto-incr addr */
5495 /* NOTE: Use the debugless read so we don't flood kernel log
5496 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005497 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005498 if (val != le32_to_cpu(*image)) {
5499 IWL_ERROR("uCode INST section is invalid at "
5500 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5501 save_len - len, val, le32_to_cpu(*image));
5502 rc = -EIO;
5503 errcnt++;
5504 if (errcnt >= 20)
5505 break;
5506 }
5507 }
5508
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005509 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005510
5511 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005512 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005513
5514 return rc;
5515}
5516
5517
5518/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005519 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005520 * using sample data 100 bytes apart. If these sample points are good,
5521 * it's a pretty good bet that everything between them is good, too.
5522 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005523static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005524{
5525 u32 val;
5526 int rc = 0;
5527 u32 errcnt = 0;
5528 u32 i;
5529
5530 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5531
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005532 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005533 if (rc)
5534 return rc;
5535
5536 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5537 /* read data comes through single port, auto-incr addr */
5538 /* NOTE: Use the debugless read so we don't flood kernel log
5539 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005540 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005541 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005542 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005543 if (val != le32_to_cpu(*image)) {
5544#if 0 /* Enable this if you want to see details */
5545 IWL_ERROR("uCode INST section is invalid at "
5546 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5547 i, val, *image);
5548#endif
5549 rc = -EIO;
5550 errcnt++;
5551 if (errcnt >= 3)
5552 break;
5553 }
5554 }
5555
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005556 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005557
5558 return rc;
5559}
5560
5561
5562/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005563 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005564 * and verify its contents
5565 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005566static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005567{
5568 __le32 *image;
5569 u32 len;
5570 int rc = 0;
5571
5572 /* Try bootstrap */
5573 image = (__le32 *)priv->ucode_boot.v_addr;
5574 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005575 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005576 if (rc == 0) {
5577 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5578 return 0;
5579 }
5580
5581 /* Try initialize */
5582 image = (__le32 *)priv->ucode_init.v_addr;
5583 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005584 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005585 if (rc == 0) {
5586 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5587 return 0;
5588 }
5589
5590 /* Try runtime/protocol */
5591 image = (__le32 *)priv->ucode_code.v_addr;
5592 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005593 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005594 if (rc == 0) {
5595 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5596 return 0;
5597 }
5598
5599 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5600
Ben Cahill9fbab512007-11-29 11:09:47 +08005601 /* Since nothing seems to match, show first several data entries in
5602 * instruction SRAM, so maybe visual inspection will give a clue.
5603 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005604 image = (__le32 *)priv->ucode_boot.v_addr;
5605 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005606 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005607
5608 return rc;
5609}
5610
5611
5612/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005613static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005614{
5615 __le32 *image = priv->ucode_boot.v_addr;
5616 u32 len = priv->ucode_boot.len;
5617 u32 reg;
5618 u32 val;
5619
5620 IWL_DEBUG_INFO("Begin verify bsm\n");
5621
5622 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005623 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005624 for (reg = BSM_SRAM_LOWER_BOUND;
5625 reg < BSM_SRAM_LOWER_BOUND + len;
5626 reg += sizeof(u32), image ++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005627 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005628 if (val != le32_to_cpu(*image)) {
5629 IWL_ERROR("BSM uCode verification failed at "
5630 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5631 BSM_SRAM_LOWER_BOUND,
5632 reg - BSM_SRAM_LOWER_BOUND, len,
5633 val, le32_to_cpu(*image));
5634 return -EIO;
5635 }
5636 }
5637
5638 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5639
5640 return 0;
5641}
5642
5643/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005644 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005645 *
5646 * BSM operation:
5647 *
5648 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5649 * in special SRAM that does not power down during RFKILL. When powering back
5650 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5651 * the bootstrap program into the on-board processor, and starts it.
5652 *
5653 * The bootstrap program loads (via DMA) instructions and data for a new
5654 * program from host DRAM locations indicated by the host driver in the
5655 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5656 * automatically.
5657 *
5658 * When initializing the NIC, the host driver points the BSM to the
5659 * "initialize" uCode image. This uCode sets up some internal data, then
5660 * notifies host via "initialize alive" that it is complete.
5661 *
5662 * The host then replaces the BSM_DRAM_* pointer values to point to the
5663 * normal runtime uCode instructions and a backup uCode data cache buffer
5664 * (filled initially with starting data values for the on-board processor),
5665 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5666 * which begins normal operation.
5667 *
5668 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5669 * the backup data cache in DRAM before SRAM is powered down.
5670 *
5671 * When powering back up, the BSM loads the bootstrap program. This reloads
5672 * the runtime uCode instructions and the backup data cache into SRAM,
5673 * and re-launches the runtime uCode from where it left off.
5674 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005675static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005676{
5677 __le32 *image = priv->ucode_boot.v_addr;
5678 u32 len = priv->ucode_boot.len;
5679 dma_addr_t pinst;
5680 dma_addr_t pdata;
5681 u32 inst_len;
5682 u32 data_len;
5683 int rc;
5684 int i;
5685 u32 done;
5686 u32 reg_offset;
5687
5688 IWL_DEBUG_INFO("Begin load bsm\n");
5689
5690 /* make sure bootstrap program is no larger than BSM's SRAM size */
5691 if (len > IWL_MAX_BSM_SIZE)
5692 return -EINVAL;
5693
5694 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005695 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005696 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005697 * after the "initialize" uCode has run, to point to
5698 * runtime/protocol instructions and backup data cache. */
5699 pinst = priv->ucode_init.p_addr;
5700 pdata = priv->ucode_init_data.p_addr;
5701 inst_len = priv->ucode_init.len;
5702 data_len = priv->ucode_init_data.len;
5703
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005704 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005705 if (rc)
5706 return rc;
5707
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005708 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5709 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5710 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5711 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005712
5713 /* Fill BSM memory with bootstrap instructions */
5714 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5715 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5716 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005717 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005718 le32_to_cpu(*image));
5719
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005720 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005721 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005722 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005723 return rc;
5724 }
5725
5726 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005727 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5728 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005729 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005730 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005731
5732 /* Load bootstrap code into instruction SRAM now,
5733 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005734 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005735 BSM_WR_CTRL_REG_BIT_START);
5736
5737 /* Wait for load of bootstrap uCode to finish */
5738 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005739 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005740 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5741 break;
5742 udelay(10);
5743 }
5744 if (i < 100)
5745 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5746 else {
5747 IWL_ERROR("BSM write did not complete!\n");
5748 return -EIO;
5749 }
5750
5751 /* Enable future boot loads whenever power management unit triggers it
5752 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005753 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005754 BSM_WR_CTRL_REG_BIT_START_EN);
5755
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005756 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005757
5758 return 0;
5759}
5760
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005761static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005762{
5763 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005764 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005765}
5766
5767/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005768 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005769 *
5770 * Copy into buffers for card to fetch via bus-mastering
5771 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005772static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005773{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005774 struct iwl3945_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005775 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005776 const struct firmware *ucode_raw;
5777 /* firmware file name contains uCode/driver compatibility version */
5778 const char *name = "iwlwifi-3945" IWL3945_UCODE_API ".ucode";
5779 u8 *src;
5780 size_t len;
5781 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
5782
5783 /* Ask kernel firmware_class module to get the boot firmware off disk.
5784 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08005785 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
5786 if (ret < 0) {
5787 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5788 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07005789 goto error;
5790 }
5791
5792 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5793 name, ucode_raw->size);
5794
5795 /* Make sure that we got at least our header! */
5796 if (ucode_raw->size < sizeof(*ucode)) {
5797 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005798 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005799 goto err_release;
5800 }
5801
5802 /* Data from ucode file: header followed by uCode images */
5803 ucode = (void *)ucode_raw->data;
5804
5805 ver = le32_to_cpu(ucode->ver);
5806 inst_size = le32_to_cpu(ucode->inst_size);
5807 data_size = le32_to_cpu(ucode->data_size);
5808 init_size = le32_to_cpu(ucode->init_size);
5809 init_data_size = le32_to_cpu(ucode->init_data_size);
5810 boot_size = le32_to_cpu(ucode->boot_size);
5811
5812 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005813 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5814 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5815 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5816 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5817 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005818
5819 /* Verify size of file vs. image size info in file's header */
5820 if (ucode_raw->size < sizeof(*ucode) +
5821 inst_size + data_size + init_size +
5822 init_data_size + boot_size) {
5823
5824 IWL_DEBUG_INFO("uCode file size %d too small\n",
5825 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005826 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005827 goto err_release;
5828 }
5829
5830 /* Verify that uCode images will fit in card's SRAM */
5831 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005832 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5833 inst_size);
5834 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005835 goto err_release;
5836 }
5837
5838 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005839 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5840 data_size);
5841 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005842 goto err_release;
5843 }
5844 if (init_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005845 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5846 init_size);
5847 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005848 goto err_release;
5849 }
5850 if (init_data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005851 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5852 init_data_size);
5853 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005854 goto err_release;
5855 }
5856 if (boot_size > IWL_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005857 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5858 boot_size);
5859 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005860 goto err_release;
5861 }
5862
5863 /* Allocate ucode buffers for card's bus-master loading ... */
5864
5865 /* Runtime instructions and 2 copies of data:
5866 * 1) unmodified from disk
5867 * 2) backup cache for save/restore during power-downs */
5868 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005869 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005870
5871 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005872 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005873
5874 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005875 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005876
5877 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005878 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005879 goto err_pci_alloc;
5880
Tomas Winkler90e759d2007-11-29 11:09:41 +08005881 /* Initialization instructions and data */
5882 if (init_size && init_data_size) {
5883 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005884 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005885
5886 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005887 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005888
5889 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5890 goto err_pci_alloc;
5891 }
5892
5893 /* Bootstrap (instructions only, no data) */
5894 if (boot_size) {
5895 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005896 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005897
5898 if (!priv->ucode_boot.v_addr)
5899 goto err_pci_alloc;
5900 }
5901
Zhu Yib481de92007-09-25 17:54:57 -07005902 /* Copy images into buffers for card's bus-master reads ... */
5903
5904 /* Runtime instructions (first block of data in file) */
5905 src = &ucode->data[0];
5906 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005907 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005908 memcpy(priv->ucode_code.v_addr, src, len);
5909 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5910 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5911
5912 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005913 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005914 src = &ucode->data[inst_size];
5915 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005916 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005917 memcpy(priv->ucode_data.v_addr, src, len);
5918 memcpy(priv->ucode_data_backup.v_addr, src, len);
5919
5920 /* Initialization instructions (3rd block) */
5921 if (init_size) {
5922 src = &ucode->data[inst_size + data_size];
5923 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005924 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5925 len);
Zhu Yib481de92007-09-25 17:54:57 -07005926 memcpy(priv->ucode_init.v_addr, src, len);
5927 }
5928
5929 /* Initialization data (4th block) */
5930 if (init_data_size) {
5931 src = &ucode->data[inst_size + data_size + init_size];
5932 len = priv->ucode_init_data.len;
5933 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5934 (int)len);
5935 memcpy(priv->ucode_init_data.v_addr, src, len);
5936 }
5937
5938 /* Bootstrap instructions (5th block) */
5939 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5940 len = priv->ucode_boot.len;
5941 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5942 (int)len);
5943 memcpy(priv->ucode_boot.v_addr, src, len);
5944
5945 /* We have our copies now, allow OS release its copies */
5946 release_firmware(ucode_raw);
5947 return 0;
5948
5949 err_pci_alloc:
5950 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005951 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005952 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005953
5954 err_release:
5955 release_firmware(ucode_raw);
5956
5957 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005958 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005959}
5960
5961
5962/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005963 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005964 *
5965 * Tell initialization uCode where to find runtime uCode.
5966 *
5967 * BSM registers initially contain pointers to initialization uCode.
5968 * We need to replace them to load runtime uCode inst and data,
5969 * and to save runtime data when powering down.
5970 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005971static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005972{
5973 dma_addr_t pinst;
5974 dma_addr_t pdata;
5975 int rc = 0;
5976 unsigned long flags;
5977
5978 /* bits 31:0 for 3945 */
5979 pinst = priv->ucode_code.p_addr;
5980 pdata = priv->ucode_data_backup.p_addr;
5981
5982 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005983 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005984 if (rc) {
5985 spin_unlock_irqrestore(&priv->lock, flags);
5986 return rc;
5987 }
5988
5989 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005990 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5991 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5992 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005993 priv->ucode_data.len);
5994
5995 /* Inst bytecount must be last to set up, bit 31 signals uCode
5996 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005997 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005998 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5999
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006000 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006001
6002 spin_unlock_irqrestore(&priv->lock, flags);
6003
6004 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
6005
6006 return rc;
6007}
6008
6009/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006010 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07006011 *
6012 * Called after REPLY_ALIVE notification received from "initialize" uCode.
6013 *
Zhu Yib481de92007-09-25 17:54:57 -07006014 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08006015 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006016static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006017{
6018 /* Check alive response for "valid" sign from uCode */
6019 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
6020 /* We had an error bringing up the hardware, so take it
6021 * all the way back down so we can try again */
6022 IWL_DEBUG_INFO("Initialize Alive failed.\n");
6023 goto restart;
6024 }
6025
6026 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
6027 * This is a paranoid check, because we would not have gotten the
6028 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006029 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006030 /* Runtime instruction load was bad;
6031 * take it all the way back down so we can try again */
6032 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
6033 goto restart;
6034 }
6035
6036 /* Send pointers to protocol/runtime uCode image ... init code will
6037 * load and launch runtime uCode, which will send us another "Alive"
6038 * notification. */
6039 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006040 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006041 /* Runtime instruction load won't happen;
6042 * take it all the way back down so we can try again */
6043 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
6044 goto restart;
6045 }
6046 return;
6047
6048 restart:
6049 queue_work(priv->workqueue, &priv->restart);
6050}
6051
6052
6053/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006054 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07006055 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006056 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07006057 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006058static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006059{
6060 int rc = 0;
6061 int thermal_spin = 0;
6062 u32 rfkill;
6063
6064 IWL_DEBUG_INFO("Runtime Alive received.\n");
6065
6066 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
6067 /* We had an error bringing up the hardware, so take it
6068 * all the way back down so we can try again */
6069 IWL_DEBUG_INFO("Alive failed.\n");
6070 goto restart;
6071 }
6072
6073 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
6074 * This is a paranoid check, because we would not have gotten the
6075 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006076 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006077 /* Runtime instruction load was bad;
6078 * take it all the way back down so we can try again */
6079 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
6080 goto restart;
6081 }
6082
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006083 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006084
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006085 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006086 if (rc) {
6087 IWL_WARNING("Can not read rfkill status from adapter\n");
6088 return;
6089 }
6090
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006091 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07006092 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006093 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006094
6095 if (rfkill & 0x1) {
6096 clear_bit(STATUS_RF_KILL_HW, &priv->status);
6097 /* if rfkill is not on, then wait for thermal
6098 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006099 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07006100 thermal_spin++;
6101 udelay(10);
6102 }
6103
6104 if (thermal_spin)
6105 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
6106 thermal_spin * 10);
6107 } else
6108 set_bit(STATUS_RF_KILL_HW, &priv->status);
6109
Ben Cahill9fbab512007-11-29 11:09:47 +08006110 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07006111 set_bit(STATUS_ALIVE, &priv->status);
6112
6113 /* Clear out the uCode error bit if it is set */
6114 clear_bit(STATUS_FW_ERROR, &priv->status);
6115
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006116 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006117 return;
6118
Zhu Yi5a669262008-01-14 17:46:18 -08006119 ieee80211_start_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07006120
6121 priv->active_rate = priv->rates_mask;
6122 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
6123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006124 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07006125
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006126 if (iwl3945_is_associated(priv)) {
6127 struct iwl3945_rxon_cmd *active_rxon =
6128 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07006129
6130 memcpy(&priv->staging_rxon, &priv->active_rxon,
6131 sizeof(priv->staging_rxon));
6132 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6133 } else {
6134 /* Initialize our rx_config data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006135 iwl3945_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006136 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
6137 }
6138
Ben Cahill9fbab512007-11-29 11:09:47 +08006139 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006140 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006141
6142 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006143 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006144
6145 /* At this point, the NIC is initialized and operational */
6146 priv->notif_missed_beacons = 0;
6147 set_bit(STATUS_READY, &priv->status);
6148
6149 iwl3945_reg_txpower_periodic(priv);
6150
6151 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006152 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07006153
6154 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006155 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006156
6157 return;
6158
6159 restart:
6160 queue_work(priv->workqueue, &priv->restart);
6161}
6162
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006163static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07006164
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006165static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006166{
6167 unsigned long flags;
6168 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
6169 struct ieee80211_conf *conf = NULL;
6170
6171 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
6172
6173 conf = ieee80211_get_hw_conf(priv->hw);
6174
6175 if (!exit_pending)
6176 set_bit(STATUS_EXIT_PENDING, &priv->status);
6177
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006178 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006179
6180 /* Unblock any waiting calls */
6181 wake_up_interruptible_all(&priv->wait_command_queue);
6182
Zhu Yib481de92007-09-25 17:54:57 -07006183 /* Wipe out the EXIT_PENDING status bit if we are not actually
6184 * exiting the module */
6185 if (!exit_pending)
6186 clear_bit(STATUS_EXIT_PENDING, &priv->status);
6187
6188 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006189 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07006190
6191 /* tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006192 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006193
6194 if (priv->mac80211_registered)
6195 ieee80211_stop_queues(priv->hw);
6196
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006197 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07006198 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006199 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006200 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
6201 STATUS_RF_KILL_HW |
6202 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
6203 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08006204 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
6205 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07006206 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
6207 STATUS_IN_SUSPEND;
6208 goto exit;
6209 }
6210
6211 /* ...otherwise clear out all the status bits but the RF Kill and
6212 * SUSPEND bits and continue taking the NIC down. */
6213 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
6214 STATUS_RF_KILL_HW |
6215 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
6216 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08006217 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
6218 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07006219 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
6220 STATUS_IN_SUSPEND |
6221 test_bit(STATUS_FW_ERROR, &priv->status) <<
6222 STATUS_FW_ERROR;
6223
6224 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006225 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07006226 spin_unlock_irqrestore(&priv->lock, flags);
6227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006228 iwl3945_hw_txq_ctx_stop(priv);
6229 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006230
6231 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006232 if (!iwl3945_grab_nic_access(priv)) {
6233 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07006234 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006235 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006236 }
6237 spin_unlock_irqrestore(&priv->lock, flags);
6238
6239 udelay(5);
6240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006241 iwl3945_hw_nic_stop_master(priv);
6242 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
6243 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006244
6245 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006246 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07006247
6248 if (priv->ibss_beacon)
6249 dev_kfree_skb(priv->ibss_beacon);
6250 priv->ibss_beacon = NULL;
6251
6252 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006253 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006254}
6255
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006256static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006257{
6258 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006259 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006260 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08006261
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006262 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006263}
6264
6265#define MAX_HW_RESTARTS 5
6266
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006267static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006268{
6269 int rc, i;
6270
6271 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6272 IWL_WARNING("Exit pending; will not bring the NIC up\n");
6273 return -EIO;
6274 }
6275
6276 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
6277 IWL_WARNING("Radio disabled by SW RF kill (module "
6278 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08006279 return -ENODEV;
6280 }
6281
Reinette Chatree903fbd2008-01-30 22:05:15 -08006282 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
6283 IWL_ERROR("ucode not available for device bringup\n");
6284 return -EIO;
6285 }
6286
Zhu Yie655b9f2008-01-24 02:19:38 -08006287 /* If platform's RF_KILL switch is NOT set to KILL */
6288 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
6289 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
6290 clear_bit(STATUS_RF_KILL_HW, &priv->status);
6291 else {
6292 set_bit(STATUS_RF_KILL_HW, &priv->status);
6293 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
6294 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
6295 return -ENODEV;
6296 }
Zhu Yib481de92007-09-25 17:54:57 -07006297 }
6298
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006299 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07006300
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006301 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006302 if (rc) {
6303 IWL_ERROR("Unable to int nic\n");
6304 return rc;
6305 }
6306
6307 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006308 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
6309 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07006310 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
6311
6312 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006313 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
6314 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006315
6316 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006317 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
6318 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07006319
6320 /* Copy original ucode data image from disk into backup cache.
6321 * This will be used to initialize the on-board processor's
6322 * data SRAM for a clean start when the runtime program first loads. */
6323 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08006324 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07006325
Zhu Yie655b9f2008-01-24 02:19:38 -08006326 /* We return success when we resume from suspend and rf_kill is on. */
6327 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
6328 return 0;
6329
Zhu Yib481de92007-09-25 17:54:57 -07006330 for (i = 0; i < MAX_HW_RESTARTS; i++) {
6331
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006332 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006333
6334 /* load bootstrap state machine,
6335 * load bootstrap program into processor's memory,
6336 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006337 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006338
6339 if (rc) {
6340 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
6341 continue;
6342 }
6343
6344 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006345 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006346
Zhu Yib481de92007-09-25 17:54:57 -07006347 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
6348
6349 return 0;
6350 }
6351
6352 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006353 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006354
6355 /* tried to restart and config the device for as long as our
6356 * patience could withstand */
6357 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
6358 return -EIO;
6359}
6360
6361
6362/*****************************************************************************
6363 *
6364 * Workqueue callbacks
6365 *
6366 *****************************************************************************/
6367
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006368static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006369{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006370 struct iwl3945_priv *priv =
6371 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07006372
6373 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6374 return;
6375
6376 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006377 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006378 mutex_unlock(&priv->mutex);
6379}
6380
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006381static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006382{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006383 struct iwl3945_priv *priv =
6384 container_of(data, struct iwl3945_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07006385
6386 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6387 return;
6388
6389 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006390 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006391 mutex_unlock(&priv->mutex);
6392}
6393
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006394static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006395{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006396 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07006397
6398 wake_up_interruptible(&priv->wait_command_queue);
6399
6400 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6401 return;
6402
6403 mutex_lock(&priv->mutex);
6404
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006405 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006406 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
6407 "HW and/or SW RF Kill no longer active, restarting "
6408 "device\n");
6409 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
6410 queue_work(priv->workqueue, &priv->restart);
6411 } else {
6412
6413 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
6414 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6415 "disabled by SW switch\n");
6416 else
6417 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6418 "Kill switch must be turned off for "
6419 "wireless networking to work.\n");
6420 }
6421 mutex_unlock(&priv->mutex);
6422}
6423
6424#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6425
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006426static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006427{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006428 struct iwl3945_priv *priv =
6429 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07006430
6431 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6432 return;
6433
6434 mutex_lock(&priv->mutex);
6435 if (test_bit(STATUS_SCANNING, &priv->status) ||
6436 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6437 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6438 "Scan completion watchdog resetting adapter (%dms)\n",
6439 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006440
Zhu Yib481de92007-09-25 17:54:57 -07006441 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006442 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006443 }
6444 mutex_unlock(&priv->mutex);
6445}
6446
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006447static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006448{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006449 struct iwl3945_priv *priv =
6450 container_of(data, struct iwl3945_priv, request_scan);
6451 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006452 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006453 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006454 .meta.flags = CMD_SIZE_HUGE,
6455 };
6456 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006457 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006458 struct ieee80211_conf *conf = NULL;
6459 u8 direct_mask;
Johannes Berg8318d782008-01-24 19:38:38 +01006460 enum ieee80211_band band;
Zhu Yib481de92007-09-25 17:54:57 -07006461
6462 conf = ieee80211_get_hw_conf(priv->hw);
6463
6464 mutex_lock(&priv->mutex);
6465
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006466 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006467 IWL_WARNING("request scan called when driver not ready.\n");
6468 goto done;
6469 }
6470
6471 /* Make sure the scan wasn't cancelled before this queued work
6472 * was given the chance to run... */
6473 if (!test_bit(STATUS_SCANNING, &priv->status))
6474 goto done;
6475
6476 /* This should never be called or scheduled if there is currently
6477 * a scan active in the hardware. */
6478 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6479 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6480 "Ignoring second request.\n");
6481 rc = -EIO;
6482 goto done;
6483 }
6484
6485 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6486 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6487 goto done;
6488 }
6489
6490 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6491 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6492 goto done;
6493 }
6494
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006495 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006496 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6497 goto done;
6498 }
6499
6500 if (!test_bit(STATUS_READY, &priv->status)) {
6501 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6502 goto done;
6503 }
6504
6505 if (!priv->scan_bands) {
6506 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6507 goto done;
6508 }
6509
6510 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006511 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006512 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6513 if (!priv->scan) {
6514 rc = -ENOMEM;
6515 goto done;
6516 }
6517 }
6518 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006519 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006520
6521 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6522 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6523
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006524 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006525 u16 interval = 0;
6526 u32 extra;
6527 u32 suspend_time = 100;
6528 u32 scan_suspend_time = 100;
6529 unsigned long flags;
6530
6531 IWL_DEBUG_INFO("Scanning while associated...\n");
6532
6533 spin_lock_irqsave(&priv->lock, flags);
6534 interval = priv->beacon_int;
6535 spin_unlock_irqrestore(&priv->lock, flags);
6536
6537 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006538 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006539 if (!interval)
6540 interval = suspend_time;
6541 /*
6542 * suspend time format:
6543 * 0-19: beacon interval in usec (time before exec.)
6544 * 20-23: 0
6545 * 24-31: number of beacons (suspend between channels)
6546 */
6547
6548 extra = (suspend_time / interval) << 24;
6549 scan_suspend_time = 0xFF0FFFFF &
6550 (extra | ((suspend_time % interval) * 1024));
6551
6552 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6553 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6554 scan_suspend_time, interval);
6555 }
6556
6557 /* We should add the ability for user to lock to PASSIVE ONLY */
6558 if (priv->one_direct_scan) {
6559 IWL_DEBUG_SCAN
6560 ("Kicking off one direct scan for '%s'\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006561 iwl3945_escape_essid(priv->direct_ssid,
Zhu Yib481de92007-09-25 17:54:57 -07006562 priv->direct_ssid_len));
6563 scan->direct_scan[0].id = WLAN_EID_SSID;
6564 scan->direct_scan[0].len = priv->direct_ssid_len;
6565 memcpy(scan->direct_scan[0].ssid,
6566 priv->direct_ssid, priv->direct_ssid_len);
6567 direct_mask = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006568 } else if (!iwl3945_is_associated(priv) && priv->essid_len) {
Zhu Yib481de92007-09-25 17:54:57 -07006569 scan->direct_scan[0].id = WLAN_EID_SSID;
6570 scan->direct_scan[0].len = priv->essid_len;
6571 memcpy(scan->direct_scan[0].ssid, priv->essid, priv->essid_len);
6572 direct_mask = 1;
6573 } else
6574 direct_mask = 0;
6575
6576 /* We don't build a direct scan probe request; the uCode will do
6577 * that based on the direct_mask added to each channel entry */
6578 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006579 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Cyrill Gorcunov18904f52008-01-26 19:09:36 +03006580 IWL_MAX_SCAN_SIZE - sizeof(*scan), 0));
Zhu Yib481de92007-09-25 17:54:57 -07006581 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6582 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6583 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6584
6585 /* flags + rate selection */
6586
6587 switch (priv->scan_bands) {
6588 case 2:
6589 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6590 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6591 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006592 band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07006593 break;
6594
6595 case 1:
6596 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6597 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006598 band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07006599 break;
6600
6601 default:
6602 IWL_WARNING("Invalid scan band count\n");
6603 goto done;
6604 }
6605
6606 /* select Rx antennas */
6607 scan->flags |= iwl3945_get_antenna_flags(priv);
6608
6609 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR)
6610 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6611
6612 if (direct_mask)
6613 IWL_DEBUG_SCAN
6614 ("Initiating direct scan for %s.\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006615 iwl3945_escape_essid(priv->essid, priv->essid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006616 else
6617 IWL_DEBUG_SCAN("Initiating indirect scan.\n");
6618
6619 scan->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006620 iwl3945_get_channels_for_scan(
Johannes Berg8318d782008-01-24 19:38:38 +01006621 priv, band, 1, /* active */
Zhu Yib481de92007-09-25 17:54:57 -07006622 direct_mask,
6623 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
6624
6625 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006626 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006627 cmd.data = scan;
6628 scan->len = cpu_to_le16(cmd.len);
6629
6630 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006631 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006632 if (rc)
6633 goto done;
6634
6635 queue_delayed_work(priv->workqueue, &priv->scan_check,
6636 IWL_SCAN_CHECK_WATCHDOG);
6637
6638 mutex_unlock(&priv->mutex);
6639 return;
6640
6641 done:
Ian Schram01ebd062007-10-25 17:15:22 +08006642 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006643 queue_work(priv->workqueue, &priv->scan_completed);
6644 mutex_unlock(&priv->mutex);
6645}
6646
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006647static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006648{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006649 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006650
6651 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6652 return;
6653
6654 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006655 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006656 mutex_unlock(&priv->mutex);
6657}
6658
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006659static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006660{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006661 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006662
6663 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6664 return;
6665
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006666 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006667 queue_work(priv->workqueue, &priv->up);
6668}
6669
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006670static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006671{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006672 struct iwl3945_priv *priv =
6673 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006674
6675 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6676 return;
6677
6678 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006679 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006680 mutex_unlock(&priv->mutex);
6681}
6682
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006683#define IWL_DELAY_NEXT_SCAN (HZ*2)
6684
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006685static void iwl3945_bg_post_associate(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006686{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006687 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv,
Zhu Yib481de92007-09-25 17:54:57 -07006688 post_associate.work);
6689
6690 int rc = 0;
6691 struct ieee80211_conf *conf = NULL;
Joe Perches0795af52007-10-03 17:59:30 -07006692 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07006693
6694 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
6695 IWL_ERROR("%s Should not be called in AP mode\n", __FUNCTION__);
6696 return;
6697 }
6698
6699
Joe Perches0795af52007-10-03 17:59:30 -07006700 IWL_DEBUG_ASSOC("Associated as %d to: %s\n",
6701 priv->assoc_id,
6702 print_mac(mac, priv->active_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07006703
6704 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6705 return;
6706
6707 mutex_lock(&priv->mutex);
6708
Johannes Berg32bfd352007-12-19 01:31:26 +01006709 if (!priv->vif || !priv->is_open) {
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006710 mutex_unlock(&priv->mutex);
6711 return;
6712 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006713 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006714
Zhu Yib481de92007-09-25 17:54:57 -07006715 conf = ieee80211_get_hw_conf(priv->hw);
6716
6717 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006718 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006719
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006720 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6721 iwl3945_setup_rxon_timing(priv);
6722 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006723 sizeof(priv->rxon_timing), &priv->rxon_timing);
6724 if (rc)
6725 IWL_WARNING("REPLY_RXON_TIMING failed - "
6726 "Attempting to continue.\n");
6727
6728 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6729
6730 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6731
6732 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6733 priv->assoc_id, priv->beacon_int);
6734
6735 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6736 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6737 else
6738 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6739
6740 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6741 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6742 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6743 else
6744 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6745
6746 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
6747 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6748
6749 }
6750
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006751 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006752
6753 switch (priv->iw_mode) {
6754 case IEEE80211_IF_TYPE_STA:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006755 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006756 break;
6757
6758 case IEEE80211_IF_TYPE_IBSS:
6759
6760 /* clear out the station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006761 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006762
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006763 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
6764 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006765 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006766 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006767 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6768 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006769 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6770 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006771
6772 break;
6773
6774 default:
6775 IWL_ERROR("%s Should not be called in %d mode\n",
Ian Schrambc434dd2007-10-25 17:15:29 +08006776 __FUNCTION__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006777 break;
6778 }
6779
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006780 iwl3945_sequence_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006782 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006783
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006784 /* we have just associated, don't start scan too early */
6785 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07006786 mutex_unlock(&priv->mutex);
6787}
6788
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006789static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006790{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006791 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006792
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006793 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006794 return;
6795
6796 mutex_lock(&priv->mutex);
6797
6798 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006799 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006800
6801 mutex_unlock(&priv->mutex);
6802}
6803
Zhu Yi76bb77e2007-11-22 10:53:22 +08006804static int iwl3945_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
6805
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006806static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006807{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006808 struct iwl3945_priv *priv =
6809 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006810
6811 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6812
6813 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6814 return;
6815
Zhu Yia0646472007-12-20 14:10:01 +08006816 if (test_bit(STATUS_CONF_PENDING, &priv->status))
6817 iwl3945_mac_config(priv->hw, ieee80211_get_hw_conf(priv->hw));
Zhu Yi76bb77e2007-11-22 10:53:22 +08006818
Zhu Yib481de92007-09-25 17:54:57 -07006819 ieee80211_scan_completed(priv->hw);
6820
6821 /* Since setting the TXPOWER may have been deferred while
6822 * performing the scan, fire one off */
6823 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006824 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006825 mutex_unlock(&priv->mutex);
6826}
6827
6828/*****************************************************************************
6829 *
6830 * mac80211 entry point functions
6831 *
6832 *****************************************************************************/
6833
Zhu Yi5a669262008-01-14 17:46:18 -08006834#define UCODE_READY_TIMEOUT (2 * HZ)
6835
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006836static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006837{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006838 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08006839 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006840
6841 IWL_DEBUG_MAC80211("enter\n");
6842
Zhu Yi5a669262008-01-14 17:46:18 -08006843 if (pci_enable_device(priv->pci_dev)) {
6844 IWL_ERROR("Fail to pci_enable_device\n");
6845 return -ENODEV;
6846 }
6847 pci_restore_state(priv->pci_dev);
6848 pci_enable_msi(priv->pci_dev);
6849
6850 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6851 DRV_NAME, priv);
6852 if (ret) {
6853 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6854 goto out_disable_msi;
6855 }
6856
Zhu Yib481de92007-09-25 17:54:57 -07006857 /* we should be verifying the device is ready to be opened */
6858 mutex_lock(&priv->mutex);
6859
Zhu Yi5a669262008-01-14 17:46:18 -08006860 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6861 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6862 * ucode filename and max sizes are card-specific. */
6863
6864 if (!priv->ucode_code.len) {
6865 ret = iwl3945_read_ucode(priv);
6866 if (ret) {
6867 IWL_ERROR("Could not read microcode: %d\n", ret);
6868 mutex_unlock(&priv->mutex);
6869 goto out_release_irq;
6870 }
6871 }
6872
Zhu Yie655b9f2008-01-24 02:19:38 -08006873 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08006874
Zhu Yib481de92007-09-25 17:54:57 -07006875 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08006876
Zhu Yie655b9f2008-01-24 02:19:38 -08006877 if (ret)
6878 goto out_release_irq;
6879
6880 IWL_DEBUG_INFO("Start UP work.\n");
6881
6882 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6883 return 0;
6884
Zhu Yi5a669262008-01-14 17:46:18 -08006885 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6886 * mac80211 will not be run successfully. */
6887 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6888 test_bit(STATUS_READY, &priv->status),
6889 UCODE_READY_TIMEOUT);
6890 if (!ret) {
6891 if (!test_bit(STATUS_READY, &priv->status)) {
6892 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6893 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6894 ret = -ETIMEDOUT;
6895 goto out_release_irq;
6896 }
6897 }
6898
Zhu Yie655b9f2008-01-24 02:19:38 -08006899 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006900 IWL_DEBUG_MAC80211("leave\n");
6901 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006902
6903out_release_irq:
6904 free_irq(priv->pci_dev->irq, priv);
6905out_disable_msi:
6906 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006907 pci_disable_device(priv->pci_dev);
6908 priv->is_open = 0;
6909 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006910 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006911}
6912
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006913static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006914{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006915 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006916
6917 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006918
Zhu Yie655b9f2008-01-24 02:19:38 -08006919 if (!priv->is_open) {
6920 IWL_DEBUG_MAC80211("leave - skip\n");
6921 return;
6922 }
6923
Zhu Yib481de92007-09-25 17:54:57 -07006924 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006925
6926 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006927 /* stop mac, cancel any scan request and clear
6928 * RXON_FILTER_ASSOC_MSK BIT
6929 */
Zhu Yi5a669262008-01-14 17:46:18 -08006930 mutex_lock(&priv->mutex);
6931 iwl3945_scan_cancel_timeout(priv, 100);
6932 cancel_delayed_work(&priv->post_associate);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006933 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006934 }
6935
Zhu Yi5a669262008-01-14 17:46:18 -08006936 iwl3945_down(priv);
6937
6938 flush_workqueue(priv->workqueue);
6939 free_irq(priv->pci_dev->irq, priv);
6940 pci_disable_msi(priv->pci_dev);
6941 pci_save_state(priv->pci_dev);
6942 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006943
Zhu Yib481de92007-09-25 17:54:57 -07006944 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006945}
6946
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006947static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07006948 struct ieee80211_tx_control *ctl)
6949{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006950 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006951
6952 IWL_DEBUG_MAC80211("enter\n");
6953
6954 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR) {
6955 IWL_DEBUG_MAC80211("leave - monitor\n");
6956 return -1;
6957 }
6958
6959 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berg8318d782008-01-24 19:38:38 +01006960 ctl->tx_rate->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006961
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006962 if (iwl3945_tx_skb(priv, skb, ctl))
Zhu Yib481de92007-09-25 17:54:57 -07006963 dev_kfree_skb_any(skb);
6964
6965 IWL_DEBUG_MAC80211("leave\n");
6966 return 0;
6967}
6968
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006969static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006970 struct ieee80211_if_init_conf *conf)
6971{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006972 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006973 unsigned long flags;
Joe Perches0795af52007-10-03 17:59:30 -07006974 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07006975
Johannes Berg32bfd352007-12-19 01:31:26 +01006976 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006977
Johannes Berg32bfd352007-12-19 01:31:26 +01006978 if (priv->vif) {
6979 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006980 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006981 }
6982
6983 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006984 priv->vif = conf->vif;
Zhu Yib481de92007-09-25 17:54:57 -07006985
6986 spin_unlock_irqrestore(&priv->lock, flags);
6987
6988 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006989
6990 if (conf->mac_addr) {
6991 IWL_DEBUG_MAC80211("Set: %s\n", print_mac(mac, conf->mac_addr));
6992 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6993 }
6994
Zhu Yi5a669262008-01-14 17:46:18 -08006995 if (iwl3945_is_ready(priv))
6996 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006997
Zhu Yib481de92007-09-25 17:54:57 -07006998 mutex_unlock(&priv->mutex);
6999
Zhu Yi5a669262008-01-14 17:46:18 -08007000 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07007001 return 0;
7002}
7003
7004/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007005 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07007006 *
7007 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
7008 * be set inappropriately and the driver currently sets the hardware up to
7009 * use it whenever needed.
7010 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007011static int iwl3945_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07007012{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007013 struct iwl3945_priv *priv = hw->priv;
7014 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07007015 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08007016 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07007017
7018 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01007019 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07007020
Zhu Yi12342c42007-12-20 11:27:32 +08007021 priv->add_radiotap = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
7022
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007023 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007024 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08007025 ret = -EIO;
7026 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07007027 }
7028
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007029 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07007030 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08007031 IWL_DEBUG_MAC80211("leave - scanning\n");
7032 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07007033 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08007034 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007035 }
7036
7037 spin_lock_irqsave(&priv->lock, flags);
7038
Johannes Berg8318d782008-01-24 19:38:38 +01007039 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
7040 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07007041 if (!is_channel_valid(ch_info)) {
7042 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this SKU.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01007043 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07007044 IWL_DEBUG_MAC80211("leave - invalid channel\n");
7045 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08007046 ret = -EINVAL;
7047 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07007048 }
7049
Johannes Berg8318d782008-01-24 19:38:38 +01007050 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07007051
Johannes Berg8318d782008-01-24 19:38:38 +01007052 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07007053
7054 /* The list of supported rates and rate mask can be different
7055 * for each phymode; since the phymode may have changed, reset
7056 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007057 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007058
7059 spin_unlock_irqrestore(&priv->lock, flags);
7060
7061#ifdef IEEE80211_CONF_CHANNEL_SWITCH
7062 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007063 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08007064 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07007065 }
7066#endif
7067
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007068 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07007069
7070 if (!conf->radio_enabled) {
7071 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08007072 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07007073 }
7074
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007075 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007076 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08007077 ret = -EIO;
7078 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07007079 }
7080
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007081 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007082
7083 if (memcmp(&priv->active_rxon,
7084 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007085 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007086 else
7087 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
7088
7089 IWL_DEBUG_MAC80211("leave\n");
7090
Zhu Yi76bb77e2007-11-22 10:53:22 +08007091out:
Zhu Yia0646472007-12-20 14:10:01 +08007092 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07007093 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08007094 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007095}
7096
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007097static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007098{
7099 int rc = 0;
7100
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08007101 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07007102 return;
7103
7104 /* The following should be done only at AP bring up */
7105 if ((priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) == 0) {
7106
7107 /* RXON - unassoc (to set timing command) */
7108 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007109 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007110
7111 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007112 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
7113 iwl3945_setup_rxon_timing(priv);
7114 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07007115 sizeof(priv->rxon_timing), &priv->rxon_timing);
7116 if (rc)
7117 IWL_WARNING("REPLY_RXON_TIMING failed - "
7118 "Attempting to continue.\n");
7119
7120 /* FIXME: what should be the assoc_id for AP? */
7121 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
7122 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7123 priv->staging_rxon.flags |=
7124 RXON_FLG_SHORT_PREAMBLE_MSK;
7125 else
7126 priv->staging_rxon.flags &=
7127 ~RXON_FLG_SHORT_PREAMBLE_MSK;
7128
7129 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
7130 if (priv->assoc_capability &
7131 WLAN_CAPABILITY_SHORT_SLOT_TIME)
7132 priv->staging_rxon.flags |=
7133 RXON_FLG_SHORT_SLOT_MSK;
7134 else
7135 priv->staging_rxon.flags &=
7136 ~RXON_FLG_SHORT_SLOT_MSK;
7137
7138 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
7139 priv->staging_rxon.flags &=
7140 ~RXON_FLG_SHORT_SLOT_MSK;
7141 }
7142 /* restore RXON assoc */
7143 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007144 iwl3945_commit_rxon(priv);
7145 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08007146 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007147 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007148
7149 /* FIXME - we need to add code here to detect a totally new
7150 * configuration, reset the AP, unassoc, rxon timing, assoc,
7151 * clear sta table, add BCAST sta... */
7152}
7153
Johannes Berg32bfd352007-12-19 01:31:26 +01007154static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
7155 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07007156 struct ieee80211_if_conf *conf)
7157{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007158 struct iwl3945_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07007159 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07007160 unsigned long flags;
7161 int rc;
7162
7163 if (conf == NULL)
7164 return -EIO;
7165
Johannes Berg4150c572007-09-17 01:29:23 -04007166 /* XXX: this MUST use conf->mac_addr */
7167
Zhu Yib481de92007-09-25 17:54:57 -07007168 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
7169 (!conf->beacon || !conf->ssid_len)) {
7170 IWL_DEBUG_MAC80211
7171 ("Leaving in AP mode because HostAPD is not ready.\n");
7172 return 0;
7173 }
7174
Zhu Yi5a669262008-01-14 17:46:18 -08007175 if (!iwl3945_is_alive(priv))
7176 return -EAGAIN;
7177
Zhu Yib481de92007-09-25 17:54:57 -07007178 mutex_lock(&priv->mutex);
7179
Zhu Yib481de92007-09-25 17:54:57 -07007180 if (conf->bssid)
Joe Perches0795af52007-10-03 17:59:30 -07007181 IWL_DEBUG_MAC80211("bssid: %s\n",
7182 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07007183
Johannes Berg4150c572007-09-17 01:29:23 -04007184/*
7185 * very dubious code was here; the probe filtering flag is never set:
7186 *
Zhu Yib481de92007-09-25 17:54:57 -07007187 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
7188 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04007189 */
7190 if (unlikely(test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yib481de92007-09-25 17:54:57 -07007191 IWL_DEBUG_MAC80211("leave - scanning\n");
7192 mutex_unlock(&priv->mutex);
7193 return 0;
7194 }
7195
Johannes Berg32bfd352007-12-19 01:31:26 +01007196 if (priv->vif != vif) {
7197 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Zhu Yib481de92007-09-25 17:54:57 -07007198 mutex_unlock(&priv->mutex);
7199 return 0;
7200 }
7201
7202 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
7203 if (!conf->bssid) {
7204 conf->bssid = priv->mac_addr;
7205 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Joe Perches0795af52007-10-03 17:59:30 -07007206 IWL_DEBUG_MAC80211("bssid was set to: %s\n",
7207 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07007208 }
7209 if (priv->ibss_beacon)
7210 dev_kfree_skb(priv->ibss_beacon);
7211
7212 priv->ibss_beacon = conf->beacon;
7213 }
7214
Mohamed Abbasfde35712007-11-29 11:10:15 +08007215 if (iwl3945_is_rfkill(priv))
7216 goto done;
7217
Zhu Yib481de92007-09-25 17:54:57 -07007218 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
7219 !is_multicast_ether_addr(conf->bssid)) {
7220 /* If there is currently a HW scan going on in the background
7221 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007222 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07007223 IWL_WARNING("Aborted scan still in progress "
7224 "after 100ms\n");
7225 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
7226 mutex_unlock(&priv->mutex);
7227 return -EAGAIN;
7228 }
7229 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
7230
7231 /* TODO: Audit driver for usage of these members and see
7232 * if mac80211 deprecates them (priv->bssid looks like it
7233 * shouldn't be there, but I haven't scanned the IBSS code
7234 * to verify) - jpk */
7235 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
7236
7237 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007238 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007239 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007240 rc = iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007241 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007242 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08007243 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007244 }
7245
7246 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007247 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07007248 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007249 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007250 }
7251
Mohamed Abbasfde35712007-11-29 11:10:15 +08007252 done:
Zhu Yib481de92007-09-25 17:54:57 -07007253 spin_lock_irqsave(&priv->lock, flags);
7254 if (!conf->ssid_len)
7255 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
7256 else
7257 memcpy(priv->essid, conf->ssid, conf->ssid_len);
7258
7259 priv->essid_len = conf->ssid_len;
7260 spin_unlock_irqrestore(&priv->lock, flags);
7261
7262 IWL_DEBUG_MAC80211("leave\n");
7263 mutex_unlock(&priv->mutex);
7264
7265 return 0;
7266}
7267
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007268static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04007269 unsigned int changed_flags,
7270 unsigned int *total_flags,
7271 int mc_count, struct dev_addr_list *mc_list)
7272{
7273 /*
7274 * XXX: dummy
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007275 * see also iwl3945_connection_init_rx_config
Johannes Berg4150c572007-09-17 01:29:23 -04007276 */
7277 *total_flags = 0;
7278}
7279
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007280static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007281 struct ieee80211_if_init_conf *conf)
7282{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007283 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007284
7285 IWL_DEBUG_MAC80211("enter\n");
7286
7287 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08007288
Mohamed Abbasfde35712007-11-29 11:10:15 +08007289 if (iwl3945_is_ready_rf(priv)) {
7290 iwl3945_scan_cancel_timeout(priv, 100);
7291 cancel_delayed_work(&priv->post_associate);
7292 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
7293 iwl3945_commit_rxon(priv);
7294 }
Johannes Berg32bfd352007-12-19 01:31:26 +01007295 if (priv->vif == conf->vif) {
7296 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07007297 memset(priv->bssid, 0, ETH_ALEN);
7298 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
7299 priv->essid_len = 0;
7300 }
7301 mutex_unlock(&priv->mutex);
7302
7303 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07007304}
7305
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007306static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07007307{
7308 int rc = 0;
7309 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007310 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007311
7312 IWL_DEBUG_MAC80211("enter\n");
7313
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007314 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007315 spin_lock_irqsave(&priv->lock, flags);
7316
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007317 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007318 rc = -EIO;
7319 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
7320 goto out_unlock;
7321 }
7322
7323 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) { /* APs don't scan */
7324 rc = -EIO;
7325 IWL_ERROR("ERROR: APs don't scan\n");
7326 goto out_unlock;
7327 }
7328
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08007329 /* we don't schedule scan within next_scan_jiffies period */
7330 if (priv->next_scan_jiffies &&
7331 time_after(priv->next_scan_jiffies, jiffies)) {
7332 rc = -EAGAIN;
7333 goto out_unlock;
7334 }
Zhu Yib481de92007-09-25 17:54:57 -07007335 /* if we just finished scan ask for delay */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08007336 if (priv->last_scan_jiffies && time_after(priv->last_scan_jiffies +
7337 IWL_DELAY_NEXT_SCAN, jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07007338 rc = -EAGAIN;
7339 goto out_unlock;
7340 }
7341 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08007342 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007343 iwl3945_escape_essid(ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07007344
7345 priv->one_direct_scan = 1;
7346 priv->direct_ssid_len = (u8)
7347 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
7348 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08007349 } else
7350 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07007351
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007352 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007353
7354 IWL_DEBUG_MAC80211("leave\n");
7355
7356out_unlock:
7357 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007358 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007359
7360 return rc;
7361}
7362
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007363static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007364 const u8 *local_addr, const u8 *addr,
7365 struct ieee80211_key_conf *key)
7366{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007367 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007368 int rc = 0;
7369 u8 sta_id;
7370
7371 IWL_DEBUG_MAC80211("enter\n");
7372
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007373 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007374 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7375 return -EOPNOTSUPP;
7376 }
7377
7378 if (is_zero_ether_addr(addr))
7379 /* only support pairwise keys */
7380 return -EOPNOTSUPP;
7381
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007382 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07007383 if (sta_id == IWL_INVALID_STATION) {
Joe Perches0795af52007-10-03 17:59:30 -07007384 DECLARE_MAC_BUF(mac);
7385
7386 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
7387 print_mac(mac, addr));
Zhu Yib481de92007-09-25 17:54:57 -07007388 return -EINVAL;
7389 }
7390
7391 mutex_lock(&priv->mutex);
7392
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007393 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007394
Zhu Yib481de92007-09-25 17:54:57 -07007395 switch (cmd) {
7396 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007397 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007398 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007399 iwl3945_set_rxon_hwcrypto(priv, 1);
7400 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007401 key->hw_key_idx = sta_id;
7402 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7403 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7404 }
7405 break;
7406 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007407 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007408 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007409 iwl3945_set_rxon_hwcrypto(priv, 0);
7410 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007411 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7412 }
7413 break;
7414 default:
7415 rc = -EINVAL;
7416 }
7417
7418 IWL_DEBUG_MAC80211("leave\n");
7419 mutex_unlock(&priv->mutex);
7420
7421 return rc;
7422}
7423
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007424static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, int queue,
Zhu Yib481de92007-09-25 17:54:57 -07007425 const struct ieee80211_tx_queue_params *params)
7426{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007427 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007428 unsigned long flags;
7429 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007430
7431 IWL_DEBUG_MAC80211("enter\n");
7432
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007433 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007434 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7435 return -EIO;
7436 }
7437
7438 if (queue >= AC_NUM) {
7439 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7440 return 0;
7441 }
7442
Zhu Yib481de92007-09-25 17:54:57 -07007443 if (!priv->qos_data.qos_enable) {
7444 priv->qos_data.qos_active = 0;
7445 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
7446 return 0;
7447 }
7448 q = AC_NUM - 1 - queue;
7449
7450 spin_lock_irqsave(&priv->lock, flags);
7451
7452 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7453 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7454 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7455 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7be2008-02-10 16:49:38 +01007456 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007457
7458 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7459 priv->qos_data.qos_active = 1;
7460
7461 spin_unlock_irqrestore(&priv->lock, flags);
7462
7463 mutex_lock(&priv->mutex);
7464 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007465 iwl3945_activate_qos(priv, 1);
7466 else if (priv->assoc_id && iwl3945_is_associated(priv))
7467 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007468
7469 mutex_unlock(&priv->mutex);
7470
Zhu Yib481de92007-09-25 17:54:57 -07007471 IWL_DEBUG_MAC80211("leave\n");
7472 return 0;
7473}
7474
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007475static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007476 struct ieee80211_tx_queue_stats *stats)
7477{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007478 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007479 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007480 struct iwl3945_tx_queue *txq;
7481 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007482 unsigned long flags;
7483
7484 IWL_DEBUG_MAC80211("enter\n");
7485
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007486 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007487 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7488 return -EIO;
7489 }
7490
7491 spin_lock_irqsave(&priv->lock, flags);
7492
7493 for (i = 0; i < AC_NUM; i++) {
7494 txq = &priv->txq[i];
7495 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007496 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007497
7498 stats->data[i].len = q->n_window - avail;
7499 stats->data[i].limit = q->n_window - q->high_mark;
7500 stats->data[i].count = q->n_window;
7501
7502 }
7503 spin_unlock_irqrestore(&priv->lock, flags);
7504
7505 IWL_DEBUG_MAC80211("leave\n");
7506
7507 return 0;
7508}
7509
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007510static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007511 struct ieee80211_low_level_stats *stats)
7512{
7513 IWL_DEBUG_MAC80211("enter\n");
7514 IWL_DEBUG_MAC80211("leave\n");
7515
7516 return 0;
7517}
7518
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007519static u64 iwl3945_mac_get_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007520{
7521 IWL_DEBUG_MAC80211("enter\n");
7522 IWL_DEBUG_MAC80211("leave\n");
7523
7524 return 0;
7525}
7526
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007527static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007528{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007529 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007530 unsigned long flags;
7531
7532 mutex_lock(&priv->mutex);
7533 IWL_DEBUG_MAC80211("enter\n");
7534
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007535 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007536
Zhu Yib481de92007-09-25 17:54:57 -07007537 cancel_delayed_work(&priv->post_associate);
7538
7539 spin_lock_irqsave(&priv->lock, flags);
7540 priv->assoc_id = 0;
7541 priv->assoc_capability = 0;
7542 priv->call_post_assoc_from_beacon = 0;
7543
7544 /* new association get rid of ibss beacon skb */
7545 if (priv->ibss_beacon)
7546 dev_kfree_skb(priv->ibss_beacon);
7547
7548 priv->ibss_beacon = NULL;
7549
7550 priv->beacon_int = priv->hw->conf.beacon_int;
7551 priv->timestamp1 = 0;
7552 priv->timestamp0 = 0;
7553 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA))
7554 priv->beacon_int = 0;
7555
7556 spin_unlock_irqrestore(&priv->lock, flags);
7557
Mohamed Abbasfde35712007-11-29 11:10:15 +08007558 if (!iwl3945_is_ready_rf(priv)) {
7559 IWL_DEBUG_MAC80211("leave - not ready\n");
7560 mutex_unlock(&priv->mutex);
7561 return;
7562 }
7563
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007564 /* we are restarting association process
7565 * clear RXON_FILTER_ASSOC_MSK bit
7566 */
7567 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007568 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007569 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007570 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007571 }
7572
Zhu Yib481de92007-09-25 17:54:57 -07007573 /* Per mac80211.h: This is only used in IBSS mode... */
7574 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007575
Zhu Yib481de92007-09-25 17:54:57 -07007576 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7577 mutex_unlock(&priv->mutex);
7578 return;
7579 }
7580
Zhu Yib481de92007-09-25 17:54:57 -07007581 priv->only_active_channel = 0;
7582
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007583 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007584
7585 mutex_unlock(&priv->mutex);
7586
7587 IWL_DEBUG_MAC80211("leave\n");
7588
7589}
7590
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007591static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07007592 struct ieee80211_tx_control *control)
7593{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007594 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007595 unsigned long flags;
7596
7597 mutex_lock(&priv->mutex);
7598 IWL_DEBUG_MAC80211("enter\n");
7599
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007600 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007601 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7602 mutex_unlock(&priv->mutex);
7603 return -EIO;
7604 }
7605
7606 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
7607 IWL_DEBUG_MAC80211("leave - not IBSS\n");
7608 mutex_unlock(&priv->mutex);
7609 return -EIO;
7610 }
7611
7612 spin_lock_irqsave(&priv->lock, flags);
7613
7614 if (priv->ibss_beacon)
7615 dev_kfree_skb(priv->ibss_beacon);
7616
7617 priv->ibss_beacon = skb;
7618
7619 priv->assoc_id = 0;
7620
7621 IWL_DEBUG_MAC80211("leave\n");
7622 spin_unlock_irqrestore(&priv->lock, flags);
7623
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007624 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007625
7626 queue_work(priv->workqueue, &priv->post_associate.work);
7627
7628 mutex_unlock(&priv->mutex);
7629
7630 return 0;
7631}
7632
7633/*****************************************************************************
7634 *
7635 * sysfs attributes
7636 *
7637 *****************************************************************************/
7638
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007639#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007640
7641/*
7642 * The following adds a new attribute to the sysfs representation
7643 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7644 * used for controlling the debug level.
7645 *
7646 * See the level definitions in iwl for details.
7647 */
7648
7649static ssize_t show_debug_level(struct device_driver *d, char *buf)
7650{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007651 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007652}
7653static ssize_t store_debug_level(struct device_driver *d,
7654 const char *buf, size_t count)
7655{
7656 char *p = (char *)buf;
7657 u32 val;
7658
7659 val = simple_strtoul(p, &p, 0);
7660 if (p == buf)
7661 printk(KERN_INFO DRV_NAME
7662 ": %s is not in hex or decimal form.\n", buf);
7663 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007664 iwl3945_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007665
7666 return strnlen(buf, count);
7667}
7668
7669static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7670 show_debug_level, store_debug_level);
7671
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007672#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007673
7674static ssize_t show_rf_kill(struct device *d,
7675 struct device_attribute *attr, char *buf)
7676{
7677 /*
7678 * 0 - RF kill not enabled
7679 * 1 - SW based RF kill active (sysfs)
7680 * 2 - HW based RF kill active
7681 * 3 - Both HW and SW based RF kill active
7682 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007683 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007684 int val = (test_bit(STATUS_RF_KILL_SW, &priv->status) ? 0x1 : 0x0) |
7685 (test_bit(STATUS_RF_KILL_HW, &priv->status) ? 0x2 : 0x0);
7686
7687 return sprintf(buf, "%i\n", val);
7688}
7689
7690static ssize_t store_rf_kill(struct device *d,
7691 struct device_attribute *attr,
7692 const char *buf, size_t count)
7693{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007694 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007695
7696 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007697 iwl3945_radio_kill_sw(priv, buf[0] == '1');
Zhu Yib481de92007-09-25 17:54:57 -07007698 mutex_unlock(&priv->mutex);
7699
7700 return count;
7701}
7702
7703static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
7704
7705static ssize_t show_temperature(struct device *d,
7706 struct device_attribute *attr, char *buf)
7707{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007708 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007709
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007710 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007711 return -EAGAIN;
7712
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007713 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007714}
7715
7716static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7717
7718static ssize_t show_rs_window(struct device *d,
7719 struct device_attribute *attr,
7720 char *buf)
7721{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007722 struct iwl3945_priv *priv = d->driver_data;
7723 return iwl3945_fill_rs_info(priv->hw, buf, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07007724}
7725static DEVICE_ATTR(rs_window, S_IRUGO, show_rs_window, NULL);
7726
7727static ssize_t show_tx_power(struct device *d,
7728 struct device_attribute *attr, char *buf)
7729{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007730 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007731 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7732}
7733
7734static ssize_t store_tx_power(struct device *d,
7735 struct device_attribute *attr,
7736 const char *buf, size_t count)
7737{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007738 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007739 char *p = (char *)buf;
7740 u32 val;
7741
7742 val = simple_strtoul(p, &p, 10);
7743 if (p == buf)
7744 printk(KERN_INFO DRV_NAME
7745 ": %s is not in decimal form.\n", buf);
7746 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007747 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007748
7749 return count;
7750}
7751
7752static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7753
7754static ssize_t show_flags(struct device *d,
7755 struct device_attribute *attr, char *buf)
7756{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007757 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007758
7759 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7760}
7761
7762static ssize_t store_flags(struct device *d,
7763 struct device_attribute *attr,
7764 const char *buf, size_t count)
7765{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007766 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007767 u32 flags = simple_strtoul(buf, NULL, 0);
7768
7769 mutex_lock(&priv->mutex);
7770 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7771 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007772 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007773 IWL_WARNING("Could not cancel scan.\n");
7774 else {
7775 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7776 flags);
7777 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007778 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007779 }
7780 }
7781 mutex_unlock(&priv->mutex);
7782
7783 return count;
7784}
7785
7786static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7787
7788static ssize_t show_filter_flags(struct device *d,
7789 struct device_attribute *attr, char *buf)
7790{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007791 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007792
7793 return sprintf(buf, "0x%04X\n",
7794 le32_to_cpu(priv->active_rxon.filter_flags));
7795}
7796
7797static ssize_t store_filter_flags(struct device *d,
7798 struct device_attribute *attr,
7799 const char *buf, size_t count)
7800{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007801 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007802 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7803
7804 mutex_lock(&priv->mutex);
7805 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7806 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007807 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007808 IWL_WARNING("Could not cancel scan.\n");
7809 else {
7810 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7811 "0x%04X\n", filter_flags);
7812 priv->staging_rxon.filter_flags =
7813 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007814 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007815 }
7816 }
7817 mutex_unlock(&priv->mutex);
7818
7819 return count;
7820}
7821
7822static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7823 store_filter_flags);
7824
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007825#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007826
7827static ssize_t show_measurement(struct device *d,
7828 struct device_attribute *attr, char *buf)
7829{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007830 struct iwl3945_priv *priv = dev_get_drvdata(d);
7831 struct iwl3945_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007832 u32 size = sizeof(measure_report), len = 0, ofs = 0;
7833 u8 *data = (u8 *) & measure_report;
7834 unsigned long flags;
7835
7836 spin_lock_irqsave(&priv->lock, flags);
7837 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7838 spin_unlock_irqrestore(&priv->lock, flags);
7839 return 0;
7840 }
7841 memcpy(&measure_report, &priv->measure_report, size);
7842 priv->measurement_status = 0;
7843 spin_unlock_irqrestore(&priv->lock, flags);
7844
7845 while (size && (PAGE_SIZE - len)) {
7846 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7847 PAGE_SIZE - len, 1);
7848 len = strlen(buf);
7849 if (PAGE_SIZE - len)
7850 buf[len++] = '\n';
7851
7852 ofs += 16;
7853 size -= min(size, 16U);
7854 }
7855
7856 return len;
7857}
7858
7859static ssize_t store_measurement(struct device *d,
7860 struct device_attribute *attr,
7861 const char *buf, size_t count)
7862{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007863 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007864 struct ieee80211_measurement_params params = {
7865 .channel = le16_to_cpu(priv->active_rxon.channel),
7866 .start_time = cpu_to_le64(priv->last_tsf),
7867 .duration = cpu_to_le16(1),
7868 };
7869 u8 type = IWL_MEASURE_BASIC;
7870 u8 buffer[32];
7871 u8 channel;
7872
7873 if (count) {
7874 char *p = buffer;
7875 strncpy(buffer, buf, min(sizeof(buffer), count));
7876 channel = simple_strtoul(p, NULL, 0);
7877 if (channel)
7878 params.channel = channel;
7879
7880 p = buffer;
7881 while (*p && *p != ' ')
7882 p++;
7883 if (*p)
7884 type = simple_strtoul(p + 1, NULL, 0);
7885 }
7886
7887 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7888 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007889 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007890
7891 return count;
7892}
7893
7894static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7895 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007896#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007897
7898static ssize_t show_rate(struct device *d,
7899 struct device_attribute *attr, char *buf)
7900{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007901 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007902 unsigned long flags;
7903 int i;
7904
7905 spin_lock_irqsave(&priv->sta_lock, flags);
7906 if (priv->iw_mode == IEEE80211_IF_TYPE_STA)
7907 i = priv->stations[IWL_AP_ID].current_rate.s.rate;
7908 else
7909 i = priv->stations[IWL_STA_ID].current_rate.s.rate;
7910 spin_unlock_irqrestore(&priv->sta_lock, flags);
7911
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007912 i = iwl3945_rate_index_from_plcp(i);
Zhu Yib481de92007-09-25 17:54:57 -07007913 if (i == -1)
7914 return sprintf(buf, "0\n");
7915
7916 return sprintf(buf, "%d%s\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007917 (iwl3945_rates[i].ieee >> 1),
7918 (iwl3945_rates[i].ieee & 0x1) ? ".5" : "");
Zhu Yib481de92007-09-25 17:54:57 -07007919}
7920
7921static DEVICE_ATTR(rate, S_IRUSR, show_rate, NULL);
7922
7923static ssize_t store_retry_rate(struct device *d,
7924 struct device_attribute *attr,
7925 const char *buf, size_t count)
7926{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007927 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007928
7929 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7930 if (priv->retry_rate <= 0)
7931 priv->retry_rate = 1;
7932
7933 return count;
7934}
7935
7936static ssize_t show_retry_rate(struct device *d,
7937 struct device_attribute *attr, char *buf)
7938{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007939 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007940 return sprintf(buf, "%d", priv->retry_rate);
7941}
7942
7943static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7944 store_retry_rate);
7945
7946static ssize_t store_power_level(struct device *d,
7947 struct device_attribute *attr,
7948 const char *buf, size_t count)
7949{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007950 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007951 int rc;
7952 int mode;
7953
7954 mode = simple_strtoul(buf, NULL, 0);
7955 mutex_lock(&priv->mutex);
7956
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007957 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007958 rc = -EAGAIN;
7959 goto out;
7960 }
7961
7962 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7963 mode = IWL_POWER_AC;
7964 else
7965 mode |= IWL_POWER_ENABLED;
7966
7967 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007968 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007969 if (rc) {
7970 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7971 goto out;
7972 }
7973 priv->power_mode = mode;
7974 }
7975
7976 rc = count;
7977
7978 out:
7979 mutex_unlock(&priv->mutex);
7980 return rc;
7981}
7982
7983#define MAX_WX_STRING 80
7984
7985/* Values are in microsecond */
7986static const s32 timeout_duration[] = {
7987 350000,
7988 250000,
7989 75000,
7990 37000,
7991 25000,
7992};
7993static const s32 period_duration[] = {
7994 400000,
7995 700000,
7996 1000000,
7997 1000000,
7998 1000000
7999};
8000
8001static ssize_t show_power_level(struct device *d,
8002 struct device_attribute *attr, char *buf)
8003{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008004 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07008005 int level = IWL_POWER_LEVEL(priv->power_mode);
8006 char *p = buf;
8007
8008 p += sprintf(p, "%d ", level);
8009 switch (level) {
8010 case IWL_POWER_MODE_CAM:
8011 case IWL_POWER_AC:
8012 p += sprintf(p, "(AC)");
8013 break;
8014 case IWL_POWER_BATTERY:
8015 p += sprintf(p, "(BATTERY)");
8016 break;
8017 default:
8018 p += sprintf(p,
8019 "(Timeout %dms, Period %dms)",
8020 timeout_duration[level - 1] / 1000,
8021 period_duration[level - 1] / 1000);
8022 }
8023
8024 if (!(priv->power_mode & IWL_POWER_ENABLED))
8025 p += sprintf(p, " OFF\n");
8026 else
8027 p += sprintf(p, " \n");
8028
8029 return (p - buf + 1);
8030
8031}
8032
8033static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
8034 store_power_level);
8035
8036static ssize_t show_channels(struct device *d,
8037 struct device_attribute *attr, char *buf)
8038{
Johannes Berg8318d782008-01-24 19:38:38 +01008039 /* all this shit doesn't belong into sysfs anyway */
8040 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07008041}
8042
8043static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
8044
8045static ssize_t show_statistics(struct device *d,
8046 struct device_attribute *attr, char *buf)
8047{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008048 struct iwl3945_priv *priv = dev_get_drvdata(d);
8049 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07008050 u32 len = 0, ofs = 0;
8051 u8 *data = (u8 *) & priv->statistics;
8052 int rc = 0;
8053
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008054 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07008055 return -EAGAIN;
8056
8057 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008058 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008059 mutex_unlock(&priv->mutex);
8060
8061 if (rc) {
8062 len = sprintf(buf,
8063 "Error sending statistics request: 0x%08X\n", rc);
8064 return len;
8065 }
8066
8067 while (size && (PAGE_SIZE - len)) {
8068 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
8069 PAGE_SIZE - len, 1);
8070 len = strlen(buf);
8071 if (PAGE_SIZE - len)
8072 buf[len++] = '\n';
8073
8074 ofs += 16;
8075 size -= min(size, 16U);
8076 }
8077
8078 return len;
8079}
8080
8081static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
8082
8083static ssize_t show_antenna(struct device *d,
8084 struct device_attribute *attr, char *buf)
8085{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008086 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07008087
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008088 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07008089 return -EAGAIN;
8090
8091 return sprintf(buf, "%d\n", priv->antenna);
8092}
8093
8094static ssize_t store_antenna(struct device *d,
8095 struct device_attribute *attr,
8096 const char *buf, size_t count)
8097{
8098 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008099 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07008100
8101 if (count == 0)
8102 return 0;
8103
8104 if (sscanf(buf, "%1i", &ant) != 1) {
8105 IWL_DEBUG_INFO("not in hex or decimal form.\n");
8106 return count;
8107 }
8108
8109 if ((ant >= 0) && (ant <= 2)) {
8110 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008111 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07008112 } else
8113 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
8114
8115
8116 return count;
8117}
8118
8119static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
8120
8121static ssize_t show_status(struct device *d,
8122 struct device_attribute *attr, char *buf)
8123{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008124 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
8125 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07008126 return -EAGAIN;
8127 return sprintf(buf, "0x%08x\n", (int)priv->status);
8128}
8129
8130static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
8131
8132static ssize_t dump_error_log(struct device *d,
8133 struct device_attribute *attr,
8134 const char *buf, size_t count)
8135{
8136 char *p = (char *)buf;
8137
8138 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008139 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07008140
8141 return strnlen(buf, count);
8142}
8143
8144static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
8145
8146static ssize_t dump_event_log(struct device *d,
8147 struct device_attribute *attr,
8148 const char *buf, size_t count)
8149{
8150 char *p = (char *)buf;
8151
8152 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008153 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07008154
8155 return strnlen(buf, count);
8156}
8157
8158static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
8159
8160/*****************************************************************************
8161 *
8162 * driver setup and teardown
8163 *
8164 *****************************************************************************/
8165
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008166static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07008167{
8168 priv->workqueue = create_workqueue(DRV_NAME);
8169
8170 init_waitqueue_head(&priv->wait_command_queue);
8171
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008172 INIT_WORK(&priv->up, iwl3945_bg_up);
8173 INIT_WORK(&priv->restart, iwl3945_bg_restart);
8174 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
8175 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
8176 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
8177 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
8178 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
8179 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
8180 INIT_DELAYED_WORK(&priv->post_associate, iwl3945_bg_post_associate);
8181 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
8182 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
8183 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07008184
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008185 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008186
8187 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008188 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07008189}
8190
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008191static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07008192{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008193 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008194
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09008195 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07008196 cancel_delayed_work(&priv->scan_check);
8197 cancel_delayed_work(&priv->alive_start);
8198 cancel_delayed_work(&priv->post_associate);
8199 cancel_work_sync(&priv->beacon_update);
8200}
8201
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008202static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07008203 &dev_attr_antenna.attr,
8204 &dev_attr_channels.attr,
8205 &dev_attr_dump_errors.attr,
8206 &dev_attr_dump_events.attr,
8207 &dev_attr_flags.attr,
8208 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008209#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07008210 &dev_attr_measurement.attr,
8211#endif
8212 &dev_attr_power_level.attr,
8213 &dev_attr_rate.attr,
8214 &dev_attr_retry_rate.attr,
8215 &dev_attr_rf_kill.attr,
8216 &dev_attr_rs_window.attr,
8217 &dev_attr_statistics.attr,
8218 &dev_attr_status.attr,
8219 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07008220 &dev_attr_tx_power.attr,
8221
8222 NULL
8223};
8224
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008225static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07008226 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008227 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07008228};
8229
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008230static struct ieee80211_ops iwl3945_hw_ops = {
8231 .tx = iwl3945_mac_tx,
8232 .start = iwl3945_mac_start,
8233 .stop = iwl3945_mac_stop,
8234 .add_interface = iwl3945_mac_add_interface,
8235 .remove_interface = iwl3945_mac_remove_interface,
8236 .config = iwl3945_mac_config,
8237 .config_interface = iwl3945_mac_config_interface,
8238 .configure_filter = iwl3945_configure_filter,
8239 .set_key = iwl3945_mac_set_key,
8240 .get_stats = iwl3945_mac_get_stats,
8241 .get_tx_stats = iwl3945_mac_get_tx_stats,
8242 .conf_tx = iwl3945_mac_conf_tx,
8243 .get_tsf = iwl3945_mac_get_tsf,
8244 .reset_tsf = iwl3945_mac_reset_tsf,
8245 .beacon_update = iwl3945_mac_beacon_update,
8246 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07008247};
8248
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008249static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07008250{
8251 int err = 0;
8252 u32 pci_id;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008253 struct iwl3945_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07008254 struct ieee80211_hw *hw;
8255 int i;
Zhu Yi5a669262008-01-14 17:46:18 -08008256 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07008257
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008258 /* Disabling hardware scan means that mac80211 will perform scans
8259 * "the hard way", rather than using device's scan. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008260 if (iwl3945_param_disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07008261 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008262 iwl3945_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07008263 }
8264
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008265 if ((iwl3945_param_queues_num > IWL_MAX_NUM_QUEUES) ||
8266 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
Zhu Yib481de92007-09-25 17:54:57 -07008267 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
8268 IWL_MIN_NUM_QUEUES, IWL_MAX_NUM_QUEUES);
8269 err = -EINVAL;
8270 goto out;
8271 }
8272
8273 /* mac80211 allocates memory for this device instance, including
8274 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008275 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07008276 if (hw == NULL) {
8277 IWL_ERROR("Can not allocate network device\n");
8278 err = -ENOMEM;
8279 goto out;
8280 }
8281 SET_IEEE80211_DEV(hw, &pdev->dev);
8282
Johannes Bergf51359a2007-10-28 14:53:36 +01008283 hw->rate_control_algorithm = "iwl-3945-rs";
8284
Zhu Yib481de92007-09-25 17:54:57 -07008285 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
8286 priv = hw->priv;
8287 priv->hw = hw;
8288
8289 priv->pci_dev = pdev;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008290
8291 /* Select antenna (may be helpful if only one antenna is connected) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008292 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008293#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008294 iwl3945_debug_level = iwl3945_param_debug;
Zhu Yib481de92007-09-25 17:54:57 -07008295 atomic_set(&priv->restrict_refcnt, 0);
8296#endif
8297 priv->retry_rate = 1;
8298
8299 priv->ibss_beacon = NULL;
8300
8301 /* Tell mac80211 and its clients (e.g. Wireless Extensions)
8302 * the range of signal quality values that we'll provide.
8303 * Negative values for level/noise indicate that we'll provide dBm.
8304 * For WE, at least, non-0 values here *enable* display of values
8305 * in app (iwconfig). */
8306 hw->max_rssi = -20; /* signal level, negative indicates dBm */
8307 hw->max_noise = -20; /* noise level, negative indicates dBm */
8308 hw->max_signal = 100; /* link quality indication (%) */
8309
8310 /* Tell mac80211 our Tx characteristics */
8311 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE;
8312
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008313 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07008314 hw->queues = 4;
8315
8316 spin_lock_init(&priv->lock);
8317 spin_lock_init(&priv->power_data.lock);
8318 spin_lock_init(&priv->sta_lock);
8319 spin_lock_init(&priv->hcmd_lock);
8320
8321 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++)
8322 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
8323
8324 INIT_LIST_HEAD(&priv->free_frames);
8325
8326 mutex_init(&priv->mutex);
8327 if (pci_enable_device(pdev)) {
8328 err = -ENODEV;
8329 goto out_ieee80211_free_hw;
8330 }
8331
8332 pci_set_master(pdev);
8333
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008334 /* Clear the driver's (not device's) station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008335 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008336
8337 priv->data_retry_limit = -1;
8338 priv->ieee_channels = NULL;
8339 priv->ieee_rates = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01008340 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07008341
8342 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
8343 if (!err)
8344 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
8345 if (err) {
8346 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
8347 goto out_pci_disable_device;
8348 }
8349
8350 pci_set_drvdata(pdev, priv);
8351 err = pci_request_regions(pdev, DRV_NAME);
8352 if (err)
8353 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008354
Zhu Yib481de92007-09-25 17:54:57 -07008355 /* We disable the RETRY_TIMEOUT register (0x41) to keep
8356 * PCI Tx retries from interfering with C3 CPU state */
8357 pci_write_config_byte(pdev, 0x41, 0x00);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008358
Zhu Yib481de92007-09-25 17:54:57 -07008359 priv->hw_base = pci_iomap(pdev, 0, 0);
8360 if (!priv->hw_base) {
8361 err = -ENODEV;
8362 goto out_pci_release_regions;
8363 }
8364
8365 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
8366 (unsigned long long) pci_resource_len(pdev, 0));
8367 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
8368
8369 /* Initialize module parameter values here */
8370
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008371 /* Disable radio (SW RF KILL) via parameter when loading driver */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008372 if (iwl3945_param_disable) {
Zhu Yib481de92007-09-25 17:54:57 -07008373 set_bit(STATUS_RF_KILL_SW, &priv->status);
8374 IWL_DEBUG_INFO("Radio disabled.\n");
8375 }
8376
8377 priv->iw_mode = IEEE80211_IF_TYPE_STA;
8378
8379 pci_id =
8380 (priv->pci_dev->device << 16) | priv->pci_dev->subsystem_device;
8381
8382 switch (pci_id) {
8383 case 0x42221005: /* 0x4222 0x8086 0x1005 is BG SKU */
8384 case 0x42221034: /* 0x4222 0x8086 0x1034 is BG SKU */
8385 case 0x42271014: /* 0x4227 0x8086 0x1014 is BG SKU */
8386 case 0x42221044: /* 0x4222 0x8086 0x1044 is BG SKU */
8387 priv->is_abg = 0;
8388 break;
8389
8390 /*
8391 * Rest are assumed ABG SKU -- if this is not the
8392 * case then the card will get the wrong 'Detected'
8393 * line in the kernel log however the code that
8394 * initializes the GEO table will detect no A-band
8395 * channels and remove the is_abg mask.
8396 */
8397 default:
8398 priv->is_abg = 1;
8399 break;
8400 }
8401
8402 printk(KERN_INFO DRV_NAME
8403 ": Detected Intel PRO/Wireless 3945%sBG Network Connection\n",
8404 priv->is_abg ? "A" : "");
8405
8406 /* Device-specific setup */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008407 if (iwl3945_hw_set_hw_setting(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07008408 IWL_ERROR("failed to set hw settings\n");
Zhu Yib481de92007-09-25 17:54:57 -07008409 goto out_iounmap;
8410 }
8411
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008412 if (iwl3945_param_qos_enable)
Zhu Yib481de92007-09-25 17:54:57 -07008413 priv->qos_data.qos_enable = 1;
8414
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008415 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008416
8417 priv->qos_data.qos_active = 0;
8418 priv->qos_data.qos_cap.val = 0;
Zhu Yib481de92007-09-25 17:54:57 -07008419
Johannes Berg8318d782008-01-24 19:38:38 +01008420 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008421 iwl3945_setup_deferred_work(priv);
8422 iwl3945_setup_rx_handlers(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008423
8424 priv->rates_mask = IWL_RATES_MASK;
8425 /* If power management is turned on, default to AC mode */
8426 priv->power_mode = IWL_POWER_AC;
8427 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
8428
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008429 iwl3945_disable_interrupts(priv);
Jes Sorensen49df2b32007-10-26 16:10:39 +02008430
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008431 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008432 if (err) {
8433 IWL_ERROR("failed to create sysfs device attributes\n");
Zhu Yib481de92007-09-25 17:54:57 -07008434 goto out_release_irq;
8435 }
8436
Zhu Yi5a669262008-01-14 17:46:18 -08008437 /* nic init */
8438 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
8439 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
8440
8441 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
8442 err = iwl3945_poll_bit(priv, CSR_GP_CNTRL,
8443 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
8444 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
8445 if (err < 0) {
8446 IWL_DEBUG_INFO("Failed to init the card\n");
8447 goto out_remove_sysfs;
8448 }
8449 /* Read the EEPROM */
8450 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008451 if (err) {
Zhu Yi5a669262008-01-14 17:46:18 -08008452 IWL_ERROR("Unable to init EEPROM\n");
8453 goto out_remove_sysfs;
8454 }
8455 /* MAC Address location in EEPROM same for 3945/4965 */
8456 get_eeprom_mac(priv, priv->mac_addr);
8457 IWL_DEBUG_INFO("MAC address: %s\n", print_mac(mac, priv->mac_addr));
8458 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
8459
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008460 err = iwl3945_init_channel_map(priv);
8461 if (err) {
8462 IWL_ERROR("initializing regulatory failed: %d\n", err);
8463 goto out_remove_sysfs;
8464 }
8465
8466 err = iwl3945_init_geos(priv);
8467 if (err) {
8468 IWL_ERROR("initializing geos failed: %d\n", err);
8469 goto out_free_channel_map;
8470 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008471
Zhu Yi5a669262008-01-14 17:46:18 -08008472 iwl3945_rate_control_register(priv->hw);
8473 err = ieee80211_register_hw(priv->hw);
8474 if (err) {
8475 IWL_ERROR("Failed to register network device (error %d)\n", err);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008476 goto out_free_geos;
Zhu Yib481de92007-09-25 17:54:57 -07008477 }
8478
Zhu Yi5a669262008-01-14 17:46:18 -08008479 priv->hw->conf.beacon_int = 100;
8480 priv->mac80211_registered = 1;
8481 pci_save_state(pdev);
8482 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008483
8484 return 0;
8485
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008486 out_free_geos:
8487 iwl3945_free_geos(priv);
8488 out_free_channel_map:
8489 iwl3945_free_channel_map(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08008490 out_remove_sysfs:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008491 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008492
8493 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07008494 destroy_workqueue(priv->workqueue);
8495 priv->workqueue = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008496 iwl3945_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008497
8498 out_iounmap:
8499 pci_iounmap(pdev, priv->hw_base);
8500 out_pci_release_regions:
8501 pci_release_regions(pdev);
8502 out_pci_disable_device:
8503 pci_disable_device(pdev);
8504 pci_set_drvdata(pdev, NULL);
8505 out_ieee80211_free_hw:
8506 ieee80211_free_hw(priv->hw);
8507 out:
8508 return err;
8509}
8510
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008511static void iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008512{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008513 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008514 struct list_head *p, *q;
8515 int i;
8516
8517 if (!priv)
8518 return;
8519
8520 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8521
Zhu Yib481de92007-09-25 17:54:57 -07008522 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008523
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008524 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008525
8526 /* Free MAC hash list for ADHOC */
8527 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++) {
8528 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
8529 list_del(p);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008530 kfree(list_entry(p, struct iwl3945_ibss_seq, list));
Zhu Yib481de92007-09-25 17:54:57 -07008531 }
8532 }
8533
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008534 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008535
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008536 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008537
8538 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008539 iwl3945_rx_queue_free(priv, &priv->rxq);
8540 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008541
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008542 iwl3945_unset_hw_setting(priv);
8543 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008544
8545 if (priv->mac80211_registered) {
8546 ieee80211_unregister_hw(priv->hw);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008547 iwl3945_rate_control_unregister(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008548 }
8549
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08008550 /*netif_stop_queue(dev); */
8551 flush_workqueue(priv->workqueue);
8552
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008553 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008554 * priv->workqueue... so we can't take down the workqueue
8555 * until now... */
8556 destroy_workqueue(priv->workqueue);
8557 priv->workqueue = NULL;
8558
Zhu Yib481de92007-09-25 17:54:57 -07008559 pci_iounmap(pdev, priv->hw_base);
8560 pci_release_regions(pdev);
8561 pci_disable_device(pdev);
8562 pci_set_drvdata(pdev, NULL);
8563
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008564 iwl3945_free_channel_map(priv);
8565 iwl3945_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008566
8567 if (priv->ibss_beacon)
8568 dev_kfree_skb(priv->ibss_beacon);
8569
8570 ieee80211_free_hw(priv->hw);
8571}
8572
8573#ifdef CONFIG_PM
8574
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008575static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008576{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008577 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008578
Zhu Yie655b9f2008-01-24 02:19:38 -08008579 if (priv->is_open) {
8580 set_bit(STATUS_IN_SUSPEND, &priv->status);
8581 iwl3945_mac_stop(priv->hw);
8582 priv->is_open = 1;
8583 }
Zhu Yib481de92007-09-25 17:54:57 -07008584
Zhu Yib481de92007-09-25 17:54:57 -07008585 pci_set_power_state(pdev, PCI_D3hot);
8586
Zhu Yib481de92007-09-25 17:54:57 -07008587 return 0;
8588}
8589
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008590static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008591{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008592 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008593
Zhu Yib481de92007-09-25 17:54:57 -07008594 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008595
Zhu Yie655b9f2008-01-24 02:19:38 -08008596 if (priv->is_open)
8597 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008598
Zhu Yie655b9f2008-01-24 02:19:38 -08008599 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008600 return 0;
8601}
8602
8603#endif /* CONFIG_PM */
8604
8605/*****************************************************************************
8606 *
8607 * driver and module entry point
8608 *
8609 *****************************************************************************/
8610
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008611static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008612 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008613 .id_table = iwl3945_hw_card_ids,
8614 .probe = iwl3945_pci_probe,
8615 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008616#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008617 .suspend = iwl3945_pci_suspend,
8618 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008619#endif
8620};
8621
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008622static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008623{
8624
8625 int ret;
8626 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8627 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008628 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008629 if (ret) {
8630 IWL_ERROR("Unable to initialize PCI module\n");
8631 return ret;
8632 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008633#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008634 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008635 if (ret) {
8636 IWL_ERROR("Unable to create driver sysfs file\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008637 pci_unregister_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008638 return ret;
8639 }
8640#endif
8641
8642 return ret;
8643}
8644
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008645static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008646{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008647#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008648 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008649#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008650 pci_unregister_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008651}
8652
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008653module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008654MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008655module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008656MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008657module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008658MODULE_PARM_DESC(hwcrypto,
8659 "using hardware crypto engine (default 0 [software])\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008660module_param_named(debug, iwl3945_param_debug, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008661MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008662module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008663MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8664
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008665module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008666MODULE_PARM_DESC(queues_num, "number of hw queues.");
8667
8668/* QoS */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008669module_param_named(qos_enable, iwl3945_param_qos_enable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008670MODULE_PARM_DESC(qos_enable, "enable all QoS functionality");
8671
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008672module_exit(iwl3945_exit);
8673module_init(iwl3945_init);