blob: 8009094503e4be5688a77c35262a52e149e07d85 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatreeb7ae892008-03-11 16:17:17 -07003 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
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>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Tomas Winkler82b9a122008-03-04 18:09:30 -080049#include "iwl-3945-core.h"
Zhu Yib481de92007-09-25 17:54:57 -070050#include "iwl-3945.h"
51#include "iwl-helpers.h"
52
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080053#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080054u32 iwl3945_debug_level;
Zhu Yib481de92007-09-25 17:54:57 -070055#endif
56
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080057static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
58 struct iwl3945_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080059
Zhu Yib481de92007-09-25 17:54:57 -070060/******************************************************************************
61 *
62 * module boiler plate
63 *
64 ******************************************************************************/
65
66/* module parameters */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080067static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */
68static int iwl3945_param_debug; /* def: 0 = minimal debug log messages */
69static int iwl3945_param_disable; /* def: 0 = enable radio */
Ben Cahill9fbab512007-11-29 11:09:47 +080070static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080071int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */
72static int iwl3945_param_qos_enable = 1; /* def: 1 = use quality of service */
Ron Rindjunskydfe7d452008-04-15 16:01:45 -070073int iwl3945_param_queues_num = IWL39_MAX_NUM_QUEUES; /* def: 8 Tx queues */
Zhu Yib481de92007-09-25 17:54:57 -070074
75/*
76 * module name, copyright, version, etc.
77 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
78 */
79
80#define DRV_DESCRIPTION \
81"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
82
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080083#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070084#define VD "d"
85#else
86#define VD
87#endif
88
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080089#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070090#define VS "s"
91#else
92#define VS
93#endif
94
Reinette Chatreb9e0b442008-02-08 16:39:11 -080095#define IWLWIFI_VERSION "1.2.26k" VD VS
Reinette Chatreeb7ae892008-03-11 16:17:17 -070096#define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation"
Zhu Yib481de92007-09-25 17:54:57 -070097#define DRV_VERSION IWLWIFI_VERSION
98
Zhu Yib481de92007-09-25 17:54:57 -070099
100MODULE_DESCRIPTION(DRV_DESCRIPTION);
101MODULE_VERSION(DRV_VERSION);
102MODULE_AUTHOR(DRV_COPYRIGHT);
103MODULE_LICENSE("GPL");
104
Johannes Berg8318d782008-01-24 19:38:38 +0100105static const struct ieee80211_supported_band *iwl3945_get_band(
106 struct iwl3945_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700107{
Johannes Berg8318d782008-01-24 19:38:38 +0100108 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700109}
110
Zhu Yib481de92007-09-25 17:54:57 -0700111/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
112 * DMA services
113 *
114 * Theory of operation
115 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800116 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
117 * of buffer descriptors, each of which points to one or more data buffers for
118 * the device to read from or fill. Driver and device exchange status of each
119 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
120 * entries in each circular buffer, to protect against confusing empty and full
121 * queue states.
122 *
123 * The device reads or writes the data in the queues via the device's several
124 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700125 *
126 * For Tx queue, there are low mark and high mark limits. If, after queuing
127 * the packet for Tx, free space become < low mark, Tx queue stopped. When
128 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
129 * Tx queue resumed.
130 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800131 * The 3945 operates with six queues: One receive queue, one transmit queue
132 * (#4) for sending commands to the device firmware, and four transmit queues
133 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
Zhu Yib481de92007-09-25 17:54:57 -0700134 ***************************************************/
135
Tomas Winklerc54b6792008-03-06 17:36:53 -0800136int iwl3945_queue_space(const struct iwl3945_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700137{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800138 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700139
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800140 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700141 s -= q->n_bd;
142
143 if (s <= 0)
144 s += q->n_window;
145 /* keep some reserve to not confuse empty and full situations */
146 s -= 2;
147 if (s < 0)
148 s = 0;
149 return s;
150}
151
Tomas Winklerc54b6792008-03-06 17:36:53 -0800152int iwl3945_x2_queue_used(const struct iwl3945_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700153{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800154 return q->write_ptr > q->read_ptr ?
155 (i >= q->read_ptr && i < q->write_ptr) :
156 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700157}
158
Tomas Winklerc54b6792008-03-06 17:36:53 -0800159
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800160static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700161{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800162 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700163 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800164 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700165
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800166 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700167 return index & (q->n_window - 1);
168}
169
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800170/**
171 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
172 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800173static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700174 int count, int slots_num, u32 id)
175{
176 q->n_bd = count;
177 q->n_window = slots_num;
178 q->id = id;
179
Tomas Winklerc54b6792008-03-06 17:36:53 -0800180 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
181 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700182 BUG_ON(!is_power_of_2(count));
183
184 /* slots_num must be power-of-two size, otherwise
185 * get_cmd_index is broken. */
186 BUG_ON(!is_power_of_2(slots_num));
187
188 q->low_mark = q->n_window / 4;
189 if (q->low_mark < 4)
190 q->low_mark = 4;
191
192 q->high_mark = q->n_window / 8;
193 if (q->high_mark < 2)
194 q->high_mark = 2;
195
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800196 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700197
198 return 0;
199}
200
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800201/**
202 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
203 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800204static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
205 struct iwl3945_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700206{
207 struct pci_dev *dev = priv->pci_dev;
208
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800209 /* Driver private data, only for Tx (not command) queues,
210 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700211 if (id != IWL_CMD_QUEUE_NUM) {
212 txq->txb = kmalloc(sizeof(txq->txb[0]) *
213 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
214 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800215 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700216 "structures failed\n");
217 goto error;
218 }
219 } else
220 txq->txb = NULL;
221
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800222 /* Circular buffer of transmit frame descriptors (TFDs),
223 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700224 txq->bd = pci_alloc_consistent(dev,
225 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
226 &txq->q.dma_addr);
227
228 if (!txq->bd) {
229 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
230 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
231 goto error;
232 }
233 txq->q.id = id;
234
235 return 0;
236
237 error:
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300238 kfree(txq->txb);
239 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700240
241 return -ENOMEM;
242}
243
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800244/**
245 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
246 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800247int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
248 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700249{
250 struct pci_dev *dev = priv->pci_dev;
251 int len;
252 int rc = 0;
253
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800254 /*
255 * Alloc buffer array for commands (Tx or other types of commands).
256 * For the command queue (#4), allocate command space + one big
257 * command for scan, since scan command is very huge; the system will
258 * not have two scans at the same time, so only one is needed.
259 * For data Tx queues (all other queues), no super-size command
260 * space is needed.
261 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800262 len = sizeof(struct iwl3945_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700263 if (txq_id == IWL_CMD_QUEUE_NUM)
264 len += IWL_MAX_SCAN_SIZE;
265 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
266 if (!txq->cmd)
267 return -ENOMEM;
268
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800269 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800270 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700271 if (rc) {
272 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
273
274 return -ENOMEM;
275 }
276 txq->need_update = 0;
277
278 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800279 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700280 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800281
282 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800283 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700284
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800285 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700287
288 return 0;
289}
290
291/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800292 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700293 * @txq: Transmit queue to deallocate.
294 *
295 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800296 * Free all buffers.
297 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700298 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800299void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700300{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800301 struct iwl3945_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700302 struct pci_dev *dev = priv->pci_dev;
303 int len;
304
305 if (q->n_bd == 0)
306 return;
307
308 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800309 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800310 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800311 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700312
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800313 len = sizeof(struct iwl3945_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700314 if (q->id == IWL_CMD_QUEUE_NUM)
315 len += IWL_MAX_SCAN_SIZE;
316
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800317 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700318 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
319
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800320 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700321 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800322 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700323 txq->q.n_bd, txq->bd, txq->q.dma_addr);
324
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800325 /* De-alloc array of per-TFD driver data */
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300326 kfree(txq->txb);
327 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700328
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800329 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700330 memset(txq, 0, sizeof(*txq));
331}
332
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800333const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700334
335/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800336 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700337 * the functionality provided here
338 */
339
340/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800341#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800342/**
343 * iwl3945_remove_station - Remove driver's knowledge of station.
344 *
345 * NOTE: This does not remove station from device's station table.
346 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800347static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700348{
349 int index = IWL_INVALID_STATION;
350 int i;
351 unsigned long flags;
352
353 spin_lock_irqsave(&priv->sta_lock, flags);
354
355 if (is_ap)
356 index = IWL_AP_ID;
357 else if (is_broadcast_ether_addr(addr))
358 index = priv->hw_setting.bcast_sta_id;
359 else
360 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
361 if (priv->stations[i].used &&
362 !compare_ether_addr(priv->stations[i].sta.sta.addr,
363 addr)) {
364 index = i;
365 break;
366 }
367
368 if (unlikely(index == IWL_INVALID_STATION))
369 goto out;
370
371 if (priv->stations[index].used) {
372 priv->stations[index].used = 0;
373 priv->num_stations--;
374 }
375
376 BUG_ON(priv->num_stations < 0);
377
378out:
379 spin_unlock_irqrestore(&priv->sta_lock, flags);
380 return 0;
381}
Zhu Yi556f8db2007-09-27 11:27:33 +0800382#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800383
384/**
385 * iwl3945_clear_stations_table - Clear the driver's station table
386 *
387 * NOTE: This does not clear or otherwise alter the device's station table.
388 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800389static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700390{
391 unsigned long flags;
392
393 spin_lock_irqsave(&priv->sta_lock, flags);
394
395 priv->num_stations = 0;
396 memset(priv->stations, 0, sizeof(priv->stations));
397
398 spin_unlock_irqrestore(&priv->sta_lock, flags);
399}
400
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800401/**
402 * iwl3945_add_station - Add station to station tables in driver and device
403 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800404u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700405{
406 int i;
407 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800408 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700409 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800410 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700411
412 spin_lock_irqsave(&priv->sta_lock, flags_spin);
413 if (is_ap)
414 index = IWL_AP_ID;
415 else if (is_broadcast_ether_addr(addr))
416 index = priv->hw_setting.bcast_sta_id;
417 else
418 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
419 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
420 addr)) {
421 index = i;
422 break;
423 }
424
425 if (!priv->stations[i].used &&
426 index == IWL_INVALID_STATION)
427 index = i;
428 }
429
Ian Schram01ebd062007-10-25 17:15:22 +0800430 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700431 since they have different meaning */
432 if (unlikely(index == IWL_INVALID_STATION)) {
433 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
434 return index;
435 }
436
437 if (priv->stations[index].used &&
438 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
439 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
440 return index;
441 }
442
Johannes Berge1749612008-10-27 15:59:26 -0700443 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
Zhu Yib481de92007-09-25 17:54:57 -0700444 station = &priv->stations[index];
445 station->used = 1;
446 priv->num_stations++;
447
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800448 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800449 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700450 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
451 station->sta.mode = 0;
452 station->sta.sta.sta_id = index;
453 station->sta.station_flags = 0;
454
Johannes Berg8318d782008-01-24 19:38:38 +0100455 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800456 rate = IWL_RATE_6M_PLCP;
457 else
458 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800459
460 /* Turn on both antennas for the station... */
461 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800462 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800463 station->current_rate.rate_n_flags =
464 le16_to_cpu(station->sta.rate_n_flags);
465
Zhu Yib481de92007-09-25 17:54:57 -0700466 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800467
468 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800469 iwl3945_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700470 return index;
471
472}
473
474/*************** DRIVER STATUS FUNCTIONS *****/
475
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800476static inline int iwl3945_is_ready(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700477{
478 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
479 * set but EXIT_PENDING is not */
480 return test_bit(STATUS_READY, &priv->status) &&
481 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
482 !test_bit(STATUS_EXIT_PENDING, &priv->status);
483}
484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800485static inline int iwl3945_is_alive(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700486{
487 return test_bit(STATUS_ALIVE, &priv->status);
488}
489
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800490static inline int iwl3945_is_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700491{
492 return test_bit(STATUS_INIT, &priv->status);
493}
494
Adel Gadllah80fcc9e2008-07-01 17:49:50 +0200495static inline int iwl3945_is_rfkill_sw(struct iwl3945_priv *priv)
496{
497 return test_bit(STATUS_RF_KILL_SW, &priv->status);
498}
499
500static inline int iwl3945_is_rfkill_hw(struct iwl3945_priv *priv)
501{
502 return test_bit(STATUS_RF_KILL_HW, &priv->status);
503}
504
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800505static inline int iwl3945_is_rfkill(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700506{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +0200507 return iwl3945_is_rfkill_hw(priv) ||
508 iwl3945_is_rfkill_sw(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700509}
510
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800511static inline int iwl3945_is_ready_rf(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700512{
513
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800514 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700515 return 0;
516
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800517 return iwl3945_is_ready(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700518}
519
520/*************** HOST COMMAND QUEUE FUNCTIONS *****/
521
522#define IWL_CMD(x) case x : return #x
523
524static const char *get_cmd_string(u8 cmd)
525{
526 switch (cmd) {
527 IWL_CMD(REPLY_ALIVE);
528 IWL_CMD(REPLY_ERROR);
529 IWL_CMD(REPLY_RXON);
530 IWL_CMD(REPLY_RXON_ASSOC);
531 IWL_CMD(REPLY_QOS_PARAM);
532 IWL_CMD(REPLY_RXON_TIMING);
533 IWL_CMD(REPLY_ADD_STA);
534 IWL_CMD(REPLY_REMOVE_STA);
535 IWL_CMD(REPLY_REMOVE_ALL_STA);
536 IWL_CMD(REPLY_3945_RX);
537 IWL_CMD(REPLY_TX);
538 IWL_CMD(REPLY_RATE_SCALE);
539 IWL_CMD(REPLY_LEDS_CMD);
540 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
541 IWL_CMD(RADAR_NOTIFICATION);
542 IWL_CMD(REPLY_QUIET_CMD);
543 IWL_CMD(REPLY_CHANNEL_SWITCH);
544 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
545 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
546 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
547 IWL_CMD(POWER_TABLE_CMD);
548 IWL_CMD(PM_SLEEP_NOTIFICATION);
549 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
550 IWL_CMD(REPLY_SCAN_CMD);
551 IWL_CMD(REPLY_SCAN_ABORT_CMD);
552 IWL_CMD(SCAN_START_NOTIFICATION);
553 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
554 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
555 IWL_CMD(BEACON_NOTIFICATION);
556 IWL_CMD(REPLY_TX_BEACON);
557 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
558 IWL_CMD(QUIET_NOTIFICATION);
559 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
560 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
561 IWL_CMD(REPLY_BT_CONFIG);
562 IWL_CMD(REPLY_STATISTICS_CMD);
563 IWL_CMD(STATISTICS_NOTIFICATION);
564 IWL_CMD(REPLY_CARD_STATE_CMD);
565 IWL_CMD(CARD_STATE_NOTIFICATION);
566 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
567 default:
568 return "UNKNOWN";
569
570 }
571}
572
573#define HOST_COMPLETE_TIMEOUT (HZ / 2)
574
575/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800576 * iwl3945_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700577 * @priv: device private data point
578 * @cmd: a point to the ucode command structure
579 *
580 * The function returns < 0 values to indicate the operation is
581 * failed. On success, it turns the index (> 0) of command in the
582 * command queue.
583 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800584static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700585{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800586 struct iwl3945_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
587 struct iwl3945_queue *q = &txq->q;
588 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -0700589 u32 *control_flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800590 struct iwl3945_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700591 u32 idx;
592 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
593 dma_addr_t phys_addr;
594 int pad;
595 u16 count;
596 int ret;
597 unsigned long flags;
598
599 /* If any of the command structures end up being larger than
600 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
601 * we will need to increase the size of the TFD entries */
602 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
603 !(cmd->meta.flags & CMD_SIZE_HUGE));
604
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800605
606 if (iwl3945_is_rfkill(priv)) {
607 IWL_DEBUG_INFO("Not sending command - RF KILL");
608 return -EIO;
609 }
610
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800611 if (iwl3945_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Zhu Yib481de92007-09-25 17:54:57 -0700612 IWL_ERROR("No space for Tx\n");
613 return -ENOSPC;
614 }
615
616 spin_lock_irqsave(&priv->hcmd_lock, flags);
617
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800618 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700619 memset(tfd, 0, sizeof(*tfd));
620
621 control_flags = (u32 *) tfd;
622
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800623 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Zhu Yib481de92007-09-25 17:54:57 -0700624 out_cmd = &txq->cmd[idx];
625
626 out_cmd->hdr.cmd = cmd->id;
627 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
628 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
629
630 /* At this point, the out_cmd now has all of the incoming cmd
631 * information */
632
633 out_cmd->hdr.flags = 0;
634 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800635 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700636 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
637 out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
638
639 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800640 offsetof(struct iwl3945_cmd, hdr);
641 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700642
643 pad = U32_PAD(cmd->len);
644 count = TFD_CTL_COUNT_GET(*control_flags);
645 *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad);
646
647 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
648 "%d bytes at %d[%d]:%d\n",
649 get_cmd_string(out_cmd->hdr.cmd),
650 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800651 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700652
653 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800654
655 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800656 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800657 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700658
659 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
660 return ret ? ret : idx;
661}
662
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800663static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700664{
665 int ret;
666
667 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
668
669 /* An asynchronous command can not expect an SKB to be set. */
670 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
671
672 /* An asynchronous command MUST have a callback. */
673 BUG_ON(!cmd->meta.u.callback);
674
675 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
676 return -EBUSY;
677
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800678 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700679 if (ret < 0) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800680 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700681 get_cmd_string(cmd->id), ret);
682 return ret;
683 }
684 return 0;
685}
686
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800687static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700688{
689 int cmd_idx;
690 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700691
692 BUG_ON(cmd->meta.flags & CMD_ASYNC);
693
694 /* A synchronous command can not have a callback set. */
695 BUG_ON(cmd->meta.u.callback != NULL);
696
Tomas Winklere5472972008-03-28 16:21:12 -0700697 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Zhu Yib481de92007-09-25 17:54:57 -0700698 IWL_ERROR("Error sending %s: Already sending a host command\n",
699 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700700 ret = -EBUSY;
701 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700702 }
703
704 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
705
706 if (cmd->meta.flags & CMD_WANT_SKB)
707 cmd->meta.source = &cmd->meta;
708
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800709 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700710 if (cmd_idx < 0) {
711 ret = cmd_idx;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800712 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700713 get_cmd_string(cmd->id), ret);
714 goto out;
715 }
716
717 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
718 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
719 HOST_COMPLETE_TIMEOUT);
720 if (!ret) {
721 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
722 IWL_ERROR("Error sending %s: time out after %dms.\n",
723 get_cmd_string(cmd->id),
724 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
725
726 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
727 ret = -ETIMEDOUT;
728 goto cancel;
729 }
730 }
731
732 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
733 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
734 get_cmd_string(cmd->id));
735 ret = -ECANCELED;
736 goto fail;
737 }
738 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
739 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
740 get_cmd_string(cmd->id));
741 ret = -EIO;
742 goto fail;
743 }
744 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
745 IWL_ERROR("Error: Response NULL in '%s'\n",
746 get_cmd_string(cmd->id));
747 ret = -EIO;
748 goto out;
749 }
750
751 ret = 0;
752 goto out;
753
754cancel:
755 if (cmd->meta.flags & CMD_WANT_SKB) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800756 struct iwl3945_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700757
758 /* Cancel the CMD_WANT_SKB flag for the cmd in the
759 * TX cmd queue. Otherwise in case the cmd comes
760 * in later, it will possibly set an invalid
761 * address (cmd->meta.source). */
762 qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
763 qcmd->meta.flags &= ~CMD_WANT_SKB;
764 }
765fail:
766 if (cmd->meta.u.skb) {
767 dev_kfree_skb_any(cmd->meta.u.skb);
768 cmd->meta.u.skb = NULL;
769 }
770out:
Tomas Winklere5472972008-03-28 16:21:12 -0700771 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -0700772 return ret;
773}
774
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800775int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700776{
Zhu Yib481de92007-09-25 17:54:57 -0700777 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800778 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700779
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800780 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700781}
782
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800783int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700784{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800785 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700786 .id = id,
787 .len = len,
788 .data = data,
789 };
790
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800791 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700792}
793
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800794static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700795{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800796 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700797 .id = id,
798 .len = sizeof(val),
799 .data = &val,
800 };
801
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800802 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700803}
804
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800805int iwl3945_send_statistics_request(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700806{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800807 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700808}
809
810/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800811 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100812 * @band: 2.4 or 5 GHz band
813 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700814
Johannes Berg8318d782008-01-24 19:38:38 +0100815 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700816 *
817 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100818 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700819 */
Johannes Berg8318d782008-01-24 19:38:38 +0100820static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv,
821 enum ieee80211_band band,
822 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700823{
Johannes Berg8318d782008-01-24 19:38:38 +0100824 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700825 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100826 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700827 return -EINVAL;
828 }
829
830 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100831 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700832 return 0;
833
834 priv->staging_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100835 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700836 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
837 else
838 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
839
Johannes Berg8318d782008-01-24 19:38:38 +0100840 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700841
Johannes Berg8318d782008-01-24 19:38:38 +0100842 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700843
844 return 0;
845}
846
847/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800848 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700849 *
850 * NOTE: This is really only useful during development and can eventually
851 * be #ifdef'd out once the driver is stable and folks aren't actively
852 * making changes
853 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800854static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700855{
856 int error = 0;
857 int counter = 1;
858
859 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
860 error |= le32_to_cpu(rxon->flags &
861 (RXON_FLG_TGJ_NARROW_BAND_MSK |
862 RXON_FLG_RADAR_DETECT_MSK));
863 if (error)
864 IWL_WARNING("check 24G fields %d | %d\n",
865 counter++, error);
866 } else {
867 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
868 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
869 if (error)
870 IWL_WARNING("check 52 fields %d | %d\n",
871 counter++, error);
872 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
873 if (error)
874 IWL_WARNING("check 52 CCK %d | %d\n",
875 counter++, error);
876 }
877 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
878 if (error)
879 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
880
881 /* make sure basic rates 6Mbps and 1Mbps are supported */
882 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
883 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
884 if (error)
885 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
886
887 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
888 if (error)
889 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
890
891 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
892 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
893 if (error)
894 IWL_WARNING("check CCK and short slot %d | %d\n",
895 counter++, error);
896
897 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
898 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
899 if (error)
900 IWL_WARNING("check CCK & auto detect %d | %d\n",
901 counter++, error);
902
903 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
904 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
905 if (error)
906 IWL_WARNING("check TGG and auto detect %d | %d\n",
907 counter++, error);
908
909 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
910 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
911 RXON_FLG_ANT_A_MSK)) == 0);
912 if (error)
913 IWL_WARNING("check antenna %d %d\n", counter++, error);
914
915 if (error)
916 IWL_WARNING("Tuning to channel %d\n",
917 le16_to_cpu(rxon->channel));
918
919 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800920 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700921 return -1;
922 }
923 return 0;
924}
925
926/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800927 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800928 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700929 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800930 * If the RXON structure is changing enough to require a new tune,
931 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
932 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700933 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800934static int iwl3945_full_rxon_required(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700935{
936
937 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800938 if (!(iwl3945_is_associated(priv)) ||
Zhu Yib481de92007-09-25 17:54:57 -0700939 compare_ether_addr(priv->staging_rxon.bssid_addr,
940 priv->active_rxon.bssid_addr) ||
941 compare_ether_addr(priv->staging_rxon.node_addr,
942 priv->active_rxon.node_addr) ||
943 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
944 priv->active_rxon.wlap_bssid_addr) ||
945 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
946 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
947 (priv->staging_rxon.air_propagation !=
948 priv->active_rxon.air_propagation) ||
949 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
950 return 1;
951
952 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
953 * be updated with the RXON_ASSOC command -- however only some
954 * flag transitions are allowed using RXON_ASSOC */
955
956 /* Check if we are not switching bands */
957 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
958 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
959 return 1;
960
961 /* Check if we are switching association toggle */
962 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
963 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
964 return 1;
965
966 return 0;
967}
968
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800969static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700970{
971 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800972 struct iwl3945_rx_packet *res = NULL;
973 struct iwl3945_rxon_assoc_cmd rxon_assoc;
974 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700975 .id = REPLY_RXON_ASSOC,
976 .len = sizeof(rxon_assoc),
977 .meta.flags = CMD_WANT_SKB,
978 .data = &rxon_assoc,
979 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800980 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon;
981 const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700982
983 if ((rxon1->flags == rxon2->flags) &&
984 (rxon1->filter_flags == rxon2->filter_flags) &&
985 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
986 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
987 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
988 return 0;
989 }
990
991 rxon_assoc.flags = priv->staging_rxon.flags;
992 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
993 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
994 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
995 rxon_assoc.reserved = 0;
996
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800997 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700998 if (rc)
999 return rc;
1000
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001001 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001002 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1003 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1004 rc = -EIO;
1005 }
1006
1007 priv->alloc_rxb_skb--;
1008 dev_kfree_skb_any(cmd.meta.u.skb);
1009
1010 return rc;
1011}
1012
1013/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001014 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -07001015 *
Ian Schram01ebd062007-10-25 17:15:22 +08001016 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -07001017 * the active_rxon structure is updated with the new data. This
1018 * function correctly transitions out of the RXON_ASSOC_MSK state if
1019 * a HW tune is required based on the RXON structure changes.
1020 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001021static int iwl3945_commit_rxon(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001022{
1023 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001024 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001025 int rc = 0;
1026
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001027 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001028 return -1;
1029
1030 /* always get timestamp with Rx frame */
1031 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1032
1033 /* select antenna */
1034 priv->staging_rxon.flags &=
1035 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1036 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1037
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001038 rc = iwl3945_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001039 if (rc) {
1040 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1041 return -EINVAL;
1042 }
1043
1044 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001045 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -07001046 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001047 if (!iwl3945_full_rxon_required(priv)) {
1048 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001049 if (rc) {
1050 IWL_ERROR("Error setting RXON_ASSOC "
1051 "configuration (%d).\n", rc);
1052 return rc;
1053 }
1054
1055 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1056
1057 return 0;
1058 }
1059
1060 /* If we are currently associated and the new config requires
1061 * an RXON_ASSOC and the new config wants the associated mask enabled,
1062 * we must clear the associated from the active configuration
1063 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001064 if (iwl3945_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07001065 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1066 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1067 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1068
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001069 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1070 sizeof(struct iwl3945_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001071 &priv->active_rxon);
1072
1073 /* If the mask clearing failed then we set
1074 * active_rxon back to what it was previously */
1075 if (rc) {
1076 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1077 IWL_ERROR("Error clearing ASSOC_MSK on current "
1078 "configuration (%d).\n", rc);
1079 return rc;
1080 }
Zhu Yib481de92007-09-25 17:54:57 -07001081 }
1082
1083 IWL_DEBUG_INFO("Sending RXON\n"
1084 "* with%s RXON_FILTER_ASSOC_MSK\n"
1085 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -07001086 "* bssid = %pM\n",
Zhu Yib481de92007-09-25 17:54:57 -07001087 ((priv->staging_rxon.filter_flags &
1088 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1089 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -07001090 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001091
1092 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001093 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1094 sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001095 if (rc) {
1096 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1097 return rc;
1098 }
1099
1100 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1101
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001102 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08001103
Zhu Yib481de92007-09-25 17:54:57 -07001104 /* If we issue a new RXON command which required a tune then we must
1105 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001106 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001107 if (rc) {
1108 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1109 return rc;
1110 }
1111
1112 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001113 if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -07001114 IWL_INVALID_STATION) {
1115 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1116 return -EIO;
1117 }
1118
1119 /* If we have set the ASSOC_MSK and we are in BSS mode then
1120 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001121 if (iwl3945_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001122 (priv->iw_mode == NL80211_IFTYPE_STATION))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001123 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001124 == IWL_INVALID_STATION) {
1125 IWL_ERROR("Error adding AP address for transmit.\n");
1126 return -EIO;
1127 }
1128
Johannes Berg8318d782008-01-24 19:38:38 +01001129 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001130 rc = iwl3945_init_hw_rate_table(priv);
1131 if (rc) {
1132 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1133 return -EIO;
1134 }
1135
1136 return 0;
1137}
1138
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001139static int iwl3945_send_bt_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001140{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001141 struct iwl3945_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001142 .flags = 3,
1143 .lead_time = 0xAA,
1144 .max_kill = 1,
1145 .kill_ack_mask = 0,
1146 .kill_cts_mask = 0,
1147 };
1148
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001149 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1150 sizeof(struct iwl3945_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001151}
1152
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001153static int iwl3945_send_scan_abort(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001154{
1155 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001156 struct iwl3945_rx_packet *res;
1157 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001158 .id = REPLY_SCAN_ABORT_CMD,
1159 .meta.flags = CMD_WANT_SKB,
1160 };
1161
1162 /* If there isn't a scan actively going on in the hardware
1163 * then we are in between scan bands and not actually
1164 * actively scanning, so don't send the abort command */
1165 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1166 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1167 return 0;
1168 }
1169
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001170 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001171 if (rc) {
1172 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1173 return rc;
1174 }
1175
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001176 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001177 if (res->u.status != CAN_ABORT_STATUS) {
1178 /* The scan abort will return 1 for success or
1179 * 2 for "failure". A failure condition can be
1180 * due to simply not being in an active scan which
1181 * can occur if we send the scan abort before we
1182 * the microcode has notified us that a scan is
1183 * completed. */
1184 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1185 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1186 clear_bit(STATUS_SCAN_HW, &priv->status);
1187 }
1188
1189 dev_kfree_skb_any(cmd.meta.u.skb);
1190
1191 return rc;
1192}
1193
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001194static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv,
1195 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001196 struct sk_buff *skb)
1197{
1198 return 1;
1199}
1200
1201/*
1202 * CARD_STATE_CMD
1203 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001204 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001205 *
1206 * When in the 'enable' state the card operates as normal.
1207 * When in the 'disable' state, the card enters into a low power mode.
1208 * When in the 'halt' state, the card is shut down and must be fully
1209 * restarted to come back on.
1210 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001211static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001212{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001213 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001214 .id = REPLY_CARD_STATE_CMD,
1215 .len = sizeof(u32),
1216 .data = &flags,
1217 .meta.flags = meta_flag,
1218 };
1219
1220 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001221 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001223 return iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001224}
1225
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001226static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv,
1227 struct iwl3945_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001228{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001229 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001230
1231 if (!skb) {
1232 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1233 return 1;
1234 }
1235
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001236 res = (struct iwl3945_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001237 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1238 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1239 res->hdr.flags);
1240 return 1;
1241 }
1242
1243 switch (res->u.add_sta.status) {
1244 case ADD_STA_SUCCESS_MSK:
1245 break;
1246 default:
1247 break;
1248 }
1249
1250 /* We didn't cache the SKB; let the caller free it */
1251 return 1;
1252}
1253
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001254int iwl3945_send_add_station(struct iwl3945_priv *priv,
1255 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001256{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001257 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001258 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001259 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001260 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001261 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001262 .meta.flags = flags,
1263 .data = sta,
1264 };
1265
1266 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001267 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001268 else
1269 cmd.meta.flags |= CMD_WANT_SKB;
1270
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001271 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001272
1273 if (rc || (flags & CMD_ASYNC))
1274 return rc;
1275
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001276 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001277 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1278 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1279 res->hdr.flags);
1280 rc = -EIO;
1281 }
1282
1283 if (rc == 0) {
1284 switch (res->u.add_sta.status) {
1285 case ADD_STA_SUCCESS_MSK:
1286 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1287 break;
1288 default:
1289 rc = -EIO;
1290 IWL_WARNING("REPLY_ADD_STA failed\n");
1291 break;
1292 }
1293 }
1294
1295 priv->alloc_rxb_skb--;
1296 dev_kfree_skb_any(cmd.meta.u.skb);
1297
1298 return rc;
1299}
1300
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001301static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001302 struct ieee80211_key_conf *keyconf,
1303 u8 sta_id)
1304{
1305 unsigned long flags;
1306 __le16 key_flags = 0;
1307
1308 switch (keyconf->alg) {
1309 case ALG_CCMP:
1310 key_flags |= STA_KEY_FLG_CCMP;
1311 key_flags |= cpu_to_le16(
1312 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1313 key_flags &= ~STA_KEY_FLG_INVALID;
1314 break;
1315 case ALG_TKIP:
1316 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001317 default:
1318 return -EINVAL;
1319 }
1320 spin_lock_irqsave(&priv->sta_lock, flags);
1321 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1322 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1323 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1324 keyconf->keylen);
1325
1326 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1327 keyconf->keylen);
1328 priv->stations[sta_id].sta.key.key_flags = key_flags;
1329 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1330 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1331
1332 spin_unlock_irqrestore(&priv->sta_lock, flags);
1333
1334 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001335 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001336 return 0;
1337}
1338
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001339static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001340{
1341 unsigned long flags;
1342
1343 spin_lock_irqsave(&priv->sta_lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001344 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1345 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl3945_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001346 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1347 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1348 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1349 spin_unlock_irqrestore(&priv->sta_lock, flags);
1350
1351 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001352 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001353 return 0;
1354}
1355
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001356static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001357{
1358 struct list_head *element;
1359
1360 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1361 priv->frames_count);
1362
1363 while (!list_empty(&priv->free_frames)) {
1364 element = priv->free_frames.next;
1365 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001366 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001367 priv->frames_count--;
1368 }
1369
1370 if (priv->frames_count) {
1371 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1372 priv->frames_count);
1373 priv->frames_count = 0;
1374 }
1375}
1376
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001377static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001378{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001379 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001380 struct list_head *element;
1381 if (list_empty(&priv->free_frames)) {
1382 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1383 if (!frame) {
1384 IWL_ERROR("Could not allocate frame!\n");
1385 return NULL;
1386 }
1387
1388 priv->frames_count++;
1389 return frame;
1390 }
1391
1392 element = priv->free_frames.next;
1393 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001394 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001395}
1396
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001397static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001398{
1399 memset(frame, 0, sizeof(*frame));
1400 list_add(&frame->list, &priv->free_frames);
1401}
1402
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001403unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001404 struct ieee80211_hdr *hdr,
1405 const u8 *dest, int left)
1406{
1407
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001408 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001409 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1410 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001411 return 0;
1412
1413 if (priv->ibss_beacon->len > left)
1414 return 0;
1415
1416 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1417
1418 return priv->ibss_beacon->len;
1419}
1420
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001421static u8 iwl3945_rate_get_lowest_plcp(int rate_mask)
Zhu Yib481de92007-09-25 17:54:57 -07001422{
1423 u8 i;
1424
1425 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001426 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001427 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001428 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001429 }
1430
1431 return IWL_RATE_INVALID;
1432}
1433
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001434static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001435{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001436 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001437 unsigned int frame_size;
1438 int rc;
1439 u8 rate;
1440
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001441 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001442
1443 if (!frame) {
1444 IWL_ERROR("Could not obtain free frame buffer for beacon "
1445 "command.\n");
1446 return -ENOMEM;
1447 }
1448
1449 if (!(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001450 rate = iwl3945_rate_get_lowest_plcp(priv->active_rate_basic &
Zhu Yib481de92007-09-25 17:54:57 -07001451 0xFF0);
1452 if (rate == IWL_INVALID_RATE)
1453 rate = IWL_RATE_6M_PLCP;
1454 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001455 rate = iwl3945_rate_get_lowest_plcp(priv->active_rate_basic & 0xF);
Zhu Yib481de92007-09-25 17:54:57 -07001456 if (rate == IWL_INVALID_RATE)
1457 rate = IWL_RATE_1M_PLCP;
1458 }
1459
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001460 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001461
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001462 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001463 &frame->u.cmd[0]);
1464
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001465 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001466
1467 return rc;
1468}
1469
1470/******************************************************************************
1471 *
1472 * EEPROM related functions
1473 *
1474 ******************************************************************************/
1475
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001476static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001477{
1478 memcpy(mac, priv->eeprom.mac_address, 6);
1479}
1480
Reinette Chatre74a3a252008-01-23 10:15:19 -08001481/*
1482 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1483 * embedded controller) as EEPROM reader; each read is a series of pulses
1484 * to/from the EEPROM chip, not a single event, so even reads could conflict
1485 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1486 * simply claims ownership, which should be safe when this function is called
1487 * (i.e. before loading uCode!).
1488 */
1489static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1490{
1491 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1492 return 0;
1493}
1494
Zhu Yib481de92007-09-25 17:54:57 -07001495/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001496 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001497 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001498 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001499 *
1500 * NOTE: This routine uses the non-debug IO access functions.
1501 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001502int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001503{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001504 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001505 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001506 u32 r;
1507 int sz = sizeof(priv->eeprom);
1508 int rc;
1509 int i;
1510 u16 addr;
1511
1512 /* The EEPROM structure has several padding buffers within it
1513 * and when adding new EEPROM maps is subject to programmer errors
1514 * which may be very difficult to identify without explicitly
1515 * checking the resulting size of the eeprom map. */
1516 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1517
1518 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001519 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001520 return -ENOENT;
1521 }
1522
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001523 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001524 rc = iwl3945_eeprom_acquire_semaphore(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001525 if (rc < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001526 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001527 return -ENOENT;
1528 }
1529
1530 /* eeprom is an array of 16bit values */
1531 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001532 _iwl3945_write32(priv, CSR_EEPROM_REG, addr << 1);
1533 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu Yib481de92007-09-25 17:54:57 -07001534
1535 for (i = 0; i < IWL_EEPROM_ACCESS_TIMEOUT;
1536 i += IWL_EEPROM_ACCESS_DELAY) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001537 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Zhu Yib481de92007-09-25 17:54:57 -07001538 if (r & CSR_EEPROM_REG_READ_VALID_MSK)
1539 break;
1540 udelay(IWL_EEPROM_ACCESS_DELAY);
1541 }
1542
1543 if (!(r & CSR_EEPROM_REG_READ_VALID_MSK)) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001544 IWL_ERROR("Time out reading EEPROM[%d]\n", addr);
Zhu Yib481de92007-09-25 17:54:57 -07001545 return -ETIMEDOUT;
1546 }
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001547 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001548 }
1549
1550 return 0;
1551}
1552
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001553static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001554{
1555 if (priv->hw_setting.shared_virt)
1556 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001557 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001558 priv->hw_setting.shared_virt,
1559 priv->hw_setting.shared_phys);
1560}
1561
1562/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001563 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001564 *
1565 * return : set the bit for each supported rate insert in ie
1566 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001567static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001568 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001569{
1570 u16 ret_rates = 0, bit;
1571 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001572 u8 *cnt = ie;
1573 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001574
1575 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1576 if (bit & supported_rate) {
1577 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001578 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001579 ((bit & basic_rate) ? 0x80 : 0x00);
1580 (*cnt)++;
1581 (*left)--;
1582 if ((*left <= 0) ||
1583 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001584 break;
1585 }
1586 }
1587
1588 return ret_rates;
1589}
1590
1591/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001592 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001593 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001594static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001595 struct ieee80211_mgmt *frame,
1596 int left, int is_direct)
1597{
1598 int len = 0;
1599 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001600 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001601
1602 /* Make sure there is enough space for the probe request,
1603 * two mandatory IEs and the data */
1604 left -= 24;
1605 if (left < 0)
1606 return 0;
1607 len += 24;
1608
1609 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001610 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001611 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001612 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001613 frame->seq_ctrl = 0;
1614
1615 /* fill in our indirect SSID IE */
1616 /* ...next IE... */
1617
1618 left -= 2;
1619 if (left < 0)
1620 return 0;
1621 len += 2;
1622 pos = &(frame->u.probe_req.variable[0]);
1623 *pos++ = WLAN_EID_SSID;
1624 *pos++ = 0;
1625
1626 /* fill in our direct SSID IE... */
1627 if (is_direct) {
1628 /* ...next IE... */
1629 left -= 2 + priv->essid_len;
1630 if (left < 0)
1631 return 0;
1632 /* ... fill it in... */
1633 *pos++ = WLAN_EID_SSID;
1634 *pos++ = priv->essid_len;
1635 memcpy(pos, priv->essid, priv->essid_len);
1636 pos += priv->essid_len;
1637 len += 2 + priv->essid_len;
1638 }
1639
1640 /* fill in supported rate */
1641 /* ...next IE... */
1642 left -= 2;
1643 if (left < 0)
1644 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001645
Zhu Yib481de92007-09-25 17:54:57 -07001646 /* ... fill it in... */
1647 *pos++ = WLAN_EID_SUPP_RATES;
1648 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001649
1650 priv->active_rate = priv->rates_mask;
1651 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001652 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1653
Tomas Winklerc7c46672007-10-18 02:04:15 +02001654 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001655 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001656 priv->active_rate_basic, &left);
1657 active_rates &= ~ret_rates;
1658
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001659 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001660 priv->active_rate_basic, &left);
1661 active_rates &= ~ret_rates;
1662
Zhu Yib481de92007-09-25 17:54:57 -07001663 len += 2 + *pos;
1664 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001665 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001666 goto fill_end;
1667
1668 /* fill in supported extended rate */
1669 /* ...next IE... */
1670 left -= 2;
1671 if (left < 0)
1672 return 0;
1673 /* ... fill it in... */
1674 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1675 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001676 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001677 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001678 if (*pos > 0)
1679 len += 2 + *pos;
1680
1681 fill_end:
1682 return (u16)len;
1683}
1684
1685/*
1686 * QoS support
1687*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001688static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
1689 struct iwl3945_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001690{
1691
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001692 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1693 sizeof(struct iwl3945_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001694}
1695
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001696static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001697{
1698 u16 cw_min = 15;
1699 u16 cw_max = 1023;
1700 u8 aifs = 2;
1701 u8 is_legacy = 0;
1702 unsigned long flags;
1703 int i;
1704
1705 spin_lock_irqsave(&priv->lock, flags);
1706 priv->qos_data.qos_active = 0;
1707
Johannes Berg05c914f2008-09-11 00:01:58 +02001708 if (priv->iw_mode == NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07001709 if (priv->qos_data.qos_enable)
1710 priv->qos_data.qos_active = 1;
1711 if (!(priv->active_rate & 0xfff0)) {
1712 cw_min = 31;
1713 is_legacy = 1;
1714 }
Johannes Berg05c914f2008-09-11 00:01:58 +02001715 } else if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07001716 if (priv->qos_data.qos_enable)
1717 priv->qos_data.qos_active = 1;
1718 } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) {
1719 cw_min = 31;
1720 is_legacy = 1;
1721 }
1722
1723 if (priv->qos_data.qos_active)
1724 aifs = 3;
1725
1726 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1727 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1728 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1729 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1730 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1731
1732 if (priv->qos_data.qos_active) {
1733 i = 1;
1734 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1735 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1736 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1737 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1738 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1739
1740 i = 2;
1741 priv->qos_data.def_qos_parm.ac[i].cw_min =
1742 cpu_to_le16((cw_min + 1) / 2 - 1);
1743 priv->qos_data.def_qos_parm.ac[i].cw_max =
1744 cpu_to_le16(cw_max);
1745 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1746 if (is_legacy)
1747 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1748 cpu_to_le16(6016);
1749 else
1750 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1751 cpu_to_le16(3008);
1752 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1753
1754 i = 3;
1755 priv->qos_data.def_qos_parm.ac[i].cw_min =
1756 cpu_to_le16((cw_min + 1) / 4 - 1);
1757 priv->qos_data.def_qos_parm.ac[i].cw_max =
1758 cpu_to_le16((cw_max + 1) / 2 - 1);
1759 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1760 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1761 if (is_legacy)
1762 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1763 cpu_to_le16(3264);
1764 else
1765 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1766 cpu_to_le16(1504);
1767 } else {
1768 for (i = 1; i < 4; i++) {
1769 priv->qos_data.def_qos_parm.ac[i].cw_min =
1770 cpu_to_le16(cw_min);
1771 priv->qos_data.def_qos_parm.ac[i].cw_max =
1772 cpu_to_le16(cw_max);
1773 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1774 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1775 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1776 }
1777 }
1778 IWL_DEBUG_QOS("set QoS to default \n");
1779
1780 spin_unlock_irqrestore(&priv->lock, flags);
1781}
1782
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001783static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001784{
1785 unsigned long flags;
1786
Zhu Yib481de92007-09-25 17:54:57 -07001787 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1788 return;
1789
1790 if (!priv->qos_data.qos_enable)
1791 return;
1792
1793 spin_lock_irqsave(&priv->lock, flags);
1794 priv->qos_data.def_qos_parm.qos_flags = 0;
1795
1796 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1797 !priv->qos_data.qos_cap.q_AP.txop_request)
1798 priv->qos_data.def_qos_parm.qos_flags |=
1799 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1800
1801 if (priv->qos_data.qos_active)
1802 priv->qos_data.def_qos_parm.qos_flags |=
1803 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1804
1805 spin_unlock_irqrestore(&priv->lock, flags);
1806
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001807 if (force || iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001808 IWL_DEBUG_QOS("send QoS cmd with Qos active %d \n",
1809 priv->qos_data.qos_active);
1810
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001811 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001812 &(priv->qos_data.def_qos_parm));
1813 }
1814}
1815
Zhu Yib481de92007-09-25 17:54:57 -07001816/*
1817 * Power management (not Tx power!) functions
1818 */
1819#define MSEC_TO_USEC 1024
1820
1821#define NOSLP __constant_cpu_to_le32(0)
1822#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
1823#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1824#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1825 __constant_cpu_to_le32(X1), \
1826 __constant_cpu_to_le32(X2), \
1827 __constant_cpu_to_le32(X3), \
1828 __constant_cpu_to_le32(X4)}
1829
1830
1831/* default power management (not Tx power) table values */
1832/* for tim 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001833static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001834 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1835 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1836 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1837 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1838 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1839 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1840};
1841
1842/* for tim > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001843static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001844 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1845 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1846 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1847 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1848 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1849 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1850 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1851 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1852 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1853 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1854};
1855
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001856int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001857{
1858 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001859 struct iwl3945_power_mgr *pow_data;
1860 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001861 u16 pci_pm;
1862
1863 IWL_DEBUG_POWER("Initialize power \n");
1864
1865 pow_data = &(priv->power_data);
1866
1867 memset(pow_data, 0, sizeof(*pow_data));
1868
1869 pow_data->active_index = IWL_POWER_RANGE_0;
1870 pow_data->dtim_val = 0xffff;
1871
1872 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1873 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1874
1875 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1876 if (rc != 0)
1877 return 0;
1878 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001879 struct iwl3945_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001880
1881 IWL_DEBUG_POWER("adjust power command flags\n");
1882
1883 for (i = 0; i < IWL_POWER_AC; i++) {
1884 cmd = &pow_data->pwr_range_0[i].cmd;
1885
1886 if (pci_pm & 0x1)
1887 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1888 else
1889 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1890 }
1891 }
1892 return rc;
1893}
1894
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001895static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
1896 struct iwl3945_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001897{
1898 int rc = 0, i;
1899 u8 skip;
1900 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001901 struct iwl3945_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001902 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001903 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001904
1905 if (mode > IWL_POWER_INDEX_5) {
1906 IWL_DEBUG_POWER("Error invalid power mode \n");
1907 return -1;
1908 }
1909 pow_data = &(priv->power_data);
1910
1911 if (pow_data->active_index == IWL_POWER_RANGE_0)
1912 range = &pow_data->pwr_range_0[0];
1913 else
1914 range = &pow_data->pwr_range_1[1];
1915
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001916 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001917
1918#ifdef IWL_MAC80211_DISABLE
1919 if (priv->assoc_network != NULL) {
1920 unsigned long flags;
1921
1922 period = priv->assoc_network->tim.tim_period;
1923 }
1924#endif /*IWL_MAC80211_DISABLE */
1925 skip = range[mode].no_dtim;
1926
1927 if (period == 0) {
1928 period = 1;
1929 skip = 0;
1930 }
1931
1932 if (skip == 0) {
1933 max_sleep = period;
1934 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1935 } else {
1936 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1937 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1938 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1939 }
1940
1941 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1942 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1943 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1944 }
1945
1946 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1947 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1948 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1949 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1950 le32_to_cpu(cmd->sleep_interval[0]),
1951 le32_to_cpu(cmd->sleep_interval[1]),
1952 le32_to_cpu(cmd->sleep_interval[2]),
1953 le32_to_cpu(cmd->sleep_interval[3]),
1954 le32_to_cpu(cmd->sleep_interval[4]));
1955
1956 return rc;
1957}
1958
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001959static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001960{
John W. Linville9a62f732007-11-15 16:27:36 -05001961 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001962 int rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001963 struct iwl3945_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001964
1965 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001966 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001967 * else user level */
1968 switch (mode) {
1969 case IWL_POWER_BATTERY:
1970 final_mode = IWL_POWER_INDEX_3;
1971 break;
1972 case IWL_POWER_AC:
1973 final_mode = IWL_POWER_MODE_CAM;
1974 break;
1975 default:
1976 final_mode = mode;
1977 break;
1978 }
1979
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001980 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001981
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001982 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001983
1984 if (final_mode == IWL_POWER_MODE_CAM)
1985 clear_bit(STATUS_POWER_PMI, &priv->status);
1986 else
1987 set_bit(STATUS_POWER_PMI, &priv->status);
1988
1989 return rc;
1990}
1991
Zhu Yib481de92007-09-25 17:54:57 -07001992/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001993 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001994 *
1995 * NOTE: priv->mutex is not required before calling this function
1996 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001997static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001998{
1999 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
2000 clear_bit(STATUS_SCANNING, &priv->status);
2001 return 0;
2002 }
2003
2004 if (test_bit(STATUS_SCANNING, &priv->status)) {
2005 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2006 IWL_DEBUG_SCAN("Queuing scan abort.\n");
2007 set_bit(STATUS_SCAN_ABORTING, &priv->status);
2008 queue_work(priv->workqueue, &priv->abort_scan);
2009
2010 } else
2011 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2012
2013 return test_bit(STATUS_SCANNING, &priv->status);
2014 }
2015
2016 return 0;
2017}
2018
2019/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002020 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002021 * @ms: amount of time to wait (in milliseconds) for scan to abort
2022 *
2023 * NOTE: priv->mutex must be held before calling this function
2024 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002025static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07002026{
2027 unsigned long now = jiffies;
2028 int ret;
2029
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002030 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002031 if (ret && ms) {
2032 mutex_unlock(&priv->mutex);
2033 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2034 test_bit(STATUS_SCANNING, &priv->status))
2035 msleep(1);
2036 mutex_lock(&priv->mutex);
2037
2038 return test_bit(STATUS_SCANNING, &priv->status);
2039 }
2040
2041 return ret;
2042}
2043
Zhu Yib481de92007-09-25 17:54:57 -07002044#define MAX_UCODE_BEACON_INTERVAL 1024
2045#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2046
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002047static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07002048{
2049 u16 new_val = 0;
2050 u16 beacon_factor = 0;
2051
2052 beacon_factor =
2053 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2054 / MAX_UCODE_BEACON_INTERVAL;
2055 new_val = beacon_val / beacon_factor;
2056
2057 return cpu_to_le16(new_val);
2058}
2059
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002060static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002061{
2062 u64 interval_tm_unit;
2063 u64 tsf, result;
2064 unsigned long flags;
2065 struct ieee80211_conf *conf = NULL;
2066 u16 beacon_int = 0;
2067
2068 conf = ieee80211_get_hw_conf(priv->hw);
2069
2070 spin_lock_irqsave(&priv->lock, flags);
2071 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2072 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2073
2074 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2075
2076 tsf = priv->timestamp1;
2077 tsf = ((tsf << 32) | priv->timestamp0);
2078
2079 beacon_int = priv->beacon_int;
2080 spin_unlock_irqrestore(&priv->lock, flags);
2081
Johannes Berg05c914f2008-09-11 00:01:58 +02002082 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07002083 if (beacon_int == 0) {
2084 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2085 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2086 } else {
2087 priv->rxon_timing.beacon_interval =
2088 cpu_to_le16(beacon_int);
2089 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002090 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002091 le16_to_cpu(priv->rxon_timing.beacon_interval));
2092 }
2093
2094 priv->rxon_timing.atim_window = 0;
2095 } else {
2096 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002097 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002098 /* TODO: we need to get atim_window from upper stack
2099 * for now we set to 0 */
2100 priv->rxon_timing.atim_window = 0;
2101 }
2102
2103 interval_tm_unit =
2104 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2105 result = do_div(tsf, interval_tm_unit);
2106 priv->rxon_timing.beacon_init_val =
2107 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2108
2109 IWL_DEBUG_ASSOC
2110 ("beacon interval %d beacon timer %d beacon tim %d\n",
2111 le16_to_cpu(priv->rxon_timing.beacon_interval),
2112 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2113 le16_to_cpu(priv->rxon_timing.atim_window));
2114}
2115
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002116static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002117{
Johannes Berg05c914f2008-09-11 00:01:58 +02002118 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002119 IWL_ERROR("APs don't scan.\n");
2120 return 0;
2121 }
2122
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002123 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002124 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2125 return -EIO;
2126 }
2127
2128 if (test_bit(STATUS_SCANNING, &priv->status)) {
2129 IWL_DEBUG_SCAN("Scan already in progress.\n");
2130 return -EAGAIN;
2131 }
2132
2133 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2134 IWL_DEBUG_SCAN("Scan request while abort pending. "
2135 "Queuing.\n");
2136 return -EAGAIN;
2137 }
2138
2139 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002140 if (priv->cfg->sku & IWL_SKU_G)
2141 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
2142 if (priv->cfg->sku & IWL_SKU_A)
2143 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002144 set_bit(STATUS_SCANNING, &priv->status);
2145 priv->scan_start = jiffies;
2146 priv->scan_pass_start = priv->scan_start;
2147
2148 queue_work(priv->workqueue, &priv->request_scan);
2149
2150 return 0;
2151}
2152
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002153static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002154{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002155 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002156
2157 if (hw_decrypt)
2158 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2159 else
2160 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2161
2162 return 0;
2163}
2164
Johannes Berg8318d782008-01-24 19:38:38 +01002165static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2166 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002167{
Johannes Berg8318d782008-01-24 19:38:38 +01002168 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002169 priv->staging_rxon.flags &=
2170 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2171 | RXON_FLG_CCK_MSK);
2172 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2173 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002174 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002175 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2176 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2177 else
2178 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2179
Johannes Berg05c914f2008-09-11 00:01:58 +02002180 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002181 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2182
2183 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2184 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2185 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2186 }
2187}
2188
2189/*
Ian Schram01ebd062007-10-25 17:15:22 +08002190 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002191 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002192static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002193{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002194 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002195
2196 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2197
2198 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002199 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -07002200 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2201 break;
2202
Johannes Berg05c914f2008-09-11 00:01:58 +02002203 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002204 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2205 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2206 break;
2207
Johannes Berg05c914f2008-09-11 00:01:58 +02002208 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002209 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2210 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2211 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2212 RXON_FILTER_ACCEPT_GRP_MSK;
2213 break;
2214
Johannes Berg05c914f2008-09-11 00:01:58 +02002215 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -07002216 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2217 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2218 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2219 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002220 default:
2221 IWL_ERROR("Unsupported interface type %d\n", priv->iw_mode);
2222 break;
Zhu Yib481de92007-09-25 17:54:57 -07002223 }
2224
2225#if 0
2226 /* TODO: Figure out when short_preamble would be set and cache from
2227 * that */
2228 if (!hw_to_local(priv->hw)->short_preamble)
2229 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2230 else
2231 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2232#endif
2233
Johannes Berg8318d782008-01-24 19:38:38 +01002234 ch_info = iwl3945_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +08002235 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002236
2237 if (!ch_info)
2238 ch_info = &priv->channel_info[0];
2239
2240 /*
2241 * in some case A channels are all non IBSS
2242 * in this case force B/G channel
2243 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002244 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Zhu Yib481de92007-09-25 17:54:57 -07002245 !(is_channel_ibss(ch_info)))
2246 ch_info = &priv->channel_info[0];
2247
2248 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2249 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002250 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002251 else
Johannes Berg8318d782008-01-24 19:38:38 +01002252 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002253
Johannes Berg8318d782008-01-24 19:38:38 +01002254 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002255
2256 priv->staging_rxon.ofdm_basic_rates =
2257 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2258 priv->staging_rxon.cck_basic_rates =
2259 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2260}
2261
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002262static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002263{
Johannes Berg05c914f2008-09-11 00:01:58 +02002264 if (mode == NL80211_IFTYPE_ADHOC) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002265 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002266
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002267 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002268 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002269 le16_to_cpu(priv->staging_rxon.channel));
2270
2271 if (!ch_info || !is_channel_ibss(ch_info)) {
2272 IWL_ERROR("channel %d not IBSS channel\n",
2273 le16_to_cpu(priv->staging_rxon.channel));
2274 return -EINVAL;
2275 }
2276 }
2277
Zhu Yib481de92007-09-25 17:54:57 -07002278 priv->iw_mode = mode;
2279
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002280 iwl3945_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002281 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2282
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002283 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002284
Mohamed Abbasfde35712007-11-29 11:10:15 +08002285 /* dont commit rxon if rf-kill is on*/
2286 if (!iwl3945_is_ready_rf(priv))
2287 return -EAGAIN;
2288
2289 cancel_delayed_work(&priv->scan_check);
2290 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2291 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2292 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2293 return -EAGAIN;
2294 }
2295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002296 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002297
2298 return 0;
2299}
2300
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002301static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002302 struct ieee80211_tx_info *info,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002303 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002304 struct sk_buff *skb_frag,
2305 int last_frag)
2306{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002307 struct iwl3945_hw_key *keyinfo =
Johannes Berge039fa42008-05-15 12:55:29 +02002308 &priv->stations[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002309
2310 switch (keyinfo->alg) {
2311 case ALG_CCMP:
2312 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2313 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
2314 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
2315 break;
2316
2317 case ALG_TKIP:
2318#if 0
2319 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2320
2321 if (last_frag)
2322 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2323 8);
2324 else
2325 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2326#endif
2327 break;
2328
2329 case ALG_WEP:
2330 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002331 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002332
2333 if (keyinfo->keylen == 13)
2334 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2335
2336 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2337
2338 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002339 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002340 break;
2341
Zhu Yib481de92007-09-25 17:54:57 -07002342 default:
2343 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2344 break;
2345 }
2346}
2347
2348/*
2349 * handle build REPLY_TX command notification.
2350 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002351static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2352 struct iwl3945_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002353 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002354 struct ieee80211_hdr *hdr,
2355 int is_unicast, u8 std_id)
2356{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002357 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002358 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002359 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002360
2361 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002362 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002363 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002364 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002365 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002366 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002367 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2368 tx_flags |= TX_CMD_FLG_TSF_MSK;
2369 } else {
2370 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2371 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2372 }
2373
2374 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002375 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002376 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2377
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002378 if (ieee80211_is_data_qos(fc)) {
2379 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002380 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002381 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002382 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002383 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002384 }
Zhu Yib481de92007-09-25 17:54:57 -07002385
Johannes Berge6a98542008-10-21 12:40:02 +02002386 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002387 tx_flags |= TX_CMD_FLG_RTS_MSK;
2388 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002389 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002390 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2391 tx_flags |= TX_CMD_FLG_CTS_MSK;
2392 }
2393
2394 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2395 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2396
2397 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002398 if (ieee80211_is_mgmt(fc)) {
2399 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002400 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002401 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002402 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002403 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002404 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002405#ifdef CONFIG_IWL3945_LEDS
2406 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2407#endif
2408 }
Zhu Yib481de92007-09-25 17:54:57 -07002409
2410 cmd->cmd.tx.driver_txop = 0;
2411 cmd->cmd.tx.tx_flags = tx_flags;
2412 cmd->cmd.tx.next_frame_len = 0;
2413}
2414
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002415/**
2416 * iwl3945_get_sta_id - Find station's index within station table
2417 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002418static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002419{
2420 int sta_id;
2421 u16 fc = le16_to_cpu(hdr->frame_control);
2422
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002423 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002424 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2425 is_multicast_ether_addr(hdr->addr1))
2426 return priv->hw_setting.bcast_sta_id;
2427
2428 switch (priv->iw_mode) {
2429
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002430 /* If we are a client station in a BSS network, use the special
2431 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002432 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002433 return IWL_AP_ID;
2434
2435 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002436 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002437 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002438 if (sta_id != IWL_INVALID_STATION)
2439 return sta_id;
2440 return priv->hw_setting.bcast_sta_id;
2441
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002442 /* If this frame is going out to an IBSS network, find the station,
2443 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002444 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002445 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002446 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002447 if (sta_id != IWL_INVALID_STATION)
2448 return sta_id;
2449
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002450 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002451
2452 if (sta_id != IWL_INVALID_STATION)
2453 return sta_id;
2454
Johannes Berge1749612008-10-27 15:59:26 -07002455 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002456 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002457 hdr->addr1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002458 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002459 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002460 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002461 /* If we are in monitor mode, use BCAST. This is required for
2462 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002463 case NL80211_IFTYPE_MONITOR:
Stefanik Gábor914233d2008-06-30 17:23:30 +08002464 return priv->hw_setting.bcast_sta_id;
2465
Zhu Yib481de92007-09-25 17:54:57 -07002466 default:
Jiri Slaby6f147922008-08-11 23:49:41 +02002467 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002468 return priv->hw_setting.bcast_sta_id;
2469 }
2470}
2471
2472/*
2473 * start REPLY_TX command process
2474 */
Johannes Berge039fa42008-05-15 12:55:29 +02002475static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002476{
2477 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002478 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002479 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002480 u32 *control_flags;
Johannes Berge2530082008-05-17 00:57:14 +02002481 int txq_id = skb_get_queue_mapping(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002482 struct iwl3945_tx_queue *txq = NULL;
2483 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002484 dma_addr_t phys_addr;
2485 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002486 struct iwl3945_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002487 u16 len, idx, len_org, hdr_len;
2488 u8 id;
2489 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002490 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002491 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002492 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002493 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002494 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002495 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002496 unsigned long flags;
2497 int rc;
2498
2499 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002500 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002501 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2502 goto drop_unlock;
2503 }
2504
Johannes Berge039fa42008-05-15 12:55:29 +02002505 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002506 IWL_ERROR("ERROR: No TX rate available.\n");
2507 goto drop_unlock;
2508 }
2509
2510 unicast = !is_multicast_ether_addr(hdr->addr1);
2511 id = 0;
2512
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002513 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002514
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002515#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002516 if (ieee80211_is_auth(fc))
2517 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002518 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002519 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002520 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002521 IWL_DEBUG_TX("Sending REASSOC frame\n");
2522#endif
2523
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002524 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002525 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002526 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002527 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002528 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002529 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002530 goto drop_unlock;
2531 }
2532
2533 spin_unlock_irqrestore(&priv->lock, flags);
2534
Harvey Harrison7294ec92008-07-15 18:43:59 -07002535 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002536
2537 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002538 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002539 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002540 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2541 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002542 goto drop;
2543 }
2544
2545 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2546
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002547 if (ieee80211_is_data_qos(fc)) {
2548 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002549 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002550 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2551 IEEE80211_SCTL_SEQ;
2552 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2553 (hdr->seq_ctrl &
2554 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2555 seq_number += 0x10;
2556 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002557
2558 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002559 txq = &priv->txq[txq_id];
2560 q = &txq->q;
2561
2562 spin_lock_irqsave(&priv->lock, flags);
2563
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002564 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002565 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002566 memset(tfd, 0, sizeof(*tfd));
2567 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002568 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002569
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002570 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002571 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002572 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002573
2574 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002575 out_cmd = &txq->cmd[idx];
2576 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2577 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002578
2579 /*
2580 * Set up the Tx-command (not MAC!) header.
2581 * Store the chosen Tx queue and TFD index within the sequence field;
2582 * after Tx, uCode's Tx response will return this value so driver can
2583 * locate the frame within the tx queue and do post-tx processing.
2584 */
Zhu Yib481de92007-09-25 17:54:57 -07002585 out_cmd->hdr.cmd = REPLY_TX;
2586 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002587 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002588
2589 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002590 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2591
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002592 /*
2593 * Use the first empty entry in this queue's command buffer array
2594 * to contain the Tx command and MAC header concatenated together
2595 * (payload data will be in another buffer).
2596 * Size of this varies, due to varying MAC header length.
2597 * If end is not dword aligned, we'll have 2 extra bytes at the end
2598 * of the MAC header (device reads on dword boundaries).
2599 * We'll tell device about this padding later.
2600 */
Zhu Yib481de92007-09-25 17:54:57 -07002601 len = priv->hw_setting.tx_cmd_len +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002602 sizeof(struct iwl3945_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002603
2604 len_org = len;
2605 len = (len + 3) & ~3;
2606
2607 if (len_org != len)
2608 len_org = 1;
2609 else
2610 len_org = 0;
2611
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002612 /* Physical address of this Tx command's header (not MAC header!),
2613 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002614 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2615 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002616
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002617 /* Add buffer containing Tx command and MAC(!) header to TFD's
2618 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002619 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002620
Johannes Bergd0f09802008-07-29 11:32:07 +02002621 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002622 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002623
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002624 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2625 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002626 len = skb->len - hdr_len;
2627 if (len) {
2628 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2629 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002630 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002631 }
2632
Zhu Yib481de92007-09-25 17:54:57 -07002633 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002634 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002635 *control_flags = TFD_CTL_COUNT_SET(1);
2636 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002637 /* Else use 2 buffers.
2638 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002639 *control_flags = TFD_CTL_COUNT_SET(2) |
2640 TFD_CTL_PAD_SET(U32_PAD(len));
2641
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002642 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002643 len = (u16)skb->len;
2644 out_cmd->cmd.tx.len = cpu_to_le16(len);
2645
2646 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002647 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002648
2649 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002650 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002651
2652 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2653 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2654
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002655 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002656 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002657 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002658 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002659 } else {
2660 wait_write_ptr = 1;
2661 txq->need_update = 0;
2662 }
2663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002664 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002665 sizeof(out_cmd->cmd.tx));
2666
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002667 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002668 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002669
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002670 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002671 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002672 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002673 spin_unlock_irqrestore(&priv->lock, flags);
2674
2675 if (rc)
2676 return rc;
2677
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002678 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002679 && priv->mac80211_registered) {
2680 if (wait_write_ptr) {
2681 spin_lock_irqsave(&priv->lock, flags);
2682 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002683 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002684 spin_unlock_irqrestore(&priv->lock, flags);
2685 }
2686
Johannes Berge2530082008-05-17 00:57:14 +02002687 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002688 }
2689
2690 return 0;
2691
2692drop_unlock:
2693 spin_unlock_irqrestore(&priv->lock, flags);
2694drop:
2695 return -1;
2696}
2697
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002698static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002699{
Johannes Berg8318d782008-01-24 19:38:38 +01002700 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002701 struct ieee80211_rate *rate;
2702 int i;
2703
Johannes Berg8318d782008-01-24 19:38:38 +01002704 sband = iwl3945_get_band(priv, priv->band);
2705 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002706 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2707 return;
2708 }
Zhu Yib481de92007-09-25 17:54:57 -07002709
2710 priv->active_rate = 0;
2711 priv->active_rate_basic = 0;
2712
Johannes Berg8318d782008-01-24 19:38:38 +01002713 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2714 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002715
Johannes Berg8318d782008-01-24 19:38:38 +01002716 for (i = 0; i < sband->n_bitrates; i++) {
2717 rate = &sband->bitrates[i];
2718 if ((rate->hw_value < IWL_RATE_COUNT) &&
2719 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2720 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2721 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2722 priv->active_rate |= (1 << rate->hw_value);
2723 }
Zhu Yib481de92007-09-25 17:54:57 -07002724 }
2725
2726 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2727 priv->active_rate, priv->active_rate_basic);
2728
2729 /*
2730 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2731 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2732 * OFDM
2733 */
2734 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2735 priv->staging_rxon.cck_basic_rates =
2736 ((priv->active_rate_basic &
2737 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2738 else
2739 priv->staging_rxon.cck_basic_rates =
2740 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2741
2742 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2743 priv->staging_rxon.ofdm_basic_rates =
2744 ((priv->active_rate_basic &
2745 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2746 IWL_FIRST_OFDM_RATE) & 0xFF;
2747 else
2748 priv->staging_rxon.ofdm_basic_rates =
2749 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2750}
2751
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002752static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002753{
2754 unsigned long flags;
2755
2756 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2757 return;
2758
2759 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2760 disable_radio ? "OFF" : "ON");
2761
2762 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002763 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002764 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002765 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002766 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002767 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002768 CSR_UCODE_SW_BIT_RFKILL);
2769 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002770 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002771 set_bit(STATUS_RF_KILL_SW, &priv->status);
2772 }
2773 return;
2774 }
2775
2776 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002777 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002778
2779 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2780 spin_unlock_irqrestore(&priv->lock, flags);
2781
2782 /* wake up ucode */
2783 msleep(10);
2784
2785 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002786 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
2787 if (!iwl3945_grab_nic_access(priv))
2788 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002789 spin_unlock_irqrestore(&priv->lock, flags);
2790
2791 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2792 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2793 "disabled by HW switch\n");
2794 return;
2795 }
2796
Zhu Yi808e72a2008-06-12 09:47:17 +08002797 if (priv->is_open)
2798 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002799 return;
2800}
2801
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002802void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002803 u32 decrypt_res, struct ieee80211_rx_status *stats)
2804{
2805 u16 fc =
2806 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2807
2808 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2809 return;
2810
2811 if (!(fc & IEEE80211_FCTL_PROTECTED))
2812 return;
2813
2814 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2815 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2816 case RX_RES_STATUS_SEC_TYPE_TKIP:
2817 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2818 RX_RES_STATUS_BAD_ICV_MIC)
2819 stats->flag |= RX_FLAG_MMIC_ERROR;
2820 case RX_RES_STATUS_SEC_TYPE_WEP:
2821 case RX_RES_STATUS_SEC_TYPE_CCMP:
2822 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2823 RX_RES_STATUS_DECRYPT_OK) {
2824 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2825 stats->flag |= RX_FLAG_DECRYPTED;
2826 }
2827 break;
2828
2829 default:
2830 break;
2831 }
2832}
2833
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002834#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002835
2836#include "iwl-spectrum.h"
2837
2838#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2839#define BEACON_TIME_MASK_HIGH 0xFF000000
2840#define TIME_UNIT 1024
2841
2842/*
2843 * extended beacon time format
2844 * time in usec will be changed into a 32-bit value in 8:24 format
2845 * the high 1 byte is the beacon counts
2846 * the lower 3 bytes is the time in usec within one beacon interval
2847 */
2848
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002849static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002850{
2851 u32 quot;
2852 u32 rem;
2853 u32 interval = beacon_interval * 1024;
2854
2855 if (!interval || !usec)
2856 return 0;
2857
2858 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2859 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2860
2861 return (quot << 24) + rem;
2862}
2863
2864/* base is usually what we get from ucode with each received frame,
2865 * the same as HW timer counter counting down
2866 */
2867
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002868static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002869{
2870 u32 base_low = base & BEACON_TIME_MASK_LOW;
2871 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2872 u32 interval = beacon_interval * TIME_UNIT;
2873 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2874 (addon & BEACON_TIME_MASK_HIGH);
2875
2876 if (base_low > addon_low)
2877 res += base_low - addon_low;
2878 else if (base_low < addon_low) {
2879 res += interval + base_low - addon_low;
2880 res += (1 << 24);
2881 } else
2882 res += (1 << 24);
2883
2884 return cpu_to_le32(res);
2885}
2886
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002887static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002888 struct ieee80211_measurement_params *params,
2889 u8 type)
2890{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002891 struct iwl3945_spectrum_cmd spectrum;
2892 struct iwl3945_rx_packet *res;
2893 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002894 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2895 .data = (void *)&spectrum,
2896 .meta.flags = CMD_WANT_SKB,
2897 };
2898 u32 add_time = le64_to_cpu(params->start_time);
2899 int rc;
2900 int spectrum_resp_status;
2901 int duration = le16_to_cpu(params->duration);
2902
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002903 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002904 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002905 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002906 le64_to_cpu(params->start_time) - priv->last_tsf,
2907 le16_to_cpu(priv->rxon_timing.beacon_interval));
2908
2909 memset(&spectrum, 0, sizeof(spectrum));
2910
2911 spectrum.channel_count = cpu_to_le16(1);
2912 spectrum.flags =
2913 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2914 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2915 cmd.len = sizeof(spectrum);
2916 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2917
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002918 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002919 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002920 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002921 add_time,
2922 le16_to_cpu(priv->rxon_timing.beacon_interval));
2923 else
2924 spectrum.start_time = 0;
2925
2926 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2927 spectrum.channels[0].channel = params->channel;
2928 spectrum.channels[0].type = type;
2929 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2930 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2931 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2932
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002933 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002934 if (rc)
2935 return rc;
2936
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002937 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002938 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2939 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2940 rc = -EIO;
2941 }
2942
2943 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2944 switch (spectrum_resp_status) {
2945 case 0: /* Command will be handled */
2946 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002947 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2948 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002949 priv->measurement_status &= ~MEASUREMENT_READY;
2950 }
2951 priv->measurement_status |= MEASUREMENT_ACTIVE;
2952 rc = 0;
2953 break;
2954
2955 case 1: /* Command will not be handled */
2956 rc = -EAGAIN;
2957 break;
2958 }
2959
2960 dev_kfree_skb_any(cmd.meta.u.skb);
2961
2962 return rc;
2963}
2964#endif
2965
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002966static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
2967 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002968{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002969 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
2970 struct iwl3945_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002971 struct delayed_work *pwork;
2972
2973 palive = &pkt->u.alive_frame;
2974
2975 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2976 "0x%01X 0x%01X\n",
2977 palive->is_valid, palive->ver_type,
2978 palive->ver_subtype);
2979
2980 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2981 IWL_DEBUG_INFO("Initialization Alive received.\n");
2982 memcpy(&priv->card_alive_init,
2983 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002984 sizeof(struct iwl3945_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002985 pwork = &priv->init_alive_start;
2986 } else {
2987 IWL_DEBUG_INFO("Runtime Alive received.\n");
2988 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002989 sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002990 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002991 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002992 }
2993
2994 /* We delay the ALIVE response by 5ms to
2995 * give the HW RF Kill time to activate... */
2996 if (palive->is_valid == UCODE_VALID_OK)
2997 queue_delayed_work(priv->workqueue, pwork,
2998 msecs_to_jiffies(5));
2999 else
3000 IWL_WARNING("uCode did not respond OK.\n");
3001}
3002
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003003static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
3004 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003005{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003006 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003007
3008 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
3009 return;
3010}
3011
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003012static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
3013 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003014{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003015 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003016
3017 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3018 "seq 0x%04X ser 0x%08X\n",
3019 le32_to_cpu(pkt->u.err_resp.error_type),
3020 get_cmd_string(pkt->u.err_resp.cmd_id),
3021 pkt->u.err_resp.cmd_id,
3022 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3023 le32_to_cpu(pkt->u.err_resp.error_info));
3024}
3025
3026#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003028static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003029{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003030 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3031 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
3032 struct iwl3945_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003033 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3034 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3035 rxon->channel = csa->channel;
3036 priv->staging_rxon.channel = csa->channel;
3037}
3038
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003039static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3040 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003041{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003042#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003043 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3044 struct iwl3945_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003045
3046 if (!report->state) {
3047 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3048 "Spectrum Measure Notification: Start\n");
3049 return;
3050 }
3051
3052 memcpy(&priv->measure_report, report, sizeof(*report));
3053 priv->measurement_status |= MEASUREMENT_READY;
3054#endif
3055}
3056
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003057static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3058 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003059{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003060#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003061 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3062 struct iwl3945_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003063 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3064 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3065#endif
3066}
3067
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003068static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3069 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003070{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003071 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003072 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3073 "notification for %s:\n",
3074 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003075 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003076}
3077
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003078static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003079{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003080 struct iwl3945_priv *priv =
3081 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003082 struct sk_buff *beacon;
3083
3084 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02003085 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07003086
3087 if (!beacon) {
3088 IWL_ERROR("update beacon failed\n");
3089 return;
3090 }
3091
3092 mutex_lock(&priv->mutex);
3093 /* new beacon skb is allocated every time; dispose previous.*/
3094 if (priv->ibss_beacon)
3095 dev_kfree_skb(priv->ibss_beacon);
3096
3097 priv->ibss_beacon = beacon;
3098 mutex_unlock(&priv->mutex);
3099
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003100 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003101}
3102
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003103static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3104 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003105{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003106#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003107 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3108 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003109 u8 rate = beacon->beacon_notify_hdr.rate;
3110
3111 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3112 "tsf %d %d rate %d\n",
3113 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3114 beacon->beacon_notify_hdr.failure_frame,
3115 le32_to_cpu(beacon->ibss_mgr_status),
3116 le32_to_cpu(beacon->high_tsf),
3117 le32_to_cpu(beacon->low_tsf), rate);
3118#endif
3119
Johannes Berg05c914f2008-09-11 00:01:58 +02003120 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07003121 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3122 queue_work(priv->workqueue, &priv->beacon_update);
3123}
3124
3125/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003126static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3127 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003128{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003129#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003130 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3131 struct iwl3945_scanreq_notification *notif =
3132 (struct iwl3945_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003133
3134 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3135#endif
3136}
3137
3138/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003139static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3140 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003141{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003142 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3143 struct iwl3945_scanstart_notification *notif =
3144 (struct iwl3945_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003145 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3146 IWL_DEBUG_SCAN("Scan start: "
3147 "%d [802.11%s] "
3148 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3149 notif->channel,
3150 notif->band ? "bg" : "a",
3151 notif->tsf_high,
3152 notif->tsf_low, notif->status, notif->beacon_timer);
3153}
3154
3155/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003156static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3157 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003158{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003159 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3160 struct iwl3945_scanresults_notification *notif =
3161 (struct iwl3945_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003162
3163 IWL_DEBUG_SCAN("Scan ch.res: "
3164 "%d [802.11%s] "
3165 "(TSF: 0x%08X:%08X) - %d "
3166 "elapsed=%lu usec (%dms since last)\n",
3167 notif->channel,
3168 notif->band ? "bg" : "a",
3169 le32_to_cpu(notif->tsf_high),
3170 le32_to_cpu(notif->tsf_low),
3171 le32_to_cpu(notif->statistics[0]),
3172 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3173 jiffies_to_msecs(elapsed_jiffies
3174 (priv->last_scan_jiffies, jiffies)));
3175
3176 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003177 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003178}
3179
3180/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003181static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3182 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003183{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003184 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3185 struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003186
3187 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3188 scan_notif->scanned_channels,
3189 scan_notif->tsf_low,
3190 scan_notif->tsf_high, scan_notif->status);
3191
3192 /* The HW is no longer scanning */
3193 clear_bit(STATUS_SCAN_HW, &priv->status);
3194
3195 /* The scan completion notification came in, so kill that timer... */
3196 cancel_delayed_work(&priv->scan_check);
3197
3198 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003199 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
3200 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07003201 jiffies_to_msecs(elapsed_jiffies
3202 (priv->scan_pass_start, jiffies)));
3203
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003204 /* Remove this scanned band from the list of pending
3205 * bands to scan, band G precedes A in order of scanning
3206 * as seen in iwl3945_bg_request_scan */
3207 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
3208 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
3209 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
3210 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07003211
3212 /* If a request to abort was given, or the scan did not succeed
3213 * then we reset the scan state machine and terminate,
3214 * re-queuing another scan if one has been requested */
3215 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3216 IWL_DEBUG_INFO("Aborted scan completed.\n");
3217 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3218 } else {
3219 /* If there are more bands on this scan pass reschedule */
3220 if (priv->scan_bands > 0)
3221 goto reschedule;
3222 }
3223
3224 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003225 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003226 IWL_DEBUG_INFO("Setting scan to off\n");
3227
3228 clear_bit(STATUS_SCANNING, &priv->status);
3229
3230 IWL_DEBUG_INFO("Scan took %dms\n",
3231 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3232
3233 queue_work(priv->workqueue, &priv->scan_completed);
3234
3235 return;
3236
3237reschedule:
3238 priv->scan_pass_start = jiffies;
3239 queue_work(priv->workqueue, &priv->request_scan);
3240}
3241
3242/* Handle notification from uCode that card's power state is changing
3243 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003244static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3245 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003246{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003247 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003248 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3249 unsigned long status = priv->status;
3250
3251 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3252 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3253 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003255 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003256 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3257
3258 if (flags & HW_CARD_DISABLED)
3259 set_bit(STATUS_RF_KILL_HW, &priv->status);
3260 else
3261 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3262
3263
3264 if (flags & SW_CARD_DISABLED)
3265 set_bit(STATUS_RF_KILL_SW, &priv->status);
3266 else
3267 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3268
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003269 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003270
3271 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3272 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3273 (test_bit(STATUS_RF_KILL_SW, &status) !=
3274 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3275 queue_work(priv->workqueue, &priv->rf_kill);
3276 else
3277 wake_up_interruptible(&priv->wait_command_queue);
3278}
3279
3280/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003281 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003282 *
3283 * Setup the RX handlers for each of the reply types sent from the uCode
3284 * to the host.
3285 *
3286 * This function chains into the hardware specific files for them to setup
3287 * any hardware specific handlers as well.
3288 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003289static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003290{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003291 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3292 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3293 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3294 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003295 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003296 iwl3945_rx_spectrum_measure_notif;
3297 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003298 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003299 iwl3945_rx_pm_debug_statistics_notif;
3300 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003301
Ben Cahill9fbab512007-11-29 11:09:47 +08003302 /*
3303 * The same handler is used for both the REPLY to a discrete
3304 * statistics request from the host as well as for the periodic
3305 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003306 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003307 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3308 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003309
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003310 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3311 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003312 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003313 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003314 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003315 iwl3945_rx_scan_complete_notif;
3316 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003317
Ben Cahill9fbab512007-11-29 11:09:47 +08003318 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003319 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003320}
3321
3322/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003323 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3324 * When FW advances 'R' index, all entries between old and new 'R' index
3325 * need to be reclaimed.
3326 */
3327static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv,
3328 int txq_id, int index)
3329{
3330 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3331 struct iwl3945_queue *q = &txq->q;
3332 int nfreed = 0;
3333
3334 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3335 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3336 "is out of range [0-%d] %d %d.\n", txq_id,
3337 index, q->n_bd, q->write_ptr, q->read_ptr);
3338 return;
3339 }
3340
3341 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3342 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3343 if (nfreed > 1) {
3344 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
3345 q->write_ptr, q->read_ptr);
3346 queue_work(priv->workqueue, &priv->restart);
3347 break;
3348 }
3349 nfreed++;
3350 }
3351}
3352
3353
3354/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003355 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003356 * @rxb: Rx buffer to reclaim
3357 *
3358 * If an Rx buffer has an async callback associated with it the callback
3359 * will be executed. The attached skb (if present) will only be freed
3360 * if the callback returns 1
3361 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003362static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3363 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003364{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003365 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003366 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3367 int txq_id = SEQ_TO_QUEUE(sequence);
3368 int index = SEQ_TO_INDEX(sequence);
3369 int huge = sequence & SEQ_HUGE_FRAME;
3370 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003371 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003372
Zhu Yib481de92007-09-25 17:54:57 -07003373 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3374
3375 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3376 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3377
3378 /* Input error checking is done when commands are added to queue. */
3379 if (cmd->meta.flags & CMD_WANT_SKB) {
3380 cmd->meta.source->u.skb = rxb->skb;
3381 rxb->skb = NULL;
3382 } else if (cmd->meta.u.callback &&
3383 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3384 rxb->skb = NULL;
3385
Tomas Winkler91c066f2008-03-06 17:36:55 -08003386 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003387
3388 if (!(cmd->meta.flags & CMD_ASYNC)) {
3389 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3390 wake_up_interruptible(&priv->wait_command_queue);
3391 }
3392}
3393
3394/************************** RX-FUNCTIONS ****************************/
3395/*
3396 * Rx theory of operation
3397 *
3398 * The host allocates 32 DMA target addresses and passes the host address
3399 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3400 * 0 to 31
3401 *
3402 * Rx Queue Indexes
3403 * The host/firmware share two index registers for managing the Rx buffers.
3404 *
3405 * The READ index maps to the first position that the firmware may be writing
3406 * to -- the driver can read up to (but not including) this position and get
3407 * good data.
3408 * The READ index is managed by the firmware once the card is enabled.
3409 *
3410 * The WRITE index maps to the last position the driver has read from -- the
3411 * position preceding WRITE is the last slot the firmware can place a packet.
3412 *
3413 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3414 * WRITE = READ.
3415 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003416 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003417 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3418 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003419 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003420 * and fire the RX interrupt. The driver can then query the READ index and
3421 * process as many packets as possible, moving the WRITE index forward as it
3422 * resets the Rx queue buffers with new memory.
3423 *
3424 * The management in the driver is as follows:
3425 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3426 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003427 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003428 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003429 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3430 * 'processed' and 'read' driver indexes as well)
3431 * + A received packet is processed and handed to the kernel network stack,
3432 * detached from the iwl->rxq. The driver 'processed' index is updated.
3433 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3434 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3435 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3436 * were enough free buffers and RX_STALLED is set it is cleared.
3437 *
3438 *
3439 * Driver sequence:
3440 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003441 * iwl3945_rx_queue_alloc() Allocates rx_free
3442 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003443 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003444 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003445 * queue, updates firmware pointers, and updates
3446 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003447 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003448 *
3449 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003450 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003451 * READ INDEX, detaching the SKB from the pool.
3452 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003453 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003454 * slots.
3455 * ...
3456 *
3457 */
3458
3459/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003460 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003461 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003462static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003463{
3464 int s = q->read - q->write;
3465 if (s <= 0)
3466 s += RX_QUEUE_SIZE;
3467 /* keep some buffer to not confuse full and empty queue */
3468 s -= 2;
3469 if (s < 0)
3470 s = 0;
3471 return s;
3472}
3473
3474/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003475 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003476 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003477int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003478{
3479 u32 reg = 0;
3480 int rc = 0;
3481 unsigned long flags;
3482
3483 spin_lock_irqsave(&q->lock, flags);
3484
3485 if (q->need_update == 0)
3486 goto exit_unlock;
3487
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003488 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003489 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003490 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003491
3492 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003493 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003494 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3495 goto exit_unlock;
3496 }
3497
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003498 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003499 if (rc)
3500 goto exit_unlock;
3501
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003502 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003503 iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003504 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003505 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003506
3507 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003508 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003509 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003510 iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003511
3512
3513 q->need_update = 0;
3514
3515 exit_unlock:
3516 spin_unlock_irqrestore(&q->lock, flags);
3517 return rc;
3518}
3519
3520/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003521 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003522 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003523static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003524 dma_addr_t dma_addr)
3525{
3526 return cpu_to_le32((u32)dma_addr);
3527}
3528
3529/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003530 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003531 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003532 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003533 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003534 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003535 *
3536 * This moves the 'write' index forward to catch up with 'processed', and
3537 * also updates the memory address in the firmware to reference the new
3538 * target buffer.
3539 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003540static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003541{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003542 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003543 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003544 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003545 unsigned long flags;
3546 int write, rc;
3547
3548 spin_lock_irqsave(&rxq->lock, flags);
3549 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003550 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003551 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003552 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003553 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003554 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003555
3556 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003557 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003558 rxq->queue[rxq->write] = rxb;
3559 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3560 rxq->free_count--;
3561 }
3562 spin_unlock_irqrestore(&rxq->lock, flags);
3563 /* If the pre-allocated buffer pool is dropping low, schedule to
3564 * refill it */
3565 if (rxq->free_count <= RX_LOW_WATERMARK)
3566 queue_work(priv->workqueue, &priv->rx_replenish);
3567
3568
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003569 /* If we've added more space for the firmware to place data, tell it.
3570 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003571 if ((write != (rxq->write & ~0x7))
3572 || (abs(rxq->write - rxq->read) > 7)) {
3573 spin_lock_irqsave(&rxq->lock, flags);
3574 rxq->need_update = 1;
3575 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003576 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003577 if (rc)
3578 return rc;
3579 }
3580
3581 return 0;
3582}
3583
3584/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003585 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003586 *
3587 * When moving to rx_free an SKB is allocated for the slot.
3588 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003589 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003590 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003591 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003592static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003593{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003594 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003595 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003596 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003597 unsigned long flags;
3598 spin_lock_irqsave(&rxq->lock, flags);
3599 while (!list_empty(&rxq->rx_used)) {
3600 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003601 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003602
3603 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003604 rxb->skb =
3605 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3606 if (!rxb->skb) {
3607 if (net_ratelimit())
3608 printk(KERN_CRIT DRV_NAME
3609 ": Can not allocate SKB buffers\n");
3610 /* We don't reschedule replenish work here -- we will
3611 * call the restock method and if it still needs
3612 * more buffers it will schedule replenish */
3613 break;
3614 }
Zhu Yi12342c42007-12-20 11:27:32 +08003615
3616 /* If radiotap head is required, reserve some headroom here.
3617 * The physical head count is a variable rx_stats->phy_count.
3618 * We reserve 4 bytes here. Plus these extra bytes, the
3619 * headroom of the physical head should be enough for the
3620 * radiotap head that iwl3945 supported. See iwl3945_rt.
3621 */
3622 skb_reserve(rxb->skb, 4);
3623
Zhu Yib481de92007-09-25 17:54:57 -07003624 priv->alloc_rxb_skb++;
3625 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003626
3627 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003628 rxb->dma_addr =
3629 pci_map_single(priv->pci_dev, rxb->skb->data,
3630 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3631 list_add_tail(&rxb->list, &rxq->rx_free);
3632 rxq->free_count++;
3633 }
3634 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003635}
3636
3637/*
3638 * this should be called while priv->lock is locked
3639 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003640static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003641{
3642 struct iwl3945_priv *priv = data;
3643
3644 iwl3945_rx_allocate(priv);
3645 iwl3945_rx_queue_restock(priv);
3646}
3647
3648
3649void iwl3945_rx_replenish(void *data)
3650{
3651 struct iwl3945_priv *priv = data;
3652 unsigned long flags;
3653
3654 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003655
3656 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003657 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003658 spin_unlock_irqrestore(&priv->lock, flags);
3659}
3660
3661/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003662 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003663 * This free routine walks the list of POOL entries and if SKB is set to
3664 * non NULL it is unmapped and freed
3665 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003666static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003667{
3668 int i;
3669 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3670 if (rxq->pool[i].skb != NULL) {
3671 pci_unmap_single(priv->pci_dev,
3672 rxq->pool[i].dma_addr,
3673 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3674 dev_kfree_skb(rxq->pool[i].skb);
3675 }
3676 }
3677
3678 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3679 rxq->dma_addr);
3680 rxq->bd = NULL;
3681}
3682
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003683int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003684{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003685 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003686 struct pci_dev *dev = priv->pci_dev;
3687 int i;
3688
3689 spin_lock_init(&rxq->lock);
3690 INIT_LIST_HEAD(&rxq->rx_free);
3691 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003692
3693 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003694 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3695 if (!rxq->bd)
3696 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003697
Zhu Yib481de92007-09-25 17:54:57 -07003698 /* Fill the rx_used queue with _all_ of the Rx buffers */
3699 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3700 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003701
Zhu Yib481de92007-09-25 17:54:57 -07003702 /* Set us so that we have processed and used all buffers, but have
3703 * not restocked the Rx queue with fresh buffers */
3704 rxq->read = rxq->write = 0;
3705 rxq->free_count = 0;
3706 rxq->need_update = 0;
3707 return 0;
3708}
3709
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003710void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003711{
3712 unsigned long flags;
3713 int i;
3714 spin_lock_irqsave(&rxq->lock, flags);
3715 INIT_LIST_HEAD(&rxq->rx_free);
3716 INIT_LIST_HEAD(&rxq->rx_used);
3717 /* Fill the rx_used queue with _all_ of the Rx buffers */
3718 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3719 /* In the reset function, these buffers may have been allocated
3720 * to an SKB, so we need to unmap and free potential storage */
3721 if (rxq->pool[i].skb != NULL) {
3722 pci_unmap_single(priv->pci_dev,
3723 rxq->pool[i].dma_addr,
3724 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3725 priv->alloc_rxb_skb--;
3726 dev_kfree_skb(rxq->pool[i].skb);
3727 rxq->pool[i].skb = NULL;
3728 }
3729 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3730 }
3731
3732 /* Set us so that we have processed and used all buffers, but have
3733 * not restocked the Rx queue with fresh buffers */
3734 rxq->read = rxq->write = 0;
3735 rxq->free_count = 0;
3736 spin_unlock_irqrestore(&rxq->lock, flags);
3737}
3738
3739/* Convert linear signal-to-noise ratio into dB */
3740static u8 ratio2dB[100] = {
3741/* 0 1 2 3 4 5 6 7 8 9 */
3742 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3743 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3744 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3745 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3746 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3747 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3748 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3749 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3750 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3751 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3752};
3753
3754/* Calculates a relative dB value from a ratio of linear
3755 * (i.e. not dB) signal levels.
3756 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003757int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003758{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003759 /* 1000:1 or higher just report as 60 dB */
3760 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003761 return 60;
3762
Adrian Bunk221c80c2008-02-02 23:19:01 +02003763 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003764 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003765 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003766 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003767
3768 /* We shouldn't see this */
3769 if (sig_ratio < 1)
3770 return 0;
3771
3772 /* Use table for ratios 1:1 - 99:1 */
3773 return (int)ratio2dB[sig_ratio];
3774}
3775
3776#define PERFECT_RSSI (-20) /* dBm */
3777#define WORST_RSSI (-95) /* dBm */
3778#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3779
3780/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3781 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3782 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003783int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003784{
3785 int sig_qual;
3786 int degradation = PERFECT_RSSI - rssi_dbm;
3787
3788 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3789 * as indicator; formula is (signal dbm - noise dbm).
3790 * SNR at or above 40 is a great signal (100%).
3791 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3792 * Weakest usable signal is usually 10 - 15 dB SNR. */
3793 if (noise_dbm) {
3794 if (rssi_dbm - noise_dbm >= 40)
3795 return 100;
3796 else if (rssi_dbm < noise_dbm)
3797 return 0;
3798 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3799
3800 /* Else use just the signal level.
3801 * This formula is a least squares fit of data points collected and
3802 * compared with a reference system that had a percentage (%) display
3803 * for signal quality. */
3804 } else
3805 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3806 (15 * RSSI_RANGE + 62 * degradation)) /
3807 (RSSI_RANGE * RSSI_RANGE);
3808
3809 if (sig_qual > 100)
3810 sig_qual = 100;
3811 else if (sig_qual < 1)
3812 sig_qual = 0;
3813
3814 return sig_qual;
3815}
3816
3817/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003818 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003819 *
3820 * Uses the priv->rx_handlers callback function array to invoke
3821 * the appropriate handlers, including command responses,
3822 * frame-received notifications, and other notifications.
3823 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003824static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003825{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003826 struct iwl3945_rx_mem_buffer *rxb;
3827 struct iwl3945_rx_packet *pkt;
3828 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003829 u32 r, i;
3830 int reclaim;
3831 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003832 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003833 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003834
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003835 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3836 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003837 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003838 i = rxq->read;
3839
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003840 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3841 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003842 /* Rx interrupt, but nothing sent from uCode */
3843 if (i == r)
3844 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3845
3846 while (i != r) {
3847 rxb = rxq->queue[i];
3848
Ben Cahill9fbab512007-11-29 11:09:47 +08003849 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003850 * then a bug has been introduced in the queue refilling
3851 * routines -- catch it here */
3852 BUG_ON(rxb == NULL);
3853
3854 rxq->queue[i] = NULL;
3855
3856 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
3857 IWL_RX_BUF_SIZE,
3858 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003859 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003860
3861 /* Reclaim a command buffer only if this packet is a response
3862 * to a (driver-originated) command.
3863 * If the packet (e.g. Rx frame) originated from uCode,
3864 * there is no command buffer to reclaim.
3865 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3866 * but apparently a few don't get set; catch them here. */
3867 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3868 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3869 (pkt->hdr.cmd != REPLY_TX);
3870
3871 /* Based on type of command response or notification,
3872 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003873 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003874 if (priv->rx_handlers[pkt->hdr.cmd]) {
3875 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3876 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3877 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3878 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3879 } else {
3880 /* No handling needed */
3881 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3882 "r %d i %d No handler needed for %s, 0x%02x\n",
3883 r, i, get_cmd_string(pkt->hdr.cmd),
3884 pkt->hdr.cmd);
3885 }
3886
3887 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003888 /* Invoke any callbacks, transfer the skb to caller, and
3889 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003890 * as we reclaim the driver command queue */
3891 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003892 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003893 else
3894 IWL_WARNING("Claim null rxb?\n");
3895 }
3896
3897 /* For now we just don't re-use anything. We can tweak this
3898 * later to try and re-use notification packets and SKBs that
3899 * fail to Rx correctly */
3900 if (rxb->skb != NULL) {
3901 priv->alloc_rxb_skb--;
3902 dev_kfree_skb_any(rxb->skb);
3903 rxb->skb = NULL;
3904 }
3905
3906 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
3907 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3908 spin_lock_irqsave(&rxq->lock, flags);
3909 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3910 spin_unlock_irqrestore(&rxq->lock, flags);
3911 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003912 /* If there are a lot of unused frames,
3913 * restock the Rx queue so ucode won't assert. */
3914 if (fill_rx) {
3915 count++;
3916 if (count >= 8) {
3917 priv->rxq.read = i;
3918 __iwl3945_rx_replenish(priv);
3919 count = 0;
3920 }
3921 }
Zhu Yib481de92007-09-25 17:54:57 -07003922 }
3923
3924 /* Backtrack one entry */
3925 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003926 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003927}
3928
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003929/**
3930 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3931 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003932static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
3933 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003934{
3935 u32 reg = 0;
3936 int rc = 0;
3937 int txq_id = txq->q.id;
3938
3939 if (txq->need_update == 0)
3940 return rc;
3941
3942 /* if we're trying to save power */
3943 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3944 /* wake up nic if it's powered down ...
3945 * uCode will wake up, and interrupt us again, so next
3946 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003947 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003948
3949 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3950 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003951 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003952 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3953 return rc;
3954 }
3955
3956 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003957 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003958 if (rc)
3959 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003960 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003961 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003962 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003963
3964 /* else not in power-save mode, uCode will never sleep when we're
3965 * trying to tx (during RFKILL, we're not trying to tx). */
3966 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003967 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003968 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003969
3970 txq->need_update = 0;
3971
3972 return rc;
3973}
3974
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003975#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003976static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003977{
3978 IWL_DEBUG_RADIO("RX CONFIG:\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003979 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003980 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3981 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3982 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3983 le32_to_cpu(rxon->filter_flags));
3984 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3985 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3986 rxon->ofdm_basic_rates);
3987 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003988 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3989 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003990 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3991}
3992#endif
3993
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003994static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003995{
3996 IWL_DEBUG_ISR("Enabling interrupts\n");
3997 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003998 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003999}
4000
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004001
4002/* call this function to flush any scheduled tasklet */
4003static inline void iwl_synchronize_irq(struct iwl3945_priv *priv)
4004{
4005 /* wait to make sure we flush pedding tasklet*/
4006 synchronize_irq(priv->pci_dev->irq);
4007 tasklet_kill(&priv->irq_tasklet);
4008}
4009
4010
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004011static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004012{
4013 clear_bit(STATUS_INT_ENABLED, &priv->status);
4014
4015 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004016 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004017
4018 /* acknowledge/clear/reset any interrupts still pending
4019 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004020 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4021 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004022 IWL_DEBUG_ISR("Disabled interrupts\n");
4023}
4024
4025static const char *desc_lookup(int i)
4026{
4027 switch (i) {
4028 case 1:
4029 return "FAIL";
4030 case 2:
4031 return "BAD_PARAM";
4032 case 3:
4033 return "BAD_CHECKSUM";
4034 case 4:
4035 return "NMI_INTERRUPT";
4036 case 5:
4037 return "SYSASSERT";
4038 case 6:
4039 return "FATAL_ERROR";
4040 }
4041
4042 return "UNKNOWN";
4043}
4044
4045#define ERROR_START_OFFSET (1 * sizeof(u32))
4046#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004048static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004049{
4050 u32 i;
4051 u32 desc, time, count, base, data1;
4052 u32 blink1, blink2, ilink1, ilink2;
4053 int rc;
4054
4055 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4056
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004057 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004058 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4059 return;
4060 }
4061
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004062 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004063 if (rc) {
4064 IWL_WARNING("Can not read from adapter at this time.\n");
4065 return;
4066 }
4067
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004068 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004069
4070 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4071 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004072 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004073 }
4074
4075 IWL_ERROR("Desc Time asrtPC blink2 "
4076 "ilink1 nmiPC Line\n");
4077 for (i = ERROR_START_OFFSET;
4078 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4079 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004080 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004081 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004082 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004083 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004084 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004085 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004086 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004087 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004088 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004089 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004090 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004091 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004092 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004093
4094 IWL_ERROR
4095 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4096 desc_lookup(desc), desc, time, blink1, blink2,
4097 ilink1, ilink2, data1);
4098 }
4099
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004100 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004101
4102}
4103
Ben Cahillf58177b2007-11-29 11:09:43 +08004104#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004105
4106/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004107 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004108 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004109 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004110 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004111static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004112 u32 num_events, u32 mode)
4113{
4114 u32 i;
4115 u32 base; /* SRAM byte address of event log header */
4116 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4117 u32 ptr; /* SRAM byte address of log data */
4118 u32 ev, time, data; /* event log data */
4119
4120 if (num_events == 0)
4121 return;
4122
4123 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4124
4125 if (mode == 0)
4126 event_size = 2 * sizeof(u32);
4127 else
4128 event_size = 3 * sizeof(u32);
4129
4130 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4131
4132 /* "time" is actually "data" for mode 0 (no timestamp).
4133 * place event id # at far right for easier visual parsing. */
4134 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004135 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004136 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004137 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004138 ptr += sizeof(u32);
4139 if (mode == 0)
4140 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4141 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004142 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004143 ptr += sizeof(u32);
4144 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4145 }
4146 }
4147}
4148
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004149static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004150{
4151 int rc;
4152 u32 base; /* SRAM byte address of event log header */
4153 u32 capacity; /* event log capacity in # entries */
4154 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4155 u32 num_wraps; /* # times uCode wrapped to top of log */
4156 u32 next_entry; /* index of next entry to be written by uCode */
4157 u32 size; /* # entries that we'll print */
4158
4159 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004160 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004161 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4162 return;
4163 }
4164
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004165 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004166 if (rc) {
4167 IWL_WARNING("Can not read from adapter at this time.\n");
4168 return;
4169 }
4170
4171 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004172 capacity = iwl3945_read_targ_mem(priv, base);
4173 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4174 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4175 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004176
4177 size = num_wraps ? capacity : next_entry;
4178
4179 /* bail out if nothing in log */
4180 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004181 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004182 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004183 return;
4184 }
4185
Zhu Yi583fab32007-09-27 11:27:30 +08004186 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004187 size, num_wraps);
4188
4189 /* if uCode has wrapped back to top of log, start at the oldest entry,
4190 * i.e the next one that uCode would fill. */
4191 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004192 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004193 capacity - next_entry, mode);
4194
4195 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004196 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004197
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004198 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004199}
4200
4201/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004202 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004203 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004204static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004205{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004206 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004207 set_bit(STATUS_FW_ERROR, &priv->status);
4208
4209 /* Cancel currently queued command. */
4210 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4211
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004212#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004213 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4214 iwl3945_dump_nic_error_log(priv);
4215 iwl3945_dump_nic_event_log(priv);
4216 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004217 }
4218#endif
4219
4220 wake_up_interruptible(&priv->wait_command_queue);
4221
4222 /* Keep the restart process from trying to send host
4223 * commands by clearing the INIT status bit */
4224 clear_bit(STATUS_READY, &priv->status);
4225
4226 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4227 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4228 "Restarting adapter due to uCode error.\n");
4229
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004230 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004231 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4232 sizeof(priv->recovery_rxon));
4233 priv->error_recovering = 1;
4234 }
4235 queue_work(priv->workqueue, &priv->restart);
4236 }
4237}
4238
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004239static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004240{
4241 unsigned long flags;
4242
4243 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4244 sizeof(priv->staging_rxon));
4245 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004246 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004247
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004248 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004249
4250 spin_lock_irqsave(&priv->lock, flags);
4251 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4252 priv->error_recovering = 0;
4253 spin_unlock_irqrestore(&priv->lock, flags);
4254}
4255
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004256static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004257{
4258 u32 inta, handled = 0;
4259 u32 inta_fh;
4260 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004261#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004262 u32 inta_mask;
4263#endif
4264
4265 spin_lock_irqsave(&priv->lock, flags);
4266
4267 /* Ack/clear/reset pending uCode interrupts.
4268 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4269 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004270 inta = iwl3945_read32(priv, CSR_INT);
4271 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004272
4273 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4274 * Any new interrupts that happen after this, either while we're
4275 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004276 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4277 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004278
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004279#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004280 if (iwl3945_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004281 /* just for debug */
4282 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004283 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4284 inta, inta_mask, inta_fh);
4285 }
4286#endif
4287
4288 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4289 * atomic, make sure that inta covers all the interrupts that
4290 * we've discovered, even if FH interrupt came in just after
4291 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004292 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004293 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004294 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004295 inta |= CSR_INT_BIT_FH_TX;
4296
4297 /* Now service all interrupt bits discovered above. */
4298 if (inta & CSR_INT_BIT_HW_ERR) {
4299 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4300
4301 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004302 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004303
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004304 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004305
4306 handled |= CSR_INT_BIT_HW_ERR;
4307
4308 spin_unlock_irqrestore(&priv->lock, flags);
4309
4310 return;
4311 }
4312
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004313#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004314 if (iwl3945_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004315 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004316 if (inta & CSR_INT_BIT_SCD)
4317 IWL_DEBUG_ISR("Scheduler finished to transmit "
4318 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004319
4320 /* Alive notification via Rx interrupt will do the real work */
4321 if (inta & CSR_INT_BIT_ALIVE)
4322 IWL_DEBUG_ISR("Alive interrupt\n");
4323 }
4324#endif
4325 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004326 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004327
4328 /* HW RF KILL switch toggled (4965 only) */
4329 if (inta & CSR_INT_BIT_RF_KILL) {
4330 int hw_rf_kill = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004331 if (!(iwl3945_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07004332 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
4333 hw_rf_kill = 1;
4334
4335 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL | IWL_DL_ISR,
4336 "RF_KILL bit toggled to %s.\n",
4337 hw_rf_kill ? "disable radio":"enable radio");
4338
4339 /* Queue restart only if RF_KILL switch was set to "kill"
4340 * when we loaded driver, and is now set to "enable".
4341 * After we're Alive, RF_KILL gets handled by
Reinette Chatre32304552008-02-15 14:34:37 -08004342 * iwl3945_rx_card_state_notif() */
Zhu Yi53e49092007-12-06 16:08:44 +08004343 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status)) {
4344 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07004345 queue_work(priv->workqueue, &priv->restart);
Zhu Yi53e49092007-12-06 16:08:44 +08004346 }
Zhu Yib481de92007-09-25 17:54:57 -07004347
4348 handled |= CSR_INT_BIT_RF_KILL;
4349 }
4350
4351 /* Chip got too hot and stopped itself (4965 only) */
4352 if (inta & CSR_INT_BIT_CT_KILL) {
4353 IWL_ERROR("Microcode CT kill error detected.\n");
4354 handled |= CSR_INT_BIT_CT_KILL;
4355 }
4356
4357 /* Error detected by uCode */
4358 if (inta & CSR_INT_BIT_SW_ERR) {
4359 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4360 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004361 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004362 handled |= CSR_INT_BIT_SW_ERR;
4363 }
4364
4365 /* uCode wakes up after power-down sleep */
4366 if (inta & CSR_INT_BIT_WAKEUP) {
4367 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004368 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4369 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4370 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4371 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4372 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4373 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4374 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004375
4376 handled |= CSR_INT_BIT_WAKEUP;
4377 }
4378
4379 /* All uCode command responses, including Tx command responses,
4380 * Rx "responses" (frame-received notification), and other
4381 * notifications from uCode come through here*/
4382 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004383 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004384 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4385 }
4386
4387 if (inta & CSR_INT_BIT_FH_TX) {
4388 IWL_DEBUG_ISR("Tx interrupt\n");
4389
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004390 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4391 if (!iwl3945_grab_nic_access(priv)) {
4392 iwl3945_write_direct32(priv,
Zhu Yib481de92007-09-25 17:54:57 -07004393 FH_TCSR_CREDIT
4394 (ALM_FH_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004395 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004396 }
4397 handled |= CSR_INT_BIT_FH_TX;
4398 }
4399
4400 if (inta & ~handled)
4401 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4402
4403 if (inta & ~CSR_INI_SET_MASK) {
4404 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4405 inta & ~CSR_INI_SET_MASK);
4406 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4407 }
4408
4409 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004410 /* only Re-enable if disabled by irq */
4411 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4412 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004413
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004414#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004415 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4416 inta = iwl3945_read32(priv, CSR_INT);
4417 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4418 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004419 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4420 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4421 }
4422#endif
4423 spin_unlock_irqrestore(&priv->lock, flags);
4424}
4425
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004426static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004427{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004428 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004429 u32 inta, inta_mask;
4430 u32 inta_fh;
4431 if (!priv)
4432 return IRQ_NONE;
4433
4434 spin_lock(&priv->lock);
4435
4436 /* Disable (but don't clear!) interrupts here to avoid
4437 * back-to-back ISRs and sporadic interrupts from our NIC.
4438 * If we have something to service, the tasklet will re-enable ints.
4439 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004440 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4441 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004442
4443 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004444 inta = iwl3945_read32(priv, CSR_INT);
4445 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004446
4447 /* Ignore interrupt if there's nothing in NIC to service.
4448 * This may be due to IRQ shared with another device,
4449 * or due to sporadic interrupts thrown from our NIC. */
4450 if (!inta && !inta_fh) {
4451 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4452 goto none;
4453 }
4454
4455 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4456 /* Hardware disappeared */
4457 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004458 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004459 }
4460
4461 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4462 inta, inta_mask, inta_fh);
4463
Joonwoo Park25c03d82008-01-23 10:15:20 -08004464 inta &= ~CSR_INT_BIT_SCD;
4465
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004466 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004467 if (likely(inta || inta_fh))
4468 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004469unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004470 spin_unlock(&priv->lock);
4471
4472 return IRQ_HANDLED;
4473
4474 none:
4475 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004476 /* only Re-enable if disabled by irq */
4477 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4478 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004479 spin_unlock(&priv->lock);
4480 return IRQ_NONE;
4481}
4482
4483/************************** EEPROM BANDS ****************************
4484 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004485 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004486 * EEPROM contents to the specific channel number supported for each
4487 * band.
4488 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004489 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004490 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4491 * The specific geography and calibration information for that channel
4492 * is contained in the eeprom map itself.
4493 *
4494 * During init, we copy the eeprom information and channel map
4495 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4496 *
4497 * channel_map_24/52 provides the index in the channel_info array for a
4498 * given channel. We have to have two separate maps as there is channel
4499 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4500 * band_2
4501 *
4502 * A value of 0xff stored in the channel_map indicates that the channel
4503 * is not supported by the hardware at all.
4504 *
4505 * A value of 0xfe in the channel_map indicates that the channel is not
4506 * valid for Tx with the current hardware. This means that
4507 * while the system can tune and receive on a given channel, it may not
4508 * be able to associate or transmit any frames on that
4509 * channel. There is no corresponding channel information for that
4510 * entry.
4511 *
4512 *********************************************************************/
4513
4514/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004515static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004516 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4517};
4518
4519/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004520static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004521 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4522};
4523
Ben Cahill9fbab512007-11-29 11:09:47 +08004524static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004525 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4526};
4527
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004528static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004529 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4530};
4531
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004532static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004533 145, 149, 153, 157, 161, 165
4534};
4535
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004536static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004537 int *eeprom_ch_count,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004538 const struct iwl3945_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004539 **eeprom_ch_info,
4540 const u8 **eeprom_ch_index)
4541{
4542 switch (band) {
4543 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004544 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004545 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004546 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004547 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004548 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004549 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004550 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004551 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004552 break;
4553 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004554 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004555 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004556 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004557 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004558 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004559 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004560 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004561 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004562 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004563 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004564 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004565 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004566 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004567 break;
4568 default:
4569 BUG();
4570 return;
4571 }
4572}
4573
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004574/**
4575 * iwl3945_get_channel_info - Find driver's private channel info
4576 *
4577 * Based on band and channel number.
4578 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004579const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004580 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004581{
4582 int i;
4583
Johannes Berg8318d782008-01-24 19:38:38 +01004584 switch (band) {
4585 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004586 for (i = 14; i < priv->channel_count; i++) {
4587 if (priv->channel_info[i].channel == channel)
4588 return &priv->channel_info[i];
4589 }
4590 break;
4591
Johannes Berg8318d782008-01-24 19:38:38 +01004592 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004593 if (channel >= 1 && channel <= 14)
4594 return &priv->channel_info[channel - 1];
4595 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004596 case IEEE80211_NUM_BANDS:
4597 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004598 }
4599
4600 return NULL;
4601}
4602
4603#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4604 ? # x " " : "")
4605
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004606/**
4607 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4608 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004609static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004610{
4611 int eeprom_ch_count = 0;
4612 const u8 *eeprom_ch_index = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004613 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004614 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004615 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004616
4617 if (priv->channel_count) {
4618 IWL_DEBUG_INFO("Channel map already initialized.\n");
4619 return 0;
4620 }
4621
4622 if (priv->eeprom.version < 0x2f) {
4623 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
4624 priv->eeprom.version);
4625 return -EINVAL;
4626 }
4627
4628 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4629
4630 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004631 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4632 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4633 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4634 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4635 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004636
4637 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4638
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004639 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004640 priv->channel_count, GFP_KERNEL);
4641 if (!priv->channel_info) {
4642 IWL_ERROR("Could not allocate channel_info\n");
4643 priv->channel_count = 0;
4644 return -ENOMEM;
4645 }
4646
4647 ch_info = priv->channel_info;
4648
4649 /* Loop through the 5 EEPROM bands adding them in order to the
4650 * channel map we maintain (that contains additional information than
4651 * what just in the EEPROM) */
4652 for (band = 1; band <= 5; band++) {
4653
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004654 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004655 &eeprom_ch_info, &eeprom_ch_index);
4656
4657 /* Loop through each band adding each of the channels */
4658 for (ch = 0; ch < eeprom_ch_count; ch++) {
4659 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004660 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4661 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004662
4663 /* permanently store EEPROM's channel regulatory flags
4664 * and max power in channel info database. */
4665 ch_info->eeprom = eeprom_ch_info[ch];
4666
4667 /* Copy the run-time flags so they are there even on
4668 * invalid channels */
4669 ch_info->flags = eeprom_ch_info[ch].flags;
4670
4671 if (!(is_channel_valid(ch_info))) {
4672 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4673 "No traffic\n",
4674 ch_info->channel,
4675 ch_info->flags,
4676 is_channel_a_band(ch_info) ?
4677 "5.2" : "2.4");
4678 ch_info++;
4679 continue;
4680 }
4681
4682 /* Initialize regulatory-based run-time data */
4683 ch_info->max_power_avg = ch_info->curr_txpow =
4684 eeprom_ch_info[ch].max_power_avg;
4685 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4686 ch_info->min_power = 0;
4687
Guy Cohenfe7c4042008-04-21 15:41:56 -07004688 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004689 " %ddBm): Ad-Hoc %ssupported\n",
4690 ch_info->channel,
4691 is_channel_a_band(ch_info) ?
4692 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004693 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004694 CHECK_AND_PRINT(IBSS),
4695 CHECK_AND_PRINT(ACTIVE),
4696 CHECK_AND_PRINT(RADAR),
4697 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004698 CHECK_AND_PRINT(DFS),
4699 eeprom_ch_info[ch].flags,
4700 eeprom_ch_info[ch].max_power_avg,
4701 ((eeprom_ch_info[ch].
4702 flags & EEPROM_CHANNEL_IBSS)
4703 && !(eeprom_ch_info[ch].
4704 flags & EEPROM_CHANNEL_RADAR))
4705 ? "" : "not ");
4706
4707 /* Set the user_txpower_limit to the highest power
4708 * supported by any channel */
4709 if (eeprom_ch_info[ch].max_power_avg >
4710 priv->user_txpower_limit)
4711 priv->user_txpower_limit =
4712 eeprom_ch_info[ch].max_power_avg;
4713
4714 ch_info++;
4715 }
4716 }
4717
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004718 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004719 if (iwl3945_txpower_set_from_eeprom(priv))
4720 return -EIO;
4721
4722 return 0;
4723}
4724
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004725/*
4726 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4727 */
4728static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
4729{
4730 kfree(priv->channel_info);
4731 priv->channel_count = 0;
4732}
4733
Zhu Yib481de92007-09-25 17:54:57 -07004734/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4735 * sending probe req. This should be set long enough to hear probe responses
4736 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004737#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4738#define IWL_ACTIVE_DWELL_TIME_52 (20)
4739
4740#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4741#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004742
4743/* For faster active scanning, scan will move to the next channel if fewer than
4744 * PLCP_QUIET_THRESH packets are heard on this channel within
4745 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4746 * time if it's a quiet channel (nothing responded to our probe, and there's
4747 * no other traffic).
4748 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4749#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004750#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004751
4752/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4753 * Must be set longer than active dwell time.
4754 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4755#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4756#define IWL_PASSIVE_DWELL_TIME_52 (10)
4757#define IWL_PASSIVE_DWELL_BASE (100)
4758#define IWL_CHANNEL_TUNE_TIME 5
4759
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004760#define IWL_SCAN_PROBE_MASK(n) cpu_to_le32((BIT(n) | (BIT(n) - BIT(1))))
4761
Johannes Berg8318d782008-01-24 19:38:38 +01004762static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004763 enum ieee80211_band band,
4764 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004765{
Johannes Berg8318d782008-01-24 19:38:38 +01004766 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004767 return IWL_ACTIVE_DWELL_TIME_52 +
4768 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004769 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004770 return IWL_ACTIVE_DWELL_TIME_24 +
4771 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004772}
4773
Johannes Berg8318d782008-01-24 19:38:38 +01004774static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
4775 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004776{
Johannes Berg8318d782008-01-24 19:38:38 +01004777 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004778 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4779 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4780
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004781 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004782 /* If we're associated, we clamp the maximum passive
4783 * dwell time to be 98% of the beacon interval (minus
4784 * 2 * channel tune time) */
4785 passive = priv->beacon_int;
4786 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4787 passive = IWL_PASSIVE_DWELL_BASE;
4788 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4789 }
4790
Zhu Yib481de92007-09-25 17:54:57 -07004791 return passive;
4792}
4793
Johannes Berg8318d782008-01-24 19:38:38 +01004794static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
4795 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004796 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004797 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004798{
4799 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004800 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004801 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004802 u16 passive_dwell = 0;
4803 u16 active_dwell = 0;
4804 int added, i;
4805
Johannes Berg8318d782008-01-24 19:38:38 +01004806 sband = iwl3945_get_band(priv, band);
4807 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004808 return 0;
4809
Johannes Berg8318d782008-01-24 19:38:38 +01004810 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004811
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004812 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004813 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004814
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004815 if (passive_dwell <= active_dwell)
4816 passive_dwell = active_dwell + 1;
4817
Johannes Berg8318d782008-01-24 19:38:38 +01004818 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004819 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4820 continue;
4821
Johannes Berg8318d782008-01-24 19:38:38 +01004822 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004823
Johannes Berg8318d782008-01-24 19:38:38 +01004824 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004825 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004826 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004827 scan_ch->channel);
4828 continue;
4829 }
4830
4831 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg8318d782008-01-24 19:38:38 +01004832 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN))
Zhu Yib481de92007-09-25 17:54:57 -07004833 scan_ch->type = 0; /* passive */
4834 else
4835 scan_ch->type = 1; /* active */
4836
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004837 if ((scan_ch->type & 1) && n_probes)
4838 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
Zhu Yib481de92007-09-25 17:54:57 -07004839
Zhu Yib481de92007-09-25 17:54:57 -07004840 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4841 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
4842
Ben Cahill9fbab512007-11-29 11:09:47 +08004843 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004844 scan_ch->tpc.dsp_atten = 110;
4845 /* scan_pwr_info->tpc.dsp_atten; */
4846
4847 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004848 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004849 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4850 else {
4851 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4852 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004853 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004854 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004855 */
4856 }
4857
4858 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4859 scan_ch->channel,
4860 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4861 (scan_ch->type & 1) ?
4862 active_dwell : passive_dwell);
4863
4864 scan_ch++;
4865 added++;
4866 }
4867
4868 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4869 return added;
4870}
4871
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004872static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004873 struct ieee80211_rate *rates)
4874{
4875 int i;
4876
4877 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004878 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4879 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4880 rates[i].hw_value_short = i;
4881 rates[i].flags = 0;
4882 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004883 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004884 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004885 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004886 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004887 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004888 }
Zhu Yib481de92007-09-25 17:54:57 -07004889 }
4890}
4891
4892/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004893 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004894 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004895static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004896{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004897 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004898 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004899 struct ieee80211_channel *channels;
4900 struct ieee80211_channel *geo_ch;
4901 struct ieee80211_rate *rates;
4902 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004903
Johannes Berg8318d782008-01-24 19:38:38 +01004904 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4905 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004906 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4907 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4908 return 0;
4909 }
4910
Zhu Yib481de92007-09-25 17:54:57 -07004911 channels = kzalloc(sizeof(struct ieee80211_channel) *
4912 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004913 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004914 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004915
Tomas Winkler8211ef72008-03-02 01:36:04 +02004916 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004917 GFP_KERNEL);
4918 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004919 kfree(channels);
4920 return -ENOMEM;
4921 }
4922
Zhu Yib481de92007-09-25 17:54:57 -07004923 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004924 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4925 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4926 /* just OFDM */
4927 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4928 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004929
Tomas Winkler8211ef72008-03-02 01:36:04 +02004930 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4931 sband->channels = channels;
4932 /* OFDM & CCK */
4933 sband->bitrates = rates;
4934 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004935
4936 priv->ieee_channels = channels;
4937 priv->ieee_rates = rates;
4938
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004939 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004940
Tomas Winkler8211ef72008-03-02 01:36:04 +02004941 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004942 ch = &priv->channel_info[i];
4943
Tomas Winkler8211ef72008-03-02 01:36:04 +02004944 /* FIXME: might be removed if scan is OK*/
4945 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004946 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004947
4948 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004949 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004950 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004951 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004952
Tomas Winkler8211ef72008-03-02 01:36:04 +02004953 geo_ch = &sband->channels[sband->n_channels++];
4954
4955 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004956 geo_ch->max_power = ch->max_power_avg;
4957 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004958 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004959
4960 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004961 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4962 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004963
Johannes Berg8318d782008-01-24 19:38:38 +01004964 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4965 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004966
4967 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004968 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004969
4970 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4971 priv->max_channel_txpower_limit =
4972 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004973 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004974 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004975 }
4976
4977 /* Save flags for reg domain usage */
4978 geo_ch->orig_flags = geo_ch->flags;
4979
4980 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4981 ch->channel, geo_ch->center_freq,
4982 is_channel_a_band(ch) ? "5.2" : "2.4",
4983 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4984 "restricted" : "valid",
4985 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004986 }
4987
Tomas Winkler82b9a122008-03-04 18:09:30 -08004988 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4989 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004990 printk(KERN_INFO DRV_NAME
4991 ": Incorrectly detected BG card as ABG. Please send "
4992 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4993 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004994 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004995 }
4996
4997 printk(KERN_INFO DRV_NAME
4998 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004999 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
5000 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07005001
John W. Linvillee0e0a672008-03-25 15:58:40 -04005002 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
5003 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
5004 &priv->bands[IEEE80211_BAND_2GHZ];
5005 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
5006 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
5007 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07005008
Zhu Yib481de92007-09-25 17:54:57 -07005009 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
5010
5011 return 0;
5012}
5013
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005014/*
5015 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
5016 */
5017static void iwl3945_free_geos(struct iwl3945_priv *priv)
5018{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005019 kfree(priv->ieee_channels);
5020 kfree(priv->ieee_rates);
5021 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
5022}
5023
Zhu Yib481de92007-09-25 17:54:57 -07005024/******************************************************************************
5025 *
5026 * uCode download functions
5027 *
5028 ******************************************************************************/
5029
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005030static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005031{
Tomas Winkler98c92212008-01-14 17:46:20 -08005032 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
5033 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
5034 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
5035 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5036 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5037 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005038}
5039
5040/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005041 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005042 * looking at all data.
5043 */
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005044static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005045{
5046 u32 val;
5047 u32 save_len = len;
5048 int rc = 0;
5049 u32 errcnt;
5050
5051 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5052
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005053 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005054 if (rc)
5055 return rc;
5056
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005057 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005058
5059 errcnt = 0;
5060 for (; len > 0; len -= sizeof(u32), image++) {
5061 /* read data comes through single port, auto-incr addr */
5062 /* NOTE: Use the debugless read so we don't flood kernel log
5063 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005064 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005065 if (val != le32_to_cpu(*image)) {
5066 IWL_ERROR("uCode INST section is invalid at "
5067 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5068 save_len - len, val, le32_to_cpu(*image));
5069 rc = -EIO;
5070 errcnt++;
5071 if (errcnt >= 20)
5072 break;
5073 }
5074 }
5075
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005076 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005077
5078 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005079 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005080
5081 return rc;
5082}
5083
5084
5085/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005086 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005087 * using sample data 100 bytes apart. If these sample points are good,
5088 * it's a pretty good bet that everything between them is good, too.
5089 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005090static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005091{
5092 u32 val;
5093 int rc = 0;
5094 u32 errcnt = 0;
5095 u32 i;
5096
5097 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5098
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005099 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005100 if (rc)
5101 return rc;
5102
5103 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5104 /* read data comes through single port, auto-incr addr */
5105 /* NOTE: Use the debugless read so we don't flood kernel log
5106 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005107 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005108 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005109 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005110 if (val != le32_to_cpu(*image)) {
5111#if 0 /* Enable this if you want to see details */
5112 IWL_ERROR("uCode INST section is invalid at "
5113 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5114 i, val, *image);
5115#endif
5116 rc = -EIO;
5117 errcnt++;
5118 if (errcnt >= 3)
5119 break;
5120 }
5121 }
5122
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005123 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005124
5125 return rc;
5126}
5127
5128
5129/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005130 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005131 * and verify its contents
5132 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005133static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005134{
5135 __le32 *image;
5136 u32 len;
5137 int rc = 0;
5138
5139 /* Try bootstrap */
5140 image = (__le32 *)priv->ucode_boot.v_addr;
5141 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005142 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005143 if (rc == 0) {
5144 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5145 return 0;
5146 }
5147
5148 /* Try initialize */
5149 image = (__le32 *)priv->ucode_init.v_addr;
5150 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005151 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005152 if (rc == 0) {
5153 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5154 return 0;
5155 }
5156
5157 /* Try runtime/protocol */
5158 image = (__le32 *)priv->ucode_code.v_addr;
5159 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005160 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005161 if (rc == 0) {
5162 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5163 return 0;
5164 }
5165
5166 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5167
Ben Cahill9fbab512007-11-29 11:09:47 +08005168 /* Since nothing seems to match, show first several data entries in
5169 * instruction SRAM, so maybe visual inspection will give a clue.
5170 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005171 image = (__le32 *)priv->ucode_boot.v_addr;
5172 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005173 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005174
5175 return rc;
5176}
5177
5178
5179/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005180static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005181{
5182 __le32 *image = priv->ucode_boot.v_addr;
5183 u32 len = priv->ucode_boot.len;
5184 u32 reg;
5185 u32 val;
5186
5187 IWL_DEBUG_INFO("Begin verify bsm\n");
5188
5189 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005190 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005191 for (reg = BSM_SRAM_LOWER_BOUND;
5192 reg < BSM_SRAM_LOWER_BOUND + len;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005193 reg += sizeof(u32), image++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005194 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005195 if (val != le32_to_cpu(*image)) {
5196 IWL_ERROR("BSM uCode verification failed at "
5197 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5198 BSM_SRAM_LOWER_BOUND,
5199 reg - BSM_SRAM_LOWER_BOUND, len,
5200 val, le32_to_cpu(*image));
5201 return -EIO;
5202 }
5203 }
5204
5205 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5206
5207 return 0;
5208}
5209
5210/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005211 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005212 *
5213 * BSM operation:
5214 *
5215 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5216 * in special SRAM that does not power down during RFKILL. When powering back
5217 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5218 * the bootstrap program into the on-board processor, and starts it.
5219 *
5220 * The bootstrap program loads (via DMA) instructions and data for a new
5221 * program from host DRAM locations indicated by the host driver in the
5222 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5223 * automatically.
5224 *
5225 * When initializing the NIC, the host driver points the BSM to the
5226 * "initialize" uCode image. This uCode sets up some internal data, then
5227 * notifies host via "initialize alive" that it is complete.
5228 *
5229 * The host then replaces the BSM_DRAM_* pointer values to point to the
5230 * normal runtime uCode instructions and a backup uCode data cache buffer
5231 * (filled initially with starting data values for the on-board processor),
5232 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5233 * which begins normal operation.
5234 *
5235 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5236 * the backup data cache in DRAM before SRAM is powered down.
5237 *
5238 * When powering back up, the BSM loads the bootstrap program. This reloads
5239 * the runtime uCode instructions and the backup data cache into SRAM,
5240 * and re-launches the runtime uCode from where it left off.
5241 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005242static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005243{
5244 __le32 *image = priv->ucode_boot.v_addr;
5245 u32 len = priv->ucode_boot.len;
5246 dma_addr_t pinst;
5247 dma_addr_t pdata;
5248 u32 inst_len;
5249 u32 data_len;
5250 int rc;
5251 int i;
5252 u32 done;
5253 u32 reg_offset;
5254
5255 IWL_DEBUG_INFO("Begin load bsm\n");
5256
5257 /* make sure bootstrap program is no larger than BSM's SRAM size */
5258 if (len > IWL_MAX_BSM_SIZE)
5259 return -EINVAL;
5260
5261 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005262 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005264 * after the "initialize" uCode has run, to point to
5265 * runtime/protocol instructions and backup data cache. */
5266 pinst = priv->ucode_init.p_addr;
5267 pdata = priv->ucode_init_data.p_addr;
5268 inst_len = priv->ucode_init.len;
5269 data_len = priv->ucode_init_data.len;
5270
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005271 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005272 if (rc)
5273 return rc;
5274
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005275 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5276 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5277 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5278 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005279
5280 /* Fill BSM memory with bootstrap instructions */
5281 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5282 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5283 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005284 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005285 le32_to_cpu(*image));
5286
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005287 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005288 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005289 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005290 return rc;
5291 }
5292
5293 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005294 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5295 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005296 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005297 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005298
5299 /* Load bootstrap code into instruction SRAM now,
5300 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005301 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005302 BSM_WR_CTRL_REG_BIT_START);
5303
5304 /* Wait for load of bootstrap uCode to finish */
5305 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005306 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005307 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5308 break;
5309 udelay(10);
5310 }
5311 if (i < 100)
5312 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5313 else {
5314 IWL_ERROR("BSM write did not complete!\n");
5315 return -EIO;
5316 }
5317
5318 /* Enable future boot loads whenever power management unit triggers it
5319 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005320 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005321 BSM_WR_CTRL_REG_BIT_START_EN);
5322
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005323 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005324
5325 return 0;
5326}
5327
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005328static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005329{
5330 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005331 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005332}
5333
5334/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005335 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005336 *
5337 * Copy into buffers for card to fetch via bus-mastering
5338 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005339static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005340{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005341 struct iwl3945_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005342 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005343 const struct firmware *ucode_raw;
5344 /* firmware file name contains uCode/driver compatibility version */
Tomas Winkler4bf775cd2008-03-04 18:09:31 -08005345 const char *name = priv->cfg->fw_name;
Zhu Yib481de92007-09-25 17:54:57 -07005346 u8 *src;
5347 size_t len;
5348 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
5349
5350 /* Ask kernel firmware_class module to get the boot firmware off disk.
5351 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08005352 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
5353 if (ret < 0) {
5354 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5355 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07005356 goto error;
5357 }
5358
5359 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5360 name, ucode_raw->size);
5361
5362 /* Make sure that we got at least our header! */
5363 if (ucode_raw->size < sizeof(*ucode)) {
5364 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005365 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005366 goto err_release;
5367 }
5368
5369 /* Data from ucode file: header followed by uCode images */
5370 ucode = (void *)ucode_raw->data;
5371
5372 ver = le32_to_cpu(ucode->ver);
5373 inst_size = le32_to_cpu(ucode->inst_size);
5374 data_size = le32_to_cpu(ucode->data_size);
5375 init_size = le32_to_cpu(ucode->init_size);
5376 init_data_size = le32_to_cpu(ucode->init_data_size);
5377 boot_size = le32_to_cpu(ucode->boot_size);
5378
5379 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005380 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5381 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5382 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5383 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5384 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005385
5386 /* Verify size of file vs. image size info in file's header */
5387 if (ucode_raw->size < sizeof(*ucode) +
5388 inst_size + data_size + init_size +
5389 init_data_size + boot_size) {
5390
5391 IWL_DEBUG_INFO("uCode file size %d too small\n",
5392 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005393 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005394 goto err_release;
5395 }
5396
5397 /* Verify that uCode images will fit in card's SRAM */
5398 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005399 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5400 inst_size);
5401 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005402 goto err_release;
5403 }
5404
5405 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005406 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5407 data_size);
5408 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005409 goto err_release;
5410 }
5411 if (init_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005412 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5413 init_size);
5414 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005415 goto err_release;
5416 }
5417 if (init_data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005418 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5419 init_data_size);
5420 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005421 goto err_release;
5422 }
5423 if (boot_size > IWL_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005424 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5425 boot_size);
5426 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005427 goto err_release;
5428 }
5429
5430 /* Allocate ucode buffers for card's bus-master loading ... */
5431
5432 /* Runtime instructions and 2 copies of data:
5433 * 1) unmodified from disk
5434 * 2) backup cache for save/restore during power-downs */
5435 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005436 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005437
5438 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005439 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005440
5441 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005442 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005443
5444 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005445 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005446 goto err_pci_alloc;
5447
Tomas Winkler90e759d2007-11-29 11:09:41 +08005448 /* Initialization instructions and data */
5449 if (init_size && init_data_size) {
5450 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005451 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005452
5453 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005454 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005455
5456 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5457 goto err_pci_alloc;
5458 }
5459
5460 /* Bootstrap (instructions only, no data) */
5461 if (boot_size) {
5462 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005463 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005464
5465 if (!priv->ucode_boot.v_addr)
5466 goto err_pci_alloc;
5467 }
5468
Zhu Yib481de92007-09-25 17:54:57 -07005469 /* Copy images into buffers for card's bus-master reads ... */
5470
5471 /* Runtime instructions (first block of data in file) */
5472 src = &ucode->data[0];
5473 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005474 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005475 memcpy(priv->ucode_code.v_addr, src, len);
5476 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5477 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5478
5479 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005480 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005481 src = &ucode->data[inst_size];
5482 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005483 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005484 memcpy(priv->ucode_data.v_addr, src, len);
5485 memcpy(priv->ucode_data_backup.v_addr, src, len);
5486
5487 /* Initialization instructions (3rd block) */
5488 if (init_size) {
5489 src = &ucode->data[inst_size + data_size];
5490 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005491 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5492 len);
Zhu Yib481de92007-09-25 17:54:57 -07005493 memcpy(priv->ucode_init.v_addr, src, len);
5494 }
5495
5496 /* Initialization data (4th block) */
5497 if (init_data_size) {
5498 src = &ucode->data[inst_size + data_size + init_size];
5499 len = priv->ucode_init_data.len;
5500 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5501 (int)len);
5502 memcpy(priv->ucode_init_data.v_addr, src, len);
5503 }
5504
5505 /* Bootstrap instructions (5th block) */
5506 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5507 len = priv->ucode_boot.len;
5508 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5509 (int)len);
5510 memcpy(priv->ucode_boot.v_addr, src, len);
5511
5512 /* We have our copies now, allow OS release its copies */
5513 release_firmware(ucode_raw);
5514 return 0;
5515
5516 err_pci_alloc:
5517 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005518 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005519 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005520
5521 err_release:
5522 release_firmware(ucode_raw);
5523
5524 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005525 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005526}
5527
5528
5529/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005530 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005531 *
5532 * Tell initialization uCode where to find runtime uCode.
5533 *
5534 * BSM registers initially contain pointers to initialization uCode.
5535 * We need to replace them to load runtime uCode inst and data,
5536 * and to save runtime data when powering down.
5537 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005538static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005539{
5540 dma_addr_t pinst;
5541 dma_addr_t pdata;
5542 int rc = 0;
5543 unsigned long flags;
5544
5545 /* bits 31:0 for 3945 */
5546 pinst = priv->ucode_code.p_addr;
5547 pdata = priv->ucode_data_backup.p_addr;
5548
5549 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005550 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005551 if (rc) {
5552 spin_unlock_irqrestore(&priv->lock, flags);
5553 return rc;
5554 }
5555
5556 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005557 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5558 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5559 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005560 priv->ucode_data.len);
5561
5562 /* Inst bytecount must be last to set up, bit 31 signals uCode
5563 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005564 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005565 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5566
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005567 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005568
5569 spin_unlock_irqrestore(&priv->lock, flags);
5570
5571 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5572
5573 return rc;
5574}
5575
5576/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005577 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005578 *
5579 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5580 *
Zhu Yib481de92007-09-25 17:54:57 -07005581 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005582 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005583static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005584{
5585 /* Check alive response for "valid" sign from uCode */
5586 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5587 /* We had an error bringing up the hardware, so take it
5588 * all the way back down so we can try again */
5589 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5590 goto restart;
5591 }
5592
5593 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5594 * This is a paranoid check, because we would not have gotten the
5595 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005596 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005597 /* Runtime instruction load was bad;
5598 * take it all the way back down so we can try again */
5599 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5600 goto restart;
5601 }
5602
5603 /* Send pointers to protocol/runtime uCode image ... init code will
5604 * load and launch runtime uCode, which will send us another "Alive"
5605 * notification. */
5606 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005607 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005608 /* Runtime instruction load won't happen;
5609 * take it all the way back down so we can try again */
5610 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5611 goto restart;
5612 }
5613 return;
5614
5615 restart:
5616 queue_work(priv->workqueue, &priv->restart);
5617}
5618
5619
5620/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005621 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005622 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005623 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005624 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005625static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005626{
5627 int rc = 0;
5628 int thermal_spin = 0;
5629 u32 rfkill;
5630
5631 IWL_DEBUG_INFO("Runtime Alive received.\n");
5632
5633 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5634 /* We had an error bringing up the hardware, so take it
5635 * all the way back down so we can try again */
5636 IWL_DEBUG_INFO("Alive failed.\n");
5637 goto restart;
5638 }
5639
5640 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5641 * This is a paranoid check, because we would not have gotten the
5642 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005643 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005644 /* Runtime instruction load was bad;
5645 * take it all the way back down so we can try again */
5646 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5647 goto restart;
5648 }
5649
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005650 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005651
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005652 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005653 if (rc) {
5654 IWL_WARNING("Can not read rfkill status from adapter\n");
5655 return;
5656 }
5657
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005658 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005659 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005660 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005661
5662 if (rfkill & 0x1) {
5663 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5664 /* if rfkill is not on, then wait for thermal
5665 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005666 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005667 thermal_spin++;
5668 udelay(10);
5669 }
5670
5671 if (thermal_spin)
5672 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5673 thermal_spin * 10);
5674 } else
5675 set_bit(STATUS_RF_KILL_HW, &priv->status);
5676
Ben Cahill9fbab512007-11-29 11:09:47 +08005677 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005678 set_bit(STATUS_ALIVE, &priv->status);
5679
5680 /* Clear out the uCode error bit if it is set */
5681 clear_bit(STATUS_FW_ERROR, &priv->status);
5682
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005683 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005684 return;
5685
Johannes Berg36d68252008-05-15 12:55:26 +02005686 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005687
5688 priv->active_rate = priv->rates_mask;
5689 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5690
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005691 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005693 if (iwl3945_is_associated(priv)) {
5694 struct iwl3945_rxon_cmd *active_rxon =
5695 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005696
5697 memcpy(&priv->staging_rxon, &priv->active_rxon,
5698 sizeof(priv->staging_rxon));
5699 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5700 } else {
5701 /* Initialize our rx_config data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005702 iwl3945_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005703 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5704 }
5705
Ben Cahill9fbab512007-11-29 11:09:47 +08005706 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005707 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005708
5709 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005710 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005711
Zhu Yib481de92007-09-25 17:54:57 -07005712 iwl3945_reg_txpower_periodic(priv);
5713
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005714 iwl3945_led_register(priv);
5715
Zhu Yib481de92007-09-25 17:54:57 -07005716 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005717 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08005718 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005719
5720 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005721 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005722
Mohamed Abbas84363e62008-04-04 16:59:58 -07005723 ieee80211_notify_mac(priv->hw, IEEE80211_NOTIFY_RE_ASSOC);
Zhu Yib481de92007-09-25 17:54:57 -07005724 return;
5725
5726 restart:
5727 queue_work(priv->workqueue, &priv->restart);
5728}
5729
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005730static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005731
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005732static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005733{
5734 unsigned long flags;
5735 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5736 struct ieee80211_conf *conf = NULL;
5737
5738 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5739
5740 conf = ieee80211_get_hw_conf(priv->hw);
5741
5742 if (!exit_pending)
5743 set_bit(STATUS_EXIT_PENDING, &priv->status);
5744
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005745 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005746 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005747
5748 /* Unblock any waiting calls */
5749 wake_up_interruptible_all(&priv->wait_command_queue);
5750
Zhu Yib481de92007-09-25 17:54:57 -07005751 /* Wipe out the EXIT_PENDING status bit if we are not actually
5752 * exiting the module */
5753 if (!exit_pending)
5754 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5755
5756 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005757 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005758
5759 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005760 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005761 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005762 spin_unlock_irqrestore(&priv->lock, flags);
5763 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005764
5765 if (priv->mac80211_registered)
5766 ieee80211_stop_queues(priv->hw);
5767
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005768 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005769 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005770 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005771 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5772 STATUS_RF_KILL_HW |
5773 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5774 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005775 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5776 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005777 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005778 STATUS_IN_SUSPEND |
5779 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5780 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005781 goto exit;
5782 }
5783
5784 /* ...otherwise clear out all the status bits but the RF Kill and
5785 * SUSPEND bits and continue taking the NIC down. */
5786 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5787 STATUS_RF_KILL_HW |
5788 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5789 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005790 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5791 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005792 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5793 STATUS_IN_SUSPEND |
5794 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005795 STATUS_FW_ERROR |
5796 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5797 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005798
5799 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005800 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005801 spin_unlock_irqrestore(&priv->lock, flags);
5802
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005803 iwl3945_hw_txq_ctx_stop(priv);
5804 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005805
5806 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005807 if (!iwl3945_grab_nic_access(priv)) {
5808 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005809 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005810 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005811 }
5812 spin_unlock_irqrestore(&priv->lock, flags);
5813
5814 udelay(5);
5815
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005816 iwl3945_hw_nic_stop_master(priv);
5817 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5818 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005819
5820 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005821 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005822
5823 if (priv->ibss_beacon)
5824 dev_kfree_skb(priv->ibss_beacon);
5825 priv->ibss_beacon = NULL;
5826
5827 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005828 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005829}
5830
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005831static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005832{
5833 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005834 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005835 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005836
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005837 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005838}
5839
5840#define MAX_HW_RESTARTS 5
5841
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005842static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005843{
5844 int rc, i;
5845
5846 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5847 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5848 return -EIO;
5849 }
5850
5851 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5852 IWL_WARNING("Radio disabled by SW RF kill (module "
5853 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005854 return -ENODEV;
5855 }
5856
Reinette Chatree903fbd2008-01-30 22:05:15 -08005857 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
5858 IWL_ERROR("ucode not available for device bringup\n");
5859 return -EIO;
5860 }
5861
Zhu Yie655b9f2008-01-24 02:19:38 -08005862 /* If platform's RF_KILL switch is NOT set to KILL */
5863 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
5864 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5865 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5866 else {
5867 set_bit(STATUS_RF_KILL_HW, &priv->status);
5868 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5869 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5870 return -ENODEV;
5871 }
Zhu Yib481de92007-09-25 17:54:57 -07005872 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005873
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005874 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005875
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005876 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005877 if (rc) {
5878 IWL_ERROR("Unable to int nic\n");
5879 return rc;
5880 }
5881
5882 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005883 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5884 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005885 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5886
5887 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005888 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
5889 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005890
5891 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005892 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5893 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005894
5895 /* Copy original ucode data image from disk into backup cache.
5896 * This will be used to initialize the on-board processor's
5897 * data SRAM for a clean start when the runtime program first loads. */
5898 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08005899 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005900
Zhu Yie655b9f2008-01-24 02:19:38 -08005901 /* We return success when we resume from suspend and rf_kill is on. */
5902 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5903 return 0;
5904
Zhu Yib481de92007-09-25 17:54:57 -07005905 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5906
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005907 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005908
5909 /* load bootstrap state machine,
5910 * load bootstrap program into processor's memory,
5911 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005912 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005913
5914 if (rc) {
5915 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5916 continue;
5917 }
5918
5919 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005920 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005921
Zhu Yib481de92007-09-25 17:54:57 -07005922 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5923
5924 return 0;
5925 }
5926
5927 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005928 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005929 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005930
5931 /* tried to restart and config the device for as long as our
5932 * patience could withstand */
5933 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5934 return -EIO;
5935}
5936
5937
5938/*****************************************************************************
5939 *
5940 * Workqueue callbacks
5941 *
5942 *****************************************************************************/
5943
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005944static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005945{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005946 struct iwl3945_priv *priv =
5947 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005948
5949 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5950 return;
5951
5952 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005953 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005954 mutex_unlock(&priv->mutex);
5955}
5956
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005957static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005958{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005959 struct iwl3945_priv *priv =
5960 container_of(data, struct iwl3945_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005961
5962 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5963 return;
5964
5965 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005966 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005967 mutex_unlock(&priv->mutex);
5968}
5969
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005970static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005971{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005972 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005973
5974 wake_up_interruptible(&priv->wait_command_queue);
5975
5976 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5977 return;
5978
5979 mutex_lock(&priv->mutex);
5980
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005981 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005982 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5983 "HW and/or SW RF Kill no longer active, restarting "
5984 "device\n");
5985 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5986 queue_work(priv->workqueue, &priv->restart);
5987 } else {
5988
5989 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5990 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5991 "disabled by SW switch\n");
5992 else
5993 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
5994 "Kill switch must be turned off for "
5995 "wireless networking to work.\n");
5996 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005997
Zhu Yib481de92007-09-25 17:54:57 -07005998 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005999 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006000}
6001
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006002static void iwl3945_bg_set_monitor(struct work_struct *work)
6003{
6004 struct iwl3945_priv *priv = container_of(work,
6005 struct iwl3945_priv, set_monitor);
6006
6007 IWL_DEBUG(IWL_DL_STATE, "setting monitor mode\n");
6008
6009 mutex_lock(&priv->mutex);
6010
6011 if (!iwl3945_is_ready(priv))
6012 IWL_DEBUG(IWL_DL_STATE, "leave - not ready\n");
6013 else
Johannes Berg05c914f2008-09-11 00:01:58 +02006014 if (iwl3945_set_mode(priv, NL80211_IFTYPE_MONITOR) != 0)
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006015 IWL_ERROR("iwl3945_set_mode() failed\n");
6016
6017 mutex_unlock(&priv->mutex);
6018}
6019
Zhu Yib481de92007-09-25 17:54:57 -07006020#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6021
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006022static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006023{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006024 struct iwl3945_priv *priv =
6025 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07006026
6027 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6028 return;
6029
6030 mutex_lock(&priv->mutex);
6031 if (test_bit(STATUS_SCANNING, &priv->status) ||
6032 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6033 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6034 "Scan completion watchdog resetting adapter (%dms)\n",
6035 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006036
Zhu Yib481de92007-09-25 17:54:57 -07006037 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006038 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006039 }
6040 mutex_unlock(&priv->mutex);
6041}
6042
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006043static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006044{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006045 struct iwl3945_priv *priv =
6046 container_of(data, struct iwl3945_priv, request_scan);
6047 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006048 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006049 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006050 .meta.flags = CMD_SIZE_HUGE,
6051 };
6052 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006053 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006054 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006055 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01006056 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04006057 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07006058
6059 conf = ieee80211_get_hw_conf(priv->hw);
6060
6061 mutex_lock(&priv->mutex);
6062
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006063 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006064 IWL_WARNING("request scan called when driver not ready.\n");
6065 goto done;
6066 }
6067
6068 /* Make sure the scan wasn't cancelled before this queued work
6069 * was given the chance to run... */
6070 if (!test_bit(STATUS_SCANNING, &priv->status))
6071 goto done;
6072
6073 /* This should never be called or scheduled if there is currently
6074 * a scan active in the hardware. */
6075 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6076 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6077 "Ignoring second request.\n");
6078 rc = -EIO;
6079 goto done;
6080 }
6081
6082 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6083 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6084 goto done;
6085 }
6086
6087 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6088 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6089 goto done;
6090 }
6091
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006092 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006093 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6094 goto done;
6095 }
6096
6097 if (!test_bit(STATUS_READY, &priv->status)) {
6098 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6099 goto done;
6100 }
6101
6102 if (!priv->scan_bands) {
6103 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6104 goto done;
6105 }
6106
6107 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006108 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006109 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6110 if (!priv->scan) {
6111 rc = -ENOMEM;
6112 goto done;
6113 }
6114 }
6115 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006116 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006117
6118 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6119 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6120
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006121 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006122 u16 interval = 0;
6123 u32 extra;
6124 u32 suspend_time = 100;
6125 u32 scan_suspend_time = 100;
6126 unsigned long flags;
6127
6128 IWL_DEBUG_INFO("Scanning while associated...\n");
6129
6130 spin_lock_irqsave(&priv->lock, flags);
6131 interval = priv->beacon_int;
6132 spin_unlock_irqrestore(&priv->lock, flags);
6133
6134 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006135 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006136 if (!interval)
6137 interval = suspend_time;
6138 /*
6139 * suspend time format:
6140 * 0-19: beacon interval in usec (time before exec.)
6141 * 20-23: 0
6142 * 24-31: number of beacons (suspend between channels)
6143 */
6144
6145 extra = (suspend_time / interval) << 24;
6146 scan_suspend_time = 0xFF0FFFFF &
6147 (extra | ((suspend_time % interval) * 1024));
6148
6149 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6150 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6151 scan_suspend_time, interval);
6152 }
6153
6154 /* We should add the ability for user to lock to PASSIVE ONLY */
6155 if (priv->one_direct_scan) {
6156 IWL_DEBUG_SCAN
6157 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006158 print_ssid(ssid, priv->direct_ssid,
6159 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006160 scan->direct_scan[0].id = WLAN_EID_SSID;
6161 scan->direct_scan[0].len = priv->direct_ssid_len;
6162 memcpy(scan->direct_scan[0].ssid,
6163 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006164 n_probes++;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006165 } else if (!iwl3945_is_associated(priv) && priv->essid_len) {
Bill Moss786b4552008-04-17 16:03:40 -07006166 IWL_DEBUG_SCAN
6167 ("Kicking off one direct scan for '%s' when not associated\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006168 print_ssid(ssid, priv->essid, priv->essid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006169 scan->direct_scan[0].id = WLAN_EID_SSID;
6170 scan->direct_scan[0].len = priv->essid_len;
6171 memcpy(scan->direct_scan[0].ssid, priv->essid, priv->essid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006172 n_probes++;
6173 } else
Bill Moss786b4552008-04-17 16:03:40 -07006174 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006175
6176 /* We don't build a direct scan probe request; the uCode will do
6177 * that based on the direct_mask added to each channel entry */
6178 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006179 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Cyrill Gorcunov18904f52008-01-26 19:09:36 +03006180 IWL_MAX_SCAN_SIZE - sizeof(*scan), 0));
Zhu Yib481de92007-09-25 17:54:57 -07006181 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6182 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6183 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6184
6185 /* flags + rate selection */
6186
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006187 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006188 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6189 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6190 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006191 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006192 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006193 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6194 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006195 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006196 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006197 IWL_WARNING("Invalid scan band count\n");
6198 goto done;
6199 }
6200
6201 /* select Rx antennas */
6202 scan->flags |= iwl3945_get_antenna_flags(priv);
6203
Johannes Berg05c914f2008-09-11 00:01:58 +02006204 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07006205 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6206
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006207 scan->channel_count =
6208 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
6209 n_probes,
6210 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07006211
6212 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006213 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006214 cmd.data = scan;
6215 scan->len = cpu_to_le16(cmd.len);
6216
6217 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006218 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006219 if (rc)
6220 goto done;
6221
6222 queue_delayed_work(priv->workqueue, &priv->scan_check,
6223 IWL_SCAN_CHECK_WATCHDOG);
6224
6225 mutex_unlock(&priv->mutex);
6226 return;
6227
6228 done:
Ian Schram01ebd062007-10-25 17:15:22 +08006229 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006230 queue_work(priv->workqueue, &priv->scan_completed);
6231 mutex_unlock(&priv->mutex);
6232}
6233
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006234static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006235{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006236 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006237
6238 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6239 return;
6240
6241 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006242 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006243 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006244 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006245}
6246
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006247static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006248{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006249 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006250
6251 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6252 return;
6253
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006254 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006255 queue_work(priv->workqueue, &priv->up);
6256}
6257
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006258static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006259{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006260 struct iwl3945_priv *priv =
6261 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006262
6263 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6264 return;
6265
6266 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006267 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006268 mutex_unlock(&priv->mutex);
6269}
6270
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006271#define IWL_DELAY_NEXT_SCAN (HZ*2)
6272
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006273static void iwl3945_post_associate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006274{
Zhu Yib481de92007-09-25 17:54:57 -07006275 int rc = 0;
6276 struct ieee80211_conf *conf = NULL;
6277
Johannes Berg05c914f2008-09-11 00:01:58 +02006278 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006279 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07006280 return;
6281 }
6282
6283
Johannes Berge1749612008-10-27 15:59:26 -07006284 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
6285 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07006286
6287 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6288 return;
6289
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006290 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006291 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006292
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006293 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006294
Zhu Yib481de92007-09-25 17:54:57 -07006295 conf = ieee80211_get_hw_conf(priv->hw);
6296
6297 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006298 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006299
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006300 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6301 iwl3945_setup_rxon_timing(priv);
6302 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006303 sizeof(priv->rxon_timing), &priv->rxon_timing);
6304 if (rc)
6305 IWL_WARNING("REPLY_RXON_TIMING failed - "
6306 "Attempting to continue.\n");
6307
6308 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6309
6310 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6311
6312 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6313 priv->assoc_id, priv->beacon_int);
6314
6315 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6316 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6317 else
6318 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6319
6320 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6321 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6322 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6323 else
6324 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6325
Johannes Berg05c914f2008-09-11 00:01:58 +02006326 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006327 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6328
6329 }
6330
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006331 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006332
6333 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02006334 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006335 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006336 break;
6337
Johannes Berg05c914f2008-09-11 00:01:58 +02006338 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07006339
6340 /* clear out the station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006341 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006342
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006343 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
6344 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006345 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006346 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006347 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6348 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006349 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6350 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006351
6352 break;
6353
6354 default:
6355 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006356 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006357 break;
6358 }
6359
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006360 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006361
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006362 /* we have just associated, don't start scan too early */
6363 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006364}
6365
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006366static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006367{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006368 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006369
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006370 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006371 return;
6372
6373 mutex_lock(&priv->mutex);
6374
6375 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006376 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006377
6378 mutex_unlock(&priv->mutex);
6379}
6380
Johannes Berge8975582008-10-09 12:18:51 +02006381static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006382
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006383static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006384{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006385 struct iwl3945_priv *priv =
6386 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006387
6388 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6389
6390 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6391 return;
6392
Zhu Yia0646472007-12-20 14:10:01 +08006393 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006394 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006395
Zhu Yib481de92007-09-25 17:54:57 -07006396 ieee80211_scan_completed(priv->hw);
6397
6398 /* Since setting the TXPOWER may have been deferred while
6399 * performing the scan, fire one off */
6400 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006401 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006402 mutex_unlock(&priv->mutex);
6403}
6404
6405/*****************************************************************************
6406 *
6407 * mac80211 entry point functions
6408 *
6409 *****************************************************************************/
6410
Zhu Yi5a669262008-01-14 17:46:18 -08006411#define UCODE_READY_TIMEOUT (2 * HZ)
6412
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006413static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006414{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006415 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08006416 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006417
6418 IWL_DEBUG_MAC80211("enter\n");
6419
Zhu Yi5a669262008-01-14 17:46:18 -08006420 if (pci_enable_device(priv->pci_dev)) {
6421 IWL_ERROR("Fail to pci_enable_device\n");
6422 return -ENODEV;
6423 }
6424 pci_restore_state(priv->pci_dev);
6425 pci_enable_msi(priv->pci_dev);
6426
6427 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6428 DRV_NAME, priv);
6429 if (ret) {
6430 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6431 goto out_disable_msi;
6432 }
6433
Zhu Yib481de92007-09-25 17:54:57 -07006434 /* we should be verifying the device is ready to be opened */
6435 mutex_lock(&priv->mutex);
6436
Zhu Yi5a669262008-01-14 17:46:18 -08006437 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6438 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6439 * ucode filename and max sizes are card-specific. */
6440
6441 if (!priv->ucode_code.len) {
6442 ret = iwl3945_read_ucode(priv);
6443 if (ret) {
6444 IWL_ERROR("Could not read microcode: %d\n", ret);
6445 mutex_unlock(&priv->mutex);
6446 goto out_release_irq;
6447 }
6448 }
6449
Zhu Yie655b9f2008-01-24 02:19:38 -08006450 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08006451
Zhu Yib481de92007-09-25 17:54:57 -07006452 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08006453
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006454 iwl3945_rfkill_set_hw_state(priv);
6455
Zhu Yie655b9f2008-01-24 02:19:38 -08006456 if (ret)
6457 goto out_release_irq;
6458
6459 IWL_DEBUG_INFO("Start UP work.\n");
6460
6461 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6462 return 0;
6463
Zhu Yi5a669262008-01-14 17:46:18 -08006464 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6465 * mac80211 will not be run successfully. */
6466 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6467 test_bit(STATUS_READY, &priv->status),
6468 UCODE_READY_TIMEOUT);
6469 if (!ret) {
6470 if (!test_bit(STATUS_READY, &priv->status)) {
6471 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6472 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6473 ret = -ETIMEDOUT;
6474 goto out_release_irq;
6475 }
6476 }
6477
Zhu Yie655b9f2008-01-24 02:19:38 -08006478 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006479 IWL_DEBUG_MAC80211("leave\n");
6480 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006481
6482out_release_irq:
6483 free_irq(priv->pci_dev->irq, priv);
6484out_disable_msi:
6485 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006486 pci_disable_device(priv->pci_dev);
6487 priv->is_open = 0;
6488 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006489 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006490}
6491
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006492static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006493{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006494 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006495
6496 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006497
Zhu Yie655b9f2008-01-24 02:19:38 -08006498 if (!priv->is_open) {
6499 IWL_DEBUG_MAC80211("leave - skip\n");
6500 return;
6501 }
6502
Zhu Yib481de92007-09-25 17:54:57 -07006503 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006504
6505 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006506 /* stop mac, cancel any scan request and clear
6507 * RXON_FILTER_ASSOC_MSK BIT
6508 */
Zhu Yi5a669262008-01-14 17:46:18 -08006509 mutex_lock(&priv->mutex);
6510 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006511 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006512 }
6513
Zhu Yi5a669262008-01-14 17:46:18 -08006514 iwl3945_down(priv);
6515
6516 flush_workqueue(priv->workqueue);
6517 free_irq(priv->pci_dev->irq, priv);
6518 pci_disable_msi(priv->pci_dev);
6519 pci_save_state(priv->pci_dev);
6520 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006521
Zhu Yib481de92007-09-25 17:54:57 -07006522 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006523}
6524
Johannes Berge039fa42008-05-15 12:55:29 +02006525static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006526{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006527 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006528
6529 IWL_DEBUG_MAC80211("enter\n");
6530
Zhu Yib481de92007-09-25 17:54:57 -07006531 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006532 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006533
Johannes Berge039fa42008-05-15 12:55:29 +02006534 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006535 dev_kfree_skb_any(skb);
6536
6537 IWL_DEBUG_MAC80211("leave\n");
6538 return 0;
6539}
6540
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006541static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006542 struct ieee80211_if_init_conf *conf)
6543{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006544 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006545 unsigned long flags;
6546
Johannes Berg32bfd352007-12-19 01:31:26 +01006547 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006548
Johannes Berg32bfd352007-12-19 01:31:26 +01006549 if (priv->vif) {
6550 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006551 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006552 }
6553
6554 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006555 priv->vif = conf->vif;
Zhu Yib481de92007-09-25 17:54:57 -07006556
6557 spin_unlock_irqrestore(&priv->lock, flags);
6558
6559 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006560
6561 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006562 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006563 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6564 }
6565
Zhu Yi5a669262008-01-14 17:46:18 -08006566 if (iwl3945_is_ready(priv))
6567 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006568
Zhu Yib481de92007-09-25 17:54:57 -07006569 mutex_unlock(&priv->mutex);
6570
Zhu Yi5a669262008-01-14 17:46:18 -08006571 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006572 return 0;
6573}
6574
6575/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006576 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006577 *
6578 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6579 * be set inappropriately and the driver currently sets the hardware up to
6580 * use it whenever needed.
6581 */
Johannes Berge8975582008-10-09 12:18:51 +02006582static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006583{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006584 struct iwl3945_priv *priv = hw->priv;
6585 const struct iwl3945_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006586 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006587 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006588 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006589
6590 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006591 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006592
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006593 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006594 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006595 ret = -EIO;
6596 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006597 }
6598
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006599 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006600 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006601 IWL_DEBUG_MAC80211("leave - scanning\n");
6602 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006603 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006604 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006605 }
6606
6607 spin_lock_irqsave(&priv->lock, flags);
6608
Johannes Berg8318d782008-01-24 19:38:38 +01006609 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6610 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006611 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006612 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006613 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006614 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6615 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006616 ret = -EINVAL;
6617 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006618 }
6619
Johannes Berg8318d782008-01-24 19:38:38 +01006620 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006621
Johannes Berg8318d782008-01-24 19:38:38 +01006622 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006623
6624 /* The list of supported rates and rate mask can be different
6625 * for each phymode; since the phymode may have changed, reset
6626 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006627 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006628
6629 spin_unlock_irqrestore(&priv->lock, flags);
6630
6631#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6632 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006633 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006634 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006635 }
6636#endif
6637
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006638 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006639
6640 if (!conf->radio_enabled) {
6641 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006642 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006643 }
6644
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006645 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006646 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006647 ret = -EIO;
6648 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006649 }
6650
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006651 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006652
6653 if (memcmp(&priv->active_rxon,
6654 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006655 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006656 else
6657 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6658
6659 IWL_DEBUG_MAC80211("leave\n");
6660
Zhu Yi76bb77e2007-11-22 10:53:22 +08006661out:
Zhu Yia0646472007-12-20 14:10:01 +08006662 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006663 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006664 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006665}
6666
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006667static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006668{
6669 int rc = 0;
6670
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006671 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006672 return;
6673
6674 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006675 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006676
6677 /* RXON - unassoc (to set timing command) */
6678 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006679 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006680
6681 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006682 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6683 iwl3945_setup_rxon_timing(priv);
6684 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006685 sizeof(priv->rxon_timing), &priv->rxon_timing);
6686 if (rc)
6687 IWL_WARNING("REPLY_RXON_TIMING failed - "
6688 "Attempting to continue.\n");
6689
6690 /* FIXME: what should be the assoc_id for AP? */
6691 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6692 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6693 priv->staging_rxon.flags |=
6694 RXON_FLG_SHORT_PREAMBLE_MSK;
6695 else
6696 priv->staging_rxon.flags &=
6697 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6698
6699 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6700 if (priv->assoc_capability &
6701 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6702 priv->staging_rxon.flags |=
6703 RXON_FLG_SHORT_SLOT_MSK;
6704 else
6705 priv->staging_rxon.flags &=
6706 ~RXON_FLG_SHORT_SLOT_MSK;
6707
Johannes Berg05c914f2008-09-11 00:01:58 +02006708 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006709 priv->staging_rxon.flags &=
6710 ~RXON_FLG_SHORT_SLOT_MSK;
6711 }
6712 /* restore RXON assoc */
6713 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006714 iwl3945_commit_rxon(priv);
6715 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006716 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006717 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006718
6719 /* FIXME - we need to add code here to detect a totally new
6720 * configuration, reset the AP, unassoc, rxon timing, assoc,
6721 * clear sta table, add BCAST sta... */
6722}
6723
Johannes Berg9d139c82008-07-09 14:40:37 +02006724/* temporary */
6725static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb);
6726
Johannes Berg32bfd352007-12-19 01:31:26 +01006727static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6728 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006729 struct ieee80211_if_conf *conf)
6730{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006731 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006732 unsigned long flags;
6733 int rc;
6734
6735 if (conf == NULL)
6736 return -EIO;
6737
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006738 if (priv->vif != vif) {
6739 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006740 return 0;
6741 }
6742
Johannes Berg9d139c82008-07-09 14:40:37 +02006743 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006744 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006745 conf->changed & IEEE80211_IFCC_BEACON) {
6746 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6747 if (!beacon)
6748 return -ENOMEM;
6749 rc = iwl3945_mac_beacon_update(hw, beacon);
6750 if (rc)
6751 return rc;
6752 }
6753
Johannes Berg4150c572007-09-17 01:29:23 -04006754 /* XXX: this MUST use conf->mac_addr */
6755
Johannes Berg05c914f2008-09-11 00:01:58 +02006756 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006757 (!conf->ssid_len)) {
Zhu Yib481de92007-09-25 17:54:57 -07006758 IWL_DEBUG_MAC80211
6759 ("Leaving in AP mode because HostAPD is not ready.\n");
6760 return 0;
6761 }
6762
Zhu Yi5a669262008-01-14 17:46:18 -08006763 if (!iwl3945_is_alive(priv))
6764 return -EAGAIN;
6765
Zhu Yib481de92007-09-25 17:54:57 -07006766 mutex_lock(&priv->mutex);
6767
Zhu Yib481de92007-09-25 17:54:57 -07006768 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006769 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006770
Johannes Berg4150c572007-09-17 01:29:23 -04006771/*
6772 * very dubious code was here; the probe filtering flag is never set:
6773 *
Zhu Yib481de92007-09-25 17:54:57 -07006774 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6775 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006776 */
Zhu Yib481de92007-09-25 17:54:57 -07006777
Johannes Berg05c914f2008-09-11 00:01:58 +02006778 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006779 if (!conf->bssid) {
6780 conf->bssid = priv->mac_addr;
6781 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006782 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6783 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006784 }
6785 if (priv->ibss_beacon)
6786 dev_kfree_skb(priv->ibss_beacon);
6787
Johannes Berg9d139c82008-07-09 14:40:37 +02006788 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006789 }
6790
Mohamed Abbasfde35712007-11-29 11:10:15 +08006791 if (iwl3945_is_rfkill(priv))
6792 goto done;
6793
Zhu Yib481de92007-09-25 17:54:57 -07006794 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6795 !is_multicast_ether_addr(conf->bssid)) {
6796 /* If there is currently a HW scan going on in the background
6797 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006798 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006799 IWL_WARNING("Aborted scan still in progress "
6800 "after 100ms\n");
6801 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6802 mutex_unlock(&priv->mutex);
6803 return -EAGAIN;
6804 }
6805 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6806
6807 /* TODO: Audit driver for usage of these members and see
6808 * if mac80211 deprecates them (priv->bssid looks like it
6809 * shouldn't be there, but I haven't scanned the IBSS code
6810 * to verify) - jpk */
6811 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6812
Johannes Berg05c914f2008-09-11 00:01:58 +02006813 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006814 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006815 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006816 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006817 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006818 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08006819 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006820 }
6821
6822 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006823 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006824 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006825 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006826 }
6827
Mohamed Abbasfde35712007-11-29 11:10:15 +08006828 done:
Zhu Yib481de92007-09-25 17:54:57 -07006829 spin_lock_irqsave(&priv->lock, flags);
6830 if (!conf->ssid_len)
6831 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
6832 else
6833 memcpy(priv->essid, conf->ssid, conf->ssid_len);
6834
6835 priv->essid_len = conf->ssid_len;
6836 spin_unlock_irqrestore(&priv->lock, flags);
6837
6838 IWL_DEBUG_MAC80211("leave\n");
6839 mutex_unlock(&priv->mutex);
6840
6841 return 0;
6842}
6843
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006844static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006845 unsigned int changed_flags,
6846 unsigned int *total_flags,
6847 int mc_count, struct dev_addr_list *mc_list)
6848{
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006849 struct iwl3945_priv *priv = hw->priv;
Rick Farrington25b3f572008-06-30 17:23:28 +08006850
6851 if (changed_flags & (*total_flags) & FIF_OTHER_BSS) {
6852 IWL_DEBUG_MAC80211("Enter: type %d (0x%x, 0x%x)\n",
Johannes Berg05c914f2008-09-11 00:01:58 +02006853 NL80211_IFTYPE_MONITOR,
Rick Farrington25b3f572008-06-30 17:23:28 +08006854 changed_flags, *total_flags);
6855 /* queue work 'cuz mac80211 is holding a lock which
6856 * prevents us from issuing (synchronous) f/w cmds */
6857 queue_work(priv->workqueue, &priv->set_monitor);
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006858 }
Rick Farrington25b3f572008-06-30 17:23:28 +08006859 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI |
6860 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006861}
6862
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006863static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006864 struct ieee80211_if_init_conf *conf)
6865{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006866 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006867
6868 IWL_DEBUG_MAC80211("enter\n");
6869
6870 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006871
Mohamed Abbasfde35712007-11-29 11:10:15 +08006872 if (iwl3945_is_ready_rf(priv)) {
6873 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006874 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6875 iwl3945_commit_rxon(priv);
6876 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006877 if (priv->vif == conf->vif) {
6878 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006879 memset(priv->bssid, 0, ETH_ALEN);
6880 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
6881 priv->essid_len = 0;
6882 }
6883 mutex_unlock(&priv->mutex);
6884
6885 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006886}
6887
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006888#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6889
6890static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6891 struct ieee80211_vif *vif,
6892 struct ieee80211_bss_conf *bss_conf,
6893 u32 changes)
6894{
6895 struct iwl3945_priv *priv = hw->priv;
6896
6897 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6898
6899 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6900 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6901 bss_conf->use_short_preamble);
6902 if (bss_conf->use_short_preamble)
6903 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6904 else
6905 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6906 }
6907
6908 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6909 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6910 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6911 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6912 else
6913 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6914 }
6915
6916 if (changes & BSS_CHANGED_ASSOC) {
6917 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6918 /* This should never happen as this function should
6919 * never be called from interrupt context. */
6920 if (WARN_ON_ONCE(in_interrupt()))
6921 return;
6922 if (bss_conf->assoc) {
6923 priv->assoc_id = bss_conf->aid;
6924 priv->beacon_int = bss_conf->beacon_int;
6925 priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF;
6926 priv->timestamp1 = (bss_conf->timestamp >> 32) &
6927 0xFFFFFFFF;
6928 priv->assoc_capability = bss_conf->assoc_capability;
6929 priv->next_scan_jiffies = jiffies +
6930 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6931 mutex_lock(&priv->mutex);
6932 iwl3945_post_associate(priv);
6933 mutex_unlock(&priv->mutex);
6934 } else {
6935 priv->assoc_id = 0;
6936 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6937 }
6938 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6939 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6940 iwl3945_send_rxon_assoc(priv);
6941 }
6942
6943}
6944
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006945static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006946{
6947 int rc = 0;
6948 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006949 struct iwl3945_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006950 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006951
6952 IWL_DEBUG_MAC80211("enter\n");
6953
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006954 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006955 spin_lock_irqsave(&priv->lock, flags);
6956
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006957 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006958 rc = -EIO;
6959 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6960 goto out_unlock;
6961 }
6962
Johannes Berg05c914f2008-09-11 00:01:58 +02006963 if (priv->iw_mode == NL80211_IFTYPE_AP) { /* APs don't scan */
Zhu Yib481de92007-09-25 17:54:57 -07006964 rc = -EIO;
6965 IWL_ERROR("ERROR: APs don't scan\n");
6966 goto out_unlock;
6967 }
6968
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006969 /* we don't schedule scan within next_scan_jiffies period */
6970 if (priv->next_scan_jiffies &&
6971 time_after(priv->next_scan_jiffies, jiffies)) {
6972 rc = -EAGAIN;
6973 goto out_unlock;
6974 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006975 /* if we just finished scan ask for delay for a broadcast scan */
6976 if ((len == 0) && priv->last_scan_jiffies &&
6977 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6978 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006979 rc = -EAGAIN;
6980 goto out_unlock;
6981 }
6982 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006983 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006984 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006985
6986 priv->one_direct_scan = 1;
6987 priv->direct_ssid_len = (u8)
6988 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6989 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006990 } else
6991 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006992
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006993 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006994
6995 IWL_DEBUG_MAC80211("leave\n");
6996
6997out_unlock:
6998 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006999 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007000
7001 return rc;
7002}
7003
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007004static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007005 const u8 *local_addr, const u8 *addr,
7006 struct ieee80211_key_conf *key)
7007{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007008 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007009 int rc = 0;
7010 u8 sta_id;
7011
7012 IWL_DEBUG_MAC80211("enter\n");
7013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007014 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007015 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7016 return -EOPNOTSUPP;
7017 }
7018
7019 if (is_zero_ether_addr(addr))
7020 /* only support pairwise keys */
7021 return -EOPNOTSUPP;
7022
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007023 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07007024 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07007025 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
7026 addr);
Zhu Yib481de92007-09-25 17:54:57 -07007027 return -EINVAL;
7028 }
7029
7030 mutex_lock(&priv->mutex);
7031
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007032 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007033
Zhu Yib481de92007-09-25 17:54:57 -07007034 switch (cmd) {
7035 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007036 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007037 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007038 iwl3945_set_rxon_hwcrypto(priv, 1);
7039 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007040 key->hw_key_idx = sta_id;
7041 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7042 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7043 }
7044 break;
7045 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007046 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007047 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007048 iwl3945_set_rxon_hwcrypto(priv, 0);
7049 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007050 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7051 }
7052 break;
7053 default:
7054 rc = -EINVAL;
7055 }
7056
7057 IWL_DEBUG_MAC80211("leave\n");
7058 mutex_unlock(&priv->mutex);
7059
7060 return rc;
7061}
7062
Johannes Berge100bb62008-04-30 18:51:21 +02007063static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07007064 const struct ieee80211_tx_queue_params *params)
7065{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007066 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007067 unsigned long flags;
7068 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007069
7070 IWL_DEBUG_MAC80211("enter\n");
7071
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007072 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007073 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7074 return -EIO;
7075 }
7076
7077 if (queue >= AC_NUM) {
7078 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7079 return 0;
7080 }
7081
Zhu Yib481de92007-09-25 17:54:57 -07007082 if (!priv->qos_data.qos_enable) {
7083 priv->qos_data.qos_active = 0;
7084 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
7085 return 0;
7086 }
7087 q = AC_NUM - 1 - queue;
7088
7089 spin_lock_irqsave(&priv->lock, flags);
7090
7091 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7092 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7093 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7094 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01007095 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007096
7097 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7098 priv->qos_data.qos_active = 1;
7099
7100 spin_unlock_irqrestore(&priv->lock, flags);
7101
7102 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02007103 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007104 iwl3945_activate_qos(priv, 1);
7105 else if (priv->assoc_id && iwl3945_is_associated(priv))
7106 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007107
7108 mutex_unlock(&priv->mutex);
7109
Zhu Yib481de92007-09-25 17:54:57 -07007110 IWL_DEBUG_MAC80211("leave\n");
7111 return 0;
7112}
7113
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007114static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007115 struct ieee80211_tx_queue_stats *stats)
7116{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007117 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007118 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007119 struct iwl3945_tx_queue *txq;
7120 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007121 unsigned long flags;
7122
7123 IWL_DEBUG_MAC80211("enter\n");
7124
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007125 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007126 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7127 return -EIO;
7128 }
7129
7130 spin_lock_irqsave(&priv->lock, flags);
7131
7132 for (i = 0; i < AC_NUM; i++) {
7133 txq = &priv->txq[i];
7134 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007135 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007136
Johannes Berg57ffc582008-04-29 17:18:59 +02007137 stats[i].len = q->n_window - avail;
7138 stats[i].limit = q->n_window - q->high_mark;
7139 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07007140
7141 }
7142 spin_unlock_irqrestore(&priv->lock, flags);
7143
7144 IWL_DEBUG_MAC80211("leave\n");
7145
7146 return 0;
7147}
7148
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007149static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007150 struct ieee80211_low_level_stats *stats)
7151{
7152 IWL_DEBUG_MAC80211("enter\n");
7153 IWL_DEBUG_MAC80211("leave\n");
7154
7155 return 0;
7156}
7157
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007158static u64 iwl3945_mac_get_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007159{
7160 IWL_DEBUG_MAC80211("enter\n");
7161 IWL_DEBUG_MAC80211("leave\n");
7162
7163 return 0;
7164}
7165
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007166static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007167{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007168 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007169 unsigned long flags;
7170
7171 mutex_lock(&priv->mutex);
7172 IWL_DEBUG_MAC80211("enter\n");
7173
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007174 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007175
Zhu Yib481de92007-09-25 17:54:57 -07007176 spin_lock_irqsave(&priv->lock, flags);
7177 priv->assoc_id = 0;
7178 priv->assoc_capability = 0;
7179 priv->call_post_assoc_from_beacon = 0;
7180
7181 /* new association get rid of ibss beacon skb */
7182 if (priv->ibss_beacon)
7183 dev_kfree_skb(priv->ibss_beacon);
7184
7185 priv->ibss_beacon = NULL;
7186
7187 priv->beacon_int = priv->hw->conf.beacon_int;
7188 priv->timestamp1 = 0;
7189 priv->timestamp0 = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02007190 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07007191 priv->beacon_int = 0;
7192
7193 spin_unlock_irqrestore(&priv->lock, flags);
7194
Mohamed Abbasfde35712007-11-29 11:10:15 +08007195 if (!iwl3945_is_ready_rf(priv)) {
7196 IWL_DEBUG_MAC80211("leave - not ready\n");
7197 mutex_unlock(&priv->mutex);
7198 return;
7199 }
7200
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007201 /* we are restarting association process
7202 * clear RXON_FILTER_ASSOC_MSK bit
7203 */
Johannes Berg05c914f2008-09-11 00:01:58 +02007204 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007205 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007206 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007207 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007208 }
7209
Zhu Yib481de92007-09-25 17:54:57 -07007210 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02007211 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007212
Zhu Yib481de92007-09-25 17:54:57 -07007213 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7214 mutex_unlock(&priv->mutex);
7215 return;
7216 }
7217
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007218 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007219
7220 mutex_unlock(&priv->mutex);
7221
7222 IWL_DEBUG_MAC80211("leave\n");
7223
7224}
7225
Johannes Berge039fa42008-05-15 12:55:29 +02007226static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07007227{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007228 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007229 unsigned long flags;
7230
7231 mutex_lock(&priv->mutex);
7232 IWL_DEBUG_MAC80211("enter\n");
7233
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007234 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007235 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7236 mutex_unlock(&priv->mutex);
7237 return -EIO;
7238 }
7239
Johannes Berg05c914f2008-09-11 00:01:58 +02007240 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07007241 IWL_DEBUG_MAC80211("leave - not IBSS\n");
7242 mutex_unlock(&priv->mutex);
7243 return -EIO;
7244 }
7245
7246 spin_lock_irqsave(&priv->lock, flags);
7247
7248 if (priv->ibss_beacon)
7249 dev_kfree_skb(priv->ibss_beacon);
7250
7251 priv->ibss_beacon = skb;
7252
7253 priv->assoc_id = 0;
7254
7255 IWL_DEBUG_MAC80211("leave\n");
7256 spin_unlock_irqrestore(&priv->lock, flags);
7257
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007258 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007259
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08007260 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007261
7262 mutex_unlock(&priv->mutex);
7263
7264 return 0;
7265}
7266
7267/*****************************************************************************
7268 *
7269 * sysfs attributes
7270 *
7271 *****************************************************************************/
7272
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007273#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007274
7275/*
7276 * The following adds a new attribute to the sysfs representation
7277 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7278 * used for controlling the debug level.
7279 *
7280 * See the level definitions in iwl for details.
7281 */
7282
7283static ssize_t show_debug_level(struct device_driver *d, char *buf)
7284{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007285 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007286}
7287static ssize_t store_debug_level(struct device_driver *d,
7288 const char *buf, size_t count)
7289{
7290 char *p = (char *)buf;
7291 u32 val;
7292
7293 val = simple_strtoul(p, &p, 0);
7294 if (p == buf)
7295 printk(KERN_INFO DRV_NAME
7296 ": %s is not in hex or decimal form.\n", buf);
7297 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007298 iwl3945_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007299
7300 return strnlen(buf, count);
7301}
7302
7303static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7304 show_debug_level, store_debug_level);
7305
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007306#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007307
Zhu Yib481de92007-09-25 17:54:57 -07007308static ssize_t show_temperature(struct device *d,
7309 struct device_attribute *attr, char *buf)
7310{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007311 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007312
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007313 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007314 return -EAGAIN;
7315
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007316 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007317}
7318
7319static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7320
Zhu Yib481de92007-09-25 17:54:57 -07007321static ssize_t show_tx_power(struct device *d,
7322 struct device_attribute *attr, char *buf)
7323{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007324 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007325 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7326}
7327
7328static ssize_t store_tx_power(struct device *d,
7329 struct device_attribute *attr,
7330 const char *buf, size_t count)
7331{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007332 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007333 char *p = (char *)buf;
7334 u32 val;
7335
7336 val = simple_strtoul(p, &p, 10);
7337 if (p == buf)
7338 printk(KERN_INFO DRV_NAME
7339 ": %s is not in decimal form.\n", buf);
7340 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007341 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007342
7343 return count;
7344}
7345
7346static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7347
7348static ssize_t show_flags(struct device *d,
7349 struct device_attribute *attr, char *buf)
7350{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007351 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007352
7353 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7354}
7355
7356static ssize_t store_flags(struct device *d,
7357 struct device_attribute *attr,
7358 const char *buf, size_t count)
7359{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007360 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007361 u32 flags = simple_strtoul(buf, NULL, 0);
7362
7363 mutex_lock(&priv->mutex);
7364 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7365 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007366 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007367 IWL_WARNING("Could not cancel scan.\n");
7368 else {
7369 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7370 flags);
7371 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007372 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007373 }
7374 }
7375 mutex_unlock(&priv->mutex);
7376
7377 return count;
7378}
7379
7380static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7381
7382static ssize_t show_filter_flags(struct device *d,
7383 struct device_attribute *attr, char *buf)
7384{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007385 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007386
7387 return sprintf(buf, "0x%04X\n",
7388 le32_to_cpu(priv->active_rxon.filter_flags));
7389}
7390
7391static ssize_t store_filter_flags(struct device *d,
7392 struct device_attribute *attr,
7393 const char *buf, size_t count)
7394{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007395 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007396 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7397
7398 mutex_lock(&priv->mutex);
7399 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7400 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007401 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007402 IWL_WARNING("Could not cancel scan.\n");
7403 else {
7404 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7405 "0x%04X\n", filter_flags);
7406 priv->staging_rxon.filter_flags =
7407 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007408 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007409 }
7410 }
7411 mutex_unlock(&priv->mutex);
7412
7413 return count;
7414}
7415
7416static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7417 store_filter_flags);
7418
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007419#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007420
7421static ssize_t show_measurement(struct device *d,
7422 struct device_attribute *attr, char *buf)
7423{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007424 struct iwl3945_priv *priv = dev_get_drvdata(d);
7425 struct iwl3945_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007426 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007427 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007428 unsigned long flags;
7429
7430 spin_lock_irqsave(&priv->lock, flags);
7431 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7432 spin_unlock_irqrestore(&priv->lock, flags);
7433 return 0;
7434 }
7435 memcpy(&measure_report, &priv->measure_report, size);
7436 priv->measurement_status = 0;
7437 spin_unlock_irqrestore(&priv->lock, flags);
7438
7439 while (size && (PAGE_SIZE - len)) {
7440 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7441 PAGE_SIZE - len, 1);
7442 len = strlen(buf);
7443 if (PAGE_SIZE - len)
7444 buf[len++] = '\n';
7445
7446 ofs += 16;
7447 size -= min(size, 16U);
7448 }
7449
7450 return len;
7451}
7452
7453static ssize_t store_measurement(struct device *d,
7454 struct device_attribute *attr,
7455 const char *buf, size_t count)
7456{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007457 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007458 struct ieee80211_measurement_params params = {
7459 .channel = le16_to_cpu(priv->active_rxon.channel),
7460 .start_time = cpu_to_le64(priv->last_tsf),
7461 .duration = cpu_to_le16(1),
7462 };
7463 u8 type = IWL_MEASURE_BASIC;
7464 u8 buffer[32];
7465 u8 channel;
7466
7467 if (count) {
7468 char *p = buffer;
7469 strncpy(buffer, buf, min(sizeof(buffer), count));
7470 channel = simple_strtoul(p, NULL, 0);
7471 if (channel)
7472 params.channel = channel;
7473
7474 p = buffer;
7475 while (*p && *p != ' ')
7476 p++;
7477 if (*p)
7478 type = simple_strtoul(p + 1, NULL, 0);
7479 }
7480
7481 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7482 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007483 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007484
7485 return count;
7486}
7487
7488static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7489 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007490#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007491
Zhu Yib481de92007-09-25 17:54:57 -07007492static ssize_t store_retry_rate(struct device *d,
7493 struct device_attribute *attr,
7494 const char *buf, size_t count)
7495{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007496 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007497
7498 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7499 if (priv->retry_rate <= 0)
7500 priv->retry_rate = 1;
7501
7502 return count;
7503}
7504
7505static ssize_t show_retry_rate(struct device *d,
7506 struct device_attribute *attr, char *buf)
7507{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007508 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007509 return sprintf(buf, "%d", priv->retry_rate);
7510}
7511
7512static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7513 store_retry_rate);
7514
7515static ssize_t store_power_level(struct device *d,
7516 struct device_attribute *attr,
7517 const char *buf, size_t count)
7518{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007519 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007520 int rc;
7521 int mode;
7522
7523 mode = simple_strtoul(buf, NULL, 0);
7524 mutex_lock(&priv->mutex);
7525
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007526 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007527 rc = -EAGAIN;
7528 goto out;
7529 }
7530
7531 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7532 mode = IWL_POWER_AC;
7533 else
7534 mode |= IWL_POWER_ENABLED;
7535
7536 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007537 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007538 if (rc) {
7539 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7540 goto out;
7541 }
7542 priv->power_mode = mode;
7543 }
7544
7545 rc = count;
7546
7547 out:
7548 mutex_unlock(&priv->mutex);
7549 return rc;
7550}
7551
7552#define MAX_WX_STRING 80
7553
7554/* Values are in microsecond */
7555static const s32 timeout_duration[] = {
7556 350000,
7557 250000,
7558 75000,
7559 37000,
7560 25000,
7561};
7562static const s32 period_duration[] = {
7563 400000,
7564 700000,
7565 1000000,
7566 1000000,
7567 1000000
7568};
7569
7570static ssize_t show_power_level(struct device *d,
7571 struct device_attribute *attr, char *buf)
7572{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007573 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007574 int level = IWL_POWER_LEVEL(priv->power_mode);
7575 char *p = buf;
7576
7577 p += sprintf(p, "%d ", level);
7578 switch (level) {
7579 case IWL_POWER_MODE_CAM:
7580 case IWL_POWER_AC:
7581 p += sprintf(p, "(AC)");
7582 break;
7583 case IWL_POWER_BATTERY:
7584 p += sprintf(p, "(BATTERY)");
7585 break;
7586 default:
7587 p += sprintf(p,
7588 "(Timeout %dms, Period %dms)",
7589 timeout_duration[level - 1] / 1000,
7590 period_duration[level - 1] / 1000);
7591 }
7592
7593 if (!(priv->power_mode & IWL_POWER_ENABLED))
7594 p += sprintf(p, " OFF\n");
7595 else
7596 p += sprintf(p, " \n");
7597
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007598 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007599
7600}
7601
7602static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7603 store_power_level);
7604
7605static ssize_t show_channels(struct device *d,
7606 struct device_attribute *attr, char *buf)
7607{
Johannes Berg8318d782008-01-24 19:38:38 +01007608 /* all this shit doesn't belong into sysfs anyway */
7609 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007610}
7611
7612static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7613
7614static ssize_t show_statistics(struct device *d,
7615 struct device_attribute *attr, char *buf)
7616{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007617 struct iwl3945_priv *priv = dev_get_drvdata(d);
7618 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007619 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007620 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07007621 int rc = 0;
7622
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007623 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007624 return -EAGAIN;
7625
7626 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007627 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007628 mutex_unlock(&priv->mutex);
7629
7630 if (rc) {
7631 len = sprintf(buf,
7632 "Error sending statistics request: 0x%08X\n", rc);
7633 return len;
7634 }
7635
7636 while (size && (PAGE_SIZE - len)) {
7637 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7638 PAGE_SIZE - len, 1);
7639 len = strlen(buf);
7640 if (PAGE_SIZE - len)
7641 buf[len++] = '\n';
7642
7643 ofs += 16;
7644 size -= min(size, 16U);
7645 }
7646
7647 return len;
7648}
7649
7650static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7651
7652static ssize_t show_antenna(struct device *d,
7653 struct device_attribute *attr, char *buf)
7654{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007655 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007656
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007657 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007658 return -EAGAIN;
7659
7660 return sprintf(buf, "%d\n", priv->antenna);
7661}
7662
7663static ssize_t store_antenna(struct device *d,
7664 struct device_attribute *attr,
7665 const char *buf, size_t count)
7666{
7667 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007668 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007669
7670 if (count == 0)
7671 return 0;
7672
7673 if (sscanf(buf, "%1i", &ant) != 1) {
7674 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7675 return count;
7676 }
7677
7678 if ((ant >= 0) && (ant <= 2)) {
7679 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007680 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007681 } else
7682 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7683
7684
7685 return count;
7686}
7687
7688static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7689
7690static ssize_t show_status(struct device *d,
7691 struct device_attribute *attr, char *buf)
7692{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007693 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
7694 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007695 return -EAGAIN;
7696 return sprintf(buf, "0x%08x\n", (int)priv->status);
7697}
7698
7699static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7700
7701static ssize_t dump_error_log(struct device *d,
7702 struct device_attribute *attr,
7703 const char *buf, size_t count)
7704{
7705 char *p = (char *)buf;
7706
7707 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007708 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007709
7710 return strnlen(buf, count);
7711}
7712
7713static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7714
7715static ssize_t dump_event_log(struct device *d,
7716 struct device_attribute *attr,
7717 const char *buf, size_t count)
7718{
7719 char *p = (char *)buf;
7720
7721 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007722 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007723
7724 return strnlen(buf, count);
7725}
7726
7727static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7728
7729/*****************************************************************************
7730 *
7731 * driver setup and teardown
7732 *
7733 *****************************************************************************/
7734
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007735static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007736{
7737 priv->workqueue = create_workqueue(DRV_NAME);
7738
7739 init_waitqueue_head(&priv->wait_command_queue);
7740
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007741 INIT_WORK(&priv->up, iwl3945_bg_up);
7742 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7743 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7744 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7745 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7746 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7747 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7748 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08007749 INIT_WORK(&priv->set_monitor, iwl3945_bg_set_monitor);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007750 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7751 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7752 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007753
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007754 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007755
7756 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007757 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007758}
7759
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007760static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007761{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007762 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007763
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007764 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007765 cancel_delayed_work(&priv->scan_check);
7766 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007767 cancel_work_sync(&priv->beacon_update);
7768}
7769
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007770static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007771 &dev_attr_antenna.attr,
7772 &dev_attr_channels.attr,
7773 &dev_attr_dump_errors.attr,
7774 &dev_attr_dump_events.attr,
7775 &dev_attr_flags.attr,
7776 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007777#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007778 &dev_attr_measurement.attr,
7779#endif
7780 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007781 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007782 &dev_attr_statistics.attr,
7783 &dev_attr_status.attr,
7784 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007785 &dev_attr_tx_power.attr,
7786
7787 NULL
7788};
7789
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007790static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007791 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007792 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007793};
7794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007795static struct ieee80211_ops iwl3945_hw_ops = {
7796 .tx = iwl3945_mac_tx,
7797 .start = iwl3945_mac_start,
7798 .stop = iwl3945_mac_stop,
7799 .add_interface = iwl3945_mac_add_interface,
7800 .remove_interface = iwl3945_mac_remove_interface,
7801 .config = iwl3945_mac_config,
7802 .config_interface = iwl3945_mac_config_interface,
7803 .configure_filter = iwl3945_configure_filter,
7804 .set_key = iwl3945_mac_set_key,
7805 .get_stats = iwl3945_mac_get_stats,
7806 .get_tx_stats = iwl3945_mac_get_tx_stats,
7807 .conf_tx = iwl3945_mac_conf_tx,
7808 .get_tsf = iwl3945_mac_get_tsf,
7809 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007810 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007811 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007812};
7813
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007814static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007815{
7816 int err = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007817 struct iwl3945_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007818 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007819 struct iwl_3945_cfg *cfg = (struct iwl_3945_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007820 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007821
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007822 /* Disabling hardware scan means that mac80211 will perform scans
7823 * "the hard way", rather than using device's scan. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007824 if (iwl3945_param_disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07007825 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007826 iwl3945_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07007827 }
7828
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007829 if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) ||
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007830 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
Zhu Yib481de92007-09-25 17:54:57 -07007831 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007832 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Zhu Yib481de92007-09-25 17:54:57 -07007833 err = -EINVAL;
7834 goto out;
7835 }
7836
7837 /* mac80211 allocates memory for this device instance, including
7838 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007839 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007840 if (hw == NULL) {
7841 IWL_ERROR("Can not allocate network device\n");
7842 err = -ENOMEM;
7843 goto out;
7844 }
7845 SET_IEEE80211_DEV(hw, &pdev->dev);
7846
Johannes Bergf51359a2007-10-28 14:53:36 +01007847 hw->rate_control_algorithm = "iwl-3945-rs";
Johannes Berg4b7679a2008-09-18 18:14:18 +02007848 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
Johannes Bergf51359a2007-10-28 14:53:36 +01007849
Zhu Yib481de92007-09-25 17:54:57 -07007850 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
7851 priv = hw->priv;
7852 priv->hw = hw;
7853
7854 priv->pci_dev = pdev;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007855 priv->cfg = cfg;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007856
7857 /* Select antenna (may be helpful if only one antenna is connected) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007858 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007859#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007860 iwl3945_debug_level = iwl3945_param_debug;
Zhu Yib481de92007-09-25 17:54:57 -07007861 atomic_set(&priv->restrict_refcnt, 0);
7862#endif
7863 priv->retry_rate = 1;
7864
7865 priv->ibss_beacon = NULL;
7866
Bruno Randolf566bfe52008-05-08 19:15:40 +02007867 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007868 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007869 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007870
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007871 hw->wiphy->interface_modes =
7872 BIT(NL80211_IFTYPE_AP) |
7873 BIT(NL80211_IFTYPE_STATION) |
7874 BIT(NL80211_IFTYPE_ADHOC);
7875
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007876 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007877 hw->queues = 4;
7878
7879 spin_lock_init(&priv->lock);
7880 spin_lock_init(&priv->power_data.lock);
7881 spin_lock_init(&priv->sta_lock);
7882 spin_lock_init(&priv->hcmd_lock);
7883
Zhu Yib481de92007-09-25 17:54:57 -07007884 INIT_LIST_HEAD(&priv->free_frames);
7885
7886 mutex_init(&priv->mutex);
7887 if (pci_enable_device(pdev)) {
7888 err = -ENODEV;
7889 goto out_ieee80211_free_hw;
7890 }
7891
7892 pci_set_master(pdev);
7893
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007894 /* Clear the driver's (not device's) station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007895 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007896
7897 priv->data_retry_limit = -1;
7898 priv->ieee_channels = NULL;
7899 priv->ieee_rates = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01007900 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07007901
7902 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7903 if (!err)
7904 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7905 if (err) {
7906 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
7907 goto out_pci_disable_device;
7908 }
7909
7910 pci_set_drvdata(pdev, priv);
7911 err = pci_request_regions(pdev, DRV_NAME);
7912 if (err)
7913 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007914
Zhu Yib481de92007-09-25 17:54:57 -07007915 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7916 * PCI Tx retries from interfering with C3 CPU state */
7917 pci_write_config_byte(pdev, 0x41, 0x00);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007918
Zhu Yib481de92007-09-25 17:54:57 -07007919 priv->hw_base = pci_iomap(pdev, 0, 0);
7920 if (!priv->hw_base) {
7921 err = -ENODEV;
7922 goto out_pci_release_regions;
7923 }
7924
7925 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7926 (unsigned long long) pci_resource_len(pdev, 0));
7927 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7928
7929 /* Initialize module parameter values here */
7930
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007931 /* Disable radio (SW RF KILL) via parameter when loading driver */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007932 if (iwl3945_param_disable) {
Zhu Yib481de92007-09-25 17:54:57 -07007933 set_bit(STATUS_RF_KILL_SW, &priv->status);
7934 IWL_DEBUG_INFO("Radio disabled.\n");
7935 }
7936
Johannes Berg05c914f2008-09-11 00:01:58 +02007937 priv->iw_mode = NL80211_IFTYPE_STATION;
Zhu Yib481de92007-09-25 17:54:57 -07007938
Zhu Yib481de92007-09-25 17:54:57 -07007939 printk(KERN_INFO DRV_NAME
Tomas Winkler82b9a122008-03-04 18:09:30 -08007940 ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name);
Zhu Yib481de92007-09-25 17:54:57 -07007941
7942 /* Device-specific setup */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007943 if (iwl3945_hw_set_hw_setting(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007944 IWL_ERROR("failed to set hw settings\n");
Zhu Yib481de92007-09-25 17:54:57 -07007945 goto out_iounmap;
7946 }
7947
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007948 if (iwl3945_param_qos_enable)
Zhu Yib481de92007-09-25 17:54:57 -07007949 priv->qos_data.qos_enable = 1;
7950
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007951 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007952
7953 priv->qos_data.qos_active = 0;
7954 priv->qos_data.qos_cap.val = 0;
Zhu Yib481de92007-09-25 17:54:57 -07007955
Johannes Berg8318d782008-01-24 19:38:38 +01007956 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007957 iwl3945_setup_deferred_work(priv);
7958 iwl3945_setup_rx_handlers(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007959
7960 priv->rates_mask = IWL_RATES_MASK;
7961 /* If power management is turned on, default to AC mode */
7962 priv->power_mode = IWL_POWER_AC;
7963 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7964
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007965 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007966 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007967 spin_unlock_irqrestore(&priv->lock, flags);
Jes Sorensen49df2b32007-10-26 16:10:39 +02007968
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007969 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07007970 if (err) {
7971 IWL_ERROR("failed to create sysfs device attributes\n");
Zhu Yib481de92007-09-25 17:54:57 -07007972 goto out_release_irq;
7973 }
7974
Zhu Yi5a669262008-01-14 17:46:18 -08007975 /* nic init */
7976 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007977 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Zhu Yi5a669262008-01-14 17:46:18 -08007978
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007979 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
7980 err = iwl3945_poll_bit(priv, CSR_GP_CNTRL,
7981 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
7982 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
7983 if (err < 0) {
7984 IWL_DEBUG_INFO("Failed to init the card\n");
Zhu Yi5a669262008-01-14 17:46:18 -08007985 goto out_remove_sysfs;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007986 }
Zhu Yi5a669262008-01-14 17:46:18 -08007987 /* Read the EEPROM */
7988 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007989 if (err) {
Zhu Yi5a669262008-01-14 17:46:18 -08007990 IWL_ERROR("Unable to init EEPROM\n");
7991 goto out_remove_sysfs;
7992 }
7993 /* MAC Address location in EEPROM same for 3945/4965 */
7994 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007995 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08007996 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7997
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007998 err = iwl3945_init_channel_map(priv);
7999 if (err) {
8000 IWL_ERROR("initializing regulatory failed: %d\n", err);
8001 goto out_remove_sysfs;
8002 }
8003
8004 err = iwl3945_init_geos(priv);
8005 if (err) {
8006 IWL_ERROR("initializing geos failed: %d\n", err);
8007 goto out_free_channel_map;
8008 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008009
Zhu Yi5a669262008-01-14 17:46:18 -08008010 err = ieee80211_register_hw(priv->hw);
8011 if (err) {
8012 IWL_ERROR("Failed to register network device (error %d)\n", err);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008013 goto out_free_geos;
Zhu Yib481de92007-09-25 17:54:57 -07008014 }
8015
Zhu Yi5a669262008-01-14 17:46:18 -08008016 priv->hw->conf.beacon_int = 100;
8017 priv->mac80211_registered = 1;
8018 pci_save_state(pdev);
8019 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008020
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008021 err = iwl3945_rfkill_init(priv);
8022 if (err)
8023 IWL_ERROR("Unable to initialize RFKILL system. "
8024 "Ignoring error: %d\n", err);
8025
Zhu Yib481de92007-09-25 17:54:57 -07008026 return 0;
8027
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008028 out_free_geos:
8029 iwl3945_free_geos(priv);
8030 out_free_channel_map:
8031 iwl3945_free_channel_map(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08008032 out_remove_sysfs:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008033 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008034
8035 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07008036 destroy_workqueue(priv->workqueue);
8037 priv->workqueue = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008038 iwl3945_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008039
8040 out_iounmap:
8041 pci_iounmap(pdev, priv->hw_base);
8042 out_pci_release_regions:
8043 pci_release_regions(pdev);
8044 out_pci_disable_device:
8045 pci_disable_device(pdev);
8046 pci_set_drvdata(pdev, NULL);
8047 out_ieee80211_free_hw:
8048 ieee80211_free_hw(priv->hw);
8049 out:
8050 return err;
8051}
8052
Reinette Chatrec83dbf62008-03-21 13:53:41 -07008053static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008054{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008055 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008056 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07008057
8058 if (!priv)
8059 return;
8060
8061 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8062
Zhu Yib481de92007-09-25 17:54:57 -07008063 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008064
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008065 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008066
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008067 /* make sure we flush any pending irq or
8068 * tasklet for the driver
8069 */
8070 spin_lock_irqsave(&priv->lock, flags);
8071 iwl3945_disable_interrupts(priv);
8072 spin_unlock_irqrestore(&priv->lock, flags);
8073
8074 iwl_synchronize_irq(priv);
8075
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008076 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008077
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008078 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008079 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008080
8081 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008082 iwl3945_rx_queue_free(priv, &priv->rxq);
8083 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008084
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008085 iwl3945_unset_hw_setting(priv);
8086 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008087
Tomas Winkler3ac7f142008-07-21 02:40:14 +03008088 if (priv->mac80211_registered)
Zhu Yib481de92007-09-25 17:54:57 -07008089 ieee80211_unregister_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008090
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08008091 /*netif_stop_queue(dev); */
8092 flush_workqueue(priv->workqueue);
8093
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008094 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008095 * priv->workqueue... so we can't take down the workqueue
8096 * until now... */
8097 destroy_workqueue(priv->workqueue);
8098 priv->workqueue = NULL;
8099
Zhu Yib481de92007-09-25 17:54:57 -07008100 pci_iounmap(pdev, priv->hw_base);
8101 pci_release_regions(pdev);
8102 pci_disable_device(pdev);
8103 pci_set_drvdata(pdev, NULL);
8104
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008105 iwl3945_free_channel_map(priv);
8106 iwl3945_free_geos(priv);
Emmanuel Grumbach261415f2008-05-29 16:35:25 +08008107 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07008108 if (priv->ibss_beacon)
8109 dev_kfree_skb(priv->ibss_beacon);
8110
8111 ieee80211_free_hw(priv->hw);
8112}
8113
8114#ifdef CONFIG_PM
8115
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008116static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008117{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008118 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008119
Zhu Yie655b9f2008-01-24 02:19:38 -08008120 if (priv->is_open) {
8121 set_bit(STATUS_IN_SUSPEND, &priv->status);
8122 iwl3945_mac_stop(priv->hw);
8123 priv->is_open = 1;
8124 }
Zhu Yib481de92007-09-25 17:54:57 -07008125
Zhu Yib481de92007-09-25 17:54:57 -07008126 pci_set_power_state(pdev, PCI_D3hot);
8127
Zhu Yib481de92007-09-25 17:54:57 -07008128 return 0;
8129}
8130
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008131static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008132{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008133 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008134
Zhu Yib481de92007-09-25 17:54:57 -07008135 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008136
Zhu Yie655b9f2008-01-24 02:19:38 -08008137 if (priv->is_open)
8138 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008139
Zhu Yie655b9f2008-01-24 02:19:38 -08008140 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008141 return 0;
8142}
8143
8144#endif /* CONFIG_PM */
8145
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008146/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008147#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008148/* software rf-kill from user */
8149static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
8150{
8151 struct iwl3945_priv *priv = data;
8152 int err = 0;
8153
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008154 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008155 return 0;
8156
8157 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
8158 return 0;
8159
8160 IWL_DEBUG_RF_KILL("we recieved soft RFKILL set to state %d\n", state);
8161 mutex_lock(&priv->mutex);
8162
8163 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008164 case RFKILL_STATE_UNBLOCKED:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008165 if (iwl3945_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008166 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008167 goto out_unlock;
8168 }
8169 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008170 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008171 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008172 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008173 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008174 default:
8175 IWL_WARNING("we recieved unexpected RFKILL state %d\n", state);
8176 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008177 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008178out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008179 mutex_unlock(&priv->mutex);
8180
8181 return err;
8182}
8183
8184int iwl3945_rfkill_init(struct iwl3945_priv *priv)
8185{
8186 struct device *device = wiphy_dev(priv->hw->wiphy);
8187 int ret = 0;
8188
8189 BUG_ON(device == NULL);
8190
8191 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008192 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
8193 if (!priv->rfkill) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008194 IWL_ERROR("Unable to allocate rfkill device.\n");
8195 ret = -ENOMEM;
8196 goto error;
8197 }
8198
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008199 priv->rfkill->name = priv->cfg->name;
8200 priv->rfkill->data = priv;
8201 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
8202 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
8203 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008204
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008205 priv->rfkill->dev.class->suspend = NULL;
8206 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008207
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008208 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008209 if (ret) {
8210 IWL_ERROR("Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008211 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008212 }
8213
8214 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8215 return ret;
8216
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008217freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008218 if (priv->rfkill != NULL)
8219 rfkill_free(priv->rfkill);
8220 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008221
8222error:
8223 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8224 return ret;
8225}
8226
8227void iwl3945_rfkill_unregister(struct iwl3945_priv *priv)
8228{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008229 if (priv->rfkill)
8230 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008231
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008232 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008233}
8234
8235/* set rf-kill to the right state. */
8236void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv)
8237{
8238
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008239 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008240 return;
8241
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008242 if (iwl3945_is_rfkill_hw(priv)) {
8243 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
8244 return;
8245 }
8246
8247 if (!iwl3945_is_rfkill_sw(priv))
8248 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008249 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008250 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008251}
8252#endif
8253
Zhu Yib481de92007-09-25 17:54:57 -07008254/*****************************************************************************
8255 *
8256 * driver and module entry point
8257 *
8258 *****************************************************************************/
8259
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008260static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008261 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008262 .id_table = iwl3945_hw_card_ids,
8263 .probe = iwl3945_pci_probe,
8264 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008265#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008266 .suspend = iwl3945_pci_suspend,
8267 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008268#endif
8269};
8270
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008271static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008272{
8273
8274 int ret;
8275 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8276 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008277
8278 ret = iwl3945_rate_control_register();
8279 if (ret) {
8280 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
8281 return ret;
8282 }
8283
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008284 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008285 if (ret) {
8286 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008287 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07008288 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008289#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008290 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008291 if (ret) {
8292 IWL_ERROR("Unable to create driver sysfs file\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008293 goto error_debug;
Zhu Yib481de92007-09-25 17:54:57 -07008294 }
8295#endif
8296
8297 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008298
8299#ifdef CONFIG_IWL3945_DEBUG
8300error_debug:
8301 pci_unregister_driver(&iwl3945_driver);
8302#endif
8303error_register:
8304 iwl3945_rate_control_unregister();
8305 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07008306}
8307
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008308static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008309{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008310#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008311 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008312#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008313 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008314 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07008315}
8316
Zhu Yi25cb6ca2008-09-11 11:45:22 +08008317MODULE_FIRMWARE("iwlwifi-3945" IWL3945_UCODE_API ".ucode");
8318
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008319module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008320MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008321module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008322MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008323module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008324MODULE_PARM_DESC(hwcrypto,
8325 "using hardware crypto engine (default 0 [software])\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008326module_param_named(debug, iwl3945_param_debug, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008327MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008328module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008329MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8330
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008331module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008332MODULE_PARM_DESC(queues_num, "number of hw queues.");
8333
8334/* QoS */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008335module_param_named(qos_enable, iwl3945_param_qos_enable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008336MODULE_PARM_DESC(qos_enable, "enable all QoS functionality");
8337
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008338module_exit(iwl3945_exit);
8339module_init(iwl3945_init);