blob: 03ff87fbe9248977e9f661ab9ae3c178b92e40b1 [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
Abhijeet Kolekarc3056062008-11-12 13:14:08 -0800522#define IWL_CMD(x) case x: return #x
Zhu Yib481de92007-09-25 17:54:57 -0700523
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
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001421static u8 iwl3945_rate_get_lowest_plcp(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001422{
1423 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001424 int rate_mask;
1425
1426 /* Set rate mask*/
1427 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001428 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001429 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001430 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001431
1432 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001433 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001434 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001435 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001436 }
1437
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001438 /* No valid rate was found. Assign the lowest one */
1439 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1440 return IWL_RATE_1M_PLCP;
1441 else
1442 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001443}
1444
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001445static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001446{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001447 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001448 unsigned int frame_size;
1449 int rc;
1450 u8 rate;
1451
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001452 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001453
1454 if (!frame) {
1455 IWL_ERROR("Could not obtain free frame buffer for beacon "
1456 "command.\n");
1457 return -ENOMEM;
1458 }
1459
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001460 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001461
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001462 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001463
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001464 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001465 &frame->u.cmd[0]);
1466
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001467 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001468
1469 return rc;
1470}
1471
1472/******************************************************************************
1473 *
1474 * EEPROM related functions
1475 *
1476 ******************************************************************************/
1477
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001478static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001479{
1480 memcpy(mac, priv->eeprom.mac_address, 6);
1481}
1482
Reinette Chatre74a3a252008-01-23 10:15:19 -08001483/*
1484 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1485 * embedded controller) as EEPROM reader; each read is a series of pulses
1486 * to/from the EEPROM chip, not a single event, so even reads could conflict
1487 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1488 * simply claims ownership, which should be safe when this function is called
1489 * (i.e. before loading uCode!).
1490 */
1491static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1492{
1493 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1494 return 0;
1495}
1496
Zhu Yib481de92007-09-25 17:54:57 -07001497/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001498 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001499 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001500 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001501 *
1502 * NOTE: This routine uses the non-debug IO access functions.
1503 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001504int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001505{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001506 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001507 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001508 u32 r;
1509 int sz = sizeof(priv->eeprom);
1510 int rc;
1511 int i;
1512 u16 addr;
1513
1514 /* The EEPROM structure has several padding buffers within it
1515 * and when adding new EEPROM maps is subject to programmer errors
1516 * which may be very difficult to identify without explicitly
1517 * checking the resulting size of the eeprom map. */
1518 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1519
1520 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001521 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001522 return -ENOENT;
1523 }
1524
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001525 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001526 rc = iwl3945_eeprom_acquire_semaphore(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001527 if (rc < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001528 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001529 return -ENOENT;
1530 }
1531
1532 /* eeprom is an array of 16bit values */
1533 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001534 _iwl3945_write32(priv, CSR_EEPROM_REG, addr << 1);
1535 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu Yib481de92007-09-25 17:54:57 -07001536
1537 for (i = 0; i < IWL_EEPROM_ACCESS_TIMEOUT;
1538 i += IWL_EEPROM_ACCESS_DELAY) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001539 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Zhu Yib481de92007-09-25 17:54:57 -07001540 if (r & CSR_EEPROM_REG_READ_VALID_MSK)
1541 break;
1542 udelay(IWL_EEPROM_ACCESS_DELAY);
1543 }
1544
1545 if (!(r & CSR_EEPROM_REG_READ_VALID_MSK)) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001546 IWL_ERROR("Time out reading EEPROM[%d]\n", addr);
Zhu Yib481de92007-09-25 17:54:57 -07001547 return -ETIMEDOUT;
1548 }
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001549 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001550 }
1551
1552 return 0;
1553}
1554
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001555static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001556{
1557 if (priv->hw_setting.shared_virt)
1558 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001559 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001560 priv->hw_setting.shared_virt,
1561 priv->hw_setting.shared_phys);
1562}
1563
1564/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001565 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001566 *
1567 * return : set the bit for each supported rate insert in ie
1568 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001569static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001570 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001571{
1572 u16 ret_rates = 0, bit;
1573 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001574 u8 *cnt = ie;
1575 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001576
1577 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1578 if (bit & supported_rate) {
1579 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001580 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001581 ((bit & basic_rate) ? 0x80 : 0x00);
1582 (*cnt)++;
1583 (*left)--;
1584 if ((*left <= 0) ||
1585 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001586 break;
1587 }
1588 }
1589
1590 return ret_rates;
1591}
1592
1593/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001594 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001595 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001596static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001597 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001598 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001599{
1600 int len = 0;
1601 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001602 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001603
1604 /* Make sure there is enough space for the probe request,
1605 * two mandatory IEs and the data */
1606 left -= 24;
1607 if (left < 0)
1608 return 0;
1609 len += 24;
1610
1611 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001612 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001613 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001614 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001615 frame->seq_ctrl = 0;
1616
1617 /* fill in our indirect SSID IE */
1618 /* ...next IE... */
1619
1620 left -= 2;
1621 if (left < 0)
1622 return 0;
1623 len += 2;
1624 pos = &(frame->u.probe_req.variable[0]);
1625 *pos++ = WLAN_EID_SSID;
1626 *pos++ = 0;
1627
Zhu Yib481de92007-09-25 17:54:57 -07001628 /* fill in supported rate */
1629 /* ...next IE... */
1630 left -= 2;
1631 if (left < 0)
1632 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001633
Zhu Yib481de92007-09-25 17:54:57 -07001634 /* ... fill it in... */
1635 *pos++ = WLAN_EID_SUPP_RATES;
1636 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001637
1638 priv->active_rate = priv->rates_mask;
1639 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001640 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1641
Tomas Winklerc7c46672007-10-18 02:04:15 +02001642 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001643 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001644 priv->active_rate_basic, &left);
1645 active_rates &= ~ret_rates;
1646
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001647 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001648 priv->active_rate_basic, &left);
1649 active_rates &= ~ret_rates;
1650
Zhu Yib481de92007-09-25 17:54:57 -07001651 len += 2 + *pos;
1652 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001653 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001654 goto fill_end;
1655
1656 /* fill in supported extended rate */
1657 /* ...next IE... */
1658 left -= 2;
1659 if (left < 0)
1660 return 0;
1661 /* ... fill it in... */
1662 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1663 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001664 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001665 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001666 if (*pos > 0)
1667 len += 2 + *pos;
1668
1669 fill_end:
1670 return (u16)len;
1671}
1672
1673/*
1674 * QoS support
1675*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001676static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
1677 struct iwl3945_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001678{
1679
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001680 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1681 sizeof(struct iwl3945_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001682}
1683
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001684static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001685{
1686 u16 cw_min = 15;
1687 u16 cw_max = 1023;
1688 u8 aifs = 2;
1689 u8 is_legacy = 0;
1690 unsigned long flags;
1691 int i;
1692
1693 spin_lock_irqsave(&priv->lock, flags);
1694 priv->qos_data.qos_active = 0;
1695
Johannes Berg05c914f2008-09-11 00:01:58 +02001696 if (priv->iw_mode == NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07001697 if (priv->qos_data.qos_enable)
1698 priv->qos_data.qos_active = 1;
1699 if (!(priv->active_rate & 0xfff0)) {
1700 cw_min = 31;
1701 is_legacy = 1;
1702 }
Johannes Berg05c914f2008-09-11 00:01:58 +02001703 } else if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07001704 if (priv->qos_data.qos_enable)
1705 priv->qos_data.qos_active = 1;
1706 } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) {
1707 cw_min = 31;
1708 is_legacy = 1;
1709 }
1710
1711 if (priv->qos_data.qos_active)
1712 aifs = 3;
1713
1714 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1715 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1716 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1717 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1718 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1719
1720 if (priv->qos_data.qos_active) {
1721 i = 1;
1722 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1723 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1724 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1725 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1726 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1727
1728 i = 2;
1729 priv->qos_data.def_qos_parm.ac[i].cw_min =
1730 cpu_to_le16((cw_min + 1) / 2 - 1);
1731 priv->qos_data.def_qos_parm.ac[i].cw_max =
1732 cpu_to_le16(cw_max);
1733 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1734 if (is_legacy)
1735 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1736 cpu_to_le16(6016);
1737 else
1738 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1739 cpu_to_le16(3008);
1740 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1741
1742 i = 3;
1743 priv->qos_data.def_qos_parm.ac[i].cw_min =
1744 cpu_to_le16((cw_min + 1) / 4 - 1);
1745 priv->qos_data.def_qos_parm.ac[i].cw_max =
1746 cpu_to_le16((cw_max + 1) / 2 - 1);
1747 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1748 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1749 if (is_legacy)
1750 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1751 cpu_to_le16(3264);
1752 else
1753 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1754 cpu_to_le16(1504);
1755 } else {
1756 for (i = 1; i < 4; i++) {
1757 priv->qos_data.def_qos_parm.ac[i].cw_min =
1758 cpu_to_le16(cw_min);
1759 priv->qos_data.def_qos_parm.ac[i].cw_max =
1760 cpu_to_le16(cw_max);
1761 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1762 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1763 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1764 }
1765 }
1766 IWL_DEBUG_QOS("set QoS to default \n");
1767
1768 spin_unlock_irqrestore(&priv->lock, flags);
1769}
1770
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001771static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001772{
1773 unsigned long flags;
1774
Zhu Yib481de92007-09-25 17:54:57 -07001775 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1776 return;
1777
1778 if (!priv->qos_data.qos_enable)
1779 return;
1780
1781 spin_lock_irqsave(&priv->lock, flags);
1782 priv->qos_data.def_qos_parm.qos_flags = 0;
1783
1784 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1785 !priv->qos_data.qos_cap.q_AP.txop_request)
1786 priv->qos_data.def_qos_parm.qos_flags |=
1787 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1788
1789 if (priv->qos_data.qos_active)
1790 priv->qos_data.def_qos_parm.qos_flags |=
1791 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1792
1793 spin_unlock_irqrestore(&priv->lock, flags);
1794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001795 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001796 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001797 priv->qos_data.qos_active);
1798
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001799 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001800 &(priv->qos_data.def_qos_parm));
1801 }
1802}
1803
Zhu Yib481de92007-09-25 17:54:57 -07001804/*
1805 * Power management (not Tx power!) functions
1806 */
1807#define MSEC_TO_USEC 1024
1808
1809#define NOSLP __constant_cpu_to_le32(0)
1810#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
1811#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1812#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1813 __constant_cpu_to_le32(X1), \
1814 __constant_cpu_to_le32(X2), \
1815 __constant_cpu_to_le32(X3), \
1816 __constant_cpu_to_le32(X4)}
1817
1818
1819/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001820/* for TIM 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001821static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001822 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1823 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1824 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1825 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1826 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1827 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1828};
1829
Tomas Winklera96a27f2008-10-23 23:48:56 -07001830/* for TIM > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001831static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001832 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1833 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1834 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1835 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1836 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1837 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1838 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1839 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1840 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1841 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1842};
1843
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001844int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001845{
1846 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001847 struct iwl3945_power_mgr *pow_data;
1848 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001849 u16 pci_pm;
1850
1851 IWL_DEBUG_POWER("Initialize power \n");
1852
1853 pow_data = &(priv->power_data);
1854
1855 memset(pow_data, 0, sizeof(*pow_data));
1856
1857 pow_data->active_index = IWL_POWER_RANGE_0;
1858 pow_data->dtim_val = 0xffff;
1859
1860 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1861 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1862
1863 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1864 if (rc != 0)
1865 return 0;
1866 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001867 struct iwl3945_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001868
1869 IWL_DEBUG_POWER("adjust power command flags\n");
1870
1871 for (i = 0; i < IWL_POWER_AC; i++) {
1872 cmd = &pow_data->pwr_range_0[i].cmd;
1873
1874 if (pci_pm & 0x1)
1875 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1876 else
1877 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1878 }
1879 }
1880 return rc;
1881}
1882
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001883static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
1884 struct iwl3945_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001885{
1886 int rc = 0, i;
1887 u8 skip;
1888 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001889 struct iwl3945_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001890 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001891 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001892
1893 if (mode > IWL_POWER_INDEX_5) {
1894 IWL_DEBUG_POWER("Error invalid power mode \n");
1895 return -1;
1896 }
1897 pow_data = &(priv->power_data);
1898
1899 if (pow_data->active_index == IWL_POWER_RANGE_0)
1900 range = &pow_data->pwr_range_0[0];
1901 else
1902 range = &pow_data->pwr_range_1[1];
1903
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001904 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001905
1906#ifdef IWL_MAC80211_DISABLE
1907 if (priv->assoc_network != NULL) {
1908 unsigned long flags;
1909
1910 period = priv->assoc_network->tim.tim_period;
1911 }
1912#endif /*IWL_MAC80211_DISABLE */
1913 skip = range[mode].no_dtim;
1914
1915 if (period == 0) {
1916 period = 1;
1917 skip = 0;
1918 }
1919
1920 if (skip == 0) {
1921 max_sleep = period;
1922 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1923 } else {
1924 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1925 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1926 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1927 }
1928
1929 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1930 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1931 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1932 }
1933
1934 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1935 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1936 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1937 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1938 le32_to_cpu(cmd->sleep_interval[0]),
1939 le32_to_cpu(cmd->sleep_interval[1]),
1940 le32_to_cpu(cmd->sleep_interval[2]),
1941 le32_to_cpu(cmd->sleep_interval[3]),
1942 le32_to_cpu(cmd->sleep_interval[4]));
1943
1944 return rc;
1945}
1946
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001947static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001948{
John W. Linville9a62f732007-11-15 16:27:36 -05001949 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001950 int rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001951 struct iwl3945_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001952
1953 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001954 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001955 * else user level */
1956 switch (mode) {
1957 case IWL_POWER_BATTERY:
1958 final_mode = IWL_POWER_INDEX_3;
1959 break;
1960 case IWL_POWER_AC:
1961 final_mode = IWL_POWER_MODE_CAM;
1962 break;
1963 default:
1964 final_mode = mode;
1965 break;
1966 }
1967
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001968 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001969
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001970 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001971
1972 if (final_mode == IWL_POWER_MODE_CAM)
1973 clear_bit(STATUS_POWER_PMI, &priv->status);
1974 else
1975 set_bit(STATUS_POWER_PMI, &priv->status);
1976
1977 return rc;
1978}
1979
Zhu Yib481de92007-09-25 17:54:57 -07001980/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001981 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001982 *
1983 * NOTE: priv->mutex is not required before calling this function
1984 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001985static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001986{
1987 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1988 clear_bit(STATUS_SCANNING, &priv->status);
1989 return 0;
1990 }
1991
1992 if (test_bit(STATUS_SCANNING, &priv->status)) {
1993 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1994 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1995 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1996 queue_work(priv->workqueue, &priv->abort_scan);
1997
1998 } else
1999 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2000
2001 return test_bit(STATUS_SCANNING, &priv->status);
2002 }
2003
2004 return 0;
2005}
2006
2007/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002008 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002009 * @ms: amount of time to wait (in milliseconds) for scan to abort
2010 *
2011 * NOTE: priv->mutex must be held before calling this function
2012 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002013static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07002014{
2015 unsigned long now = jiffies;
2016 int ret;
2017
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002018 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002019 if (ret && ms) {
2020 mutex_unlock(&priv->mutex);
2021 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2022 test_bit(STATUS_SCANNING, &priv->status))
2023 msleep(1);
2024 mutex_lock(&priv->mutex);
2025
2026 return test_bit(STATUS_SCANNING, &priv->status);
2027 }
2028
2029 return ret;
2030}
2031
Zhu Yib481de92007-09-25 17:54:57 -07002032#define MAX_UCODE_BEACON_INTERVAL 1024
2033#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2034
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002035static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07002036{
2037 u16 new_val = 0;
2038 u16 beacon_factor = 0;
2039
2040 beacon_factor =
2041 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2042 / MAX_UCODE_BEACON_INTERVAL;
2043 new_val = beacon_val / beacon_factor;
2044
2045 return cpu_to_le16(new_val);
2046}
2047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002048static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002049{
2050 u64 interval_tm_unit;
2051 u64 tsf, result;
2052 unsigned long flags;
2053 struct ieee80211_conf *conf = NULL;
2054 u16 beacon_int = 0;
2055
2056 conf = ieee80211_get_hw_conf(priv->hw);
2057
2058 spin_lock_irqsave(&priv->lock, flags);
2059 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2060 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2061
2062 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2063
2064 tsf = priv->timestamp1;
2065 tsf = ((tsf << 32) | priv->timestamp0);
2066
2067 beacon_int = priv->beacon_int;
2068 spin_unlock_irqrestore(&priv->lock, flags);
2069
Johannes Berg05c914f2008-09-11 00:01:58 +02002070 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07002071 if (beacon_int == 0) {
2072 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2073 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2074 } else {
2075 priv->rxon_timing.beacon_interval =
2076 cpu_to_le16(beacon_int);
2077 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002078 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002079 le16_to_cpu(priv->rxon_timing.beacon_interval));
2080 }
2081
2082 priv->rxon_timing.atim_window = 0;
2083 } else {
2084 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002085 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002086 /* TODO: we need to get atim_window from upper stack
2087 * for now we set to 0 */
2088 priv->rxon_timing.atim_window = 0;
2089 }
2090
2091 interval_tm_unit =
2092 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2093 result = do_div(tsf, interval_tm_unit);
2094 priv->rxon_timing.beacon_init_val =
2095 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2096
2097 IWL_DEBUG_ASSOC
2098 ("beacon interval %d beacon timer %d beacon tim %d\n",
2099 le16_to_cpu(priv->rxon_timing.beacon_interval),
2100 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2101 le16_to_cpu(priv->rxon_timing.atim_window));
2102}
2103
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002104static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002105{
Johannes Berg05c914f2008-09-11 00:01:58 +02002106 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002107 IWL_ERROR("APs don't scan.\n");
2108 return 0;
2109 }
2110
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002111 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002112 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2113 return -EIO;
2114 }
2115
2116 if (test_bit(STATUS_SCANNING, &priv->status)) {
2117 IWL_DEBUG_SCAN("Scan already in progress.\n");
2118 return -EAGAIN;
2119 }
2120
2121 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2122 IWL_DEBUG_SCAN("Scan request while abort pending. "
2123 "Queuing.\n");
2124 return -EAGAIN;
2125 }
2126
2127 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002128 if (priv->cfg->sku & IWL_SKU_G)
2129 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
2130 if (priv->cfg->sku & IWL_SKU_A)
2131 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002132 set_bit(STATUS_SCANNING, &priv->status);
2133 priv->scan_start = jiffies;
2134 priv->scan_pass_start = priv->scan_start;
2135
2136 queue_work(priv->workqueue, &priv->request_scan);
2137
2138 return 0;
2139}
2140
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002141static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002142{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002143 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002144
2145 if (hw_decrypt)
2146 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2147 else
2148 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2149
2150 return 0;
2151}
2152
Johannes Berg8318d782008-01-24 19:38:38 +01002153static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2154 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002155{
Johannes Berg8318d782008-01-24 19:38:38 +01002156 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002157 priv->staging_rxon.flags &=
2158 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2159 | RXON_FLG_CCK_MSK);
2160 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2161 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002162 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002163 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2164 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2165 else
2166 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2167
Johannes Berg05c914f2008-09-11 00:01:58 +02002168 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002169 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2170
2171 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2172 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2173 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2174 }
2175}
2176
2177/*
Ian Schram01ebd062007-10-25 17:15:22 +08002178 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002179 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002180static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv,
2181 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002182{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002183 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002184
2185 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2186
Zhu, Yi60294de2008-10-29 14:05:45 -07002187 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002188 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -07002189 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2190 break;
2191
Johannes Berg05c914f2008-09-11 00:01:58 +02002192 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002193 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2194 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2195 break;
2196
Johannes Berg05c914f2008-09-11 00:01:58 +02002197 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002198 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2199 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2200 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2201 RXON_FILTER_ACCEPT_GRP_MSK;
2202 break;
2203
Johannes Berg05c914f2008-09-11 00:01:58 +02002204 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -07002205 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2206 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2207 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2208 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002209 default:
Zhu, Yi60294de2008-10-29 14:05:45 -07002210 IWL_ERROR("Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002211 break;
Zhu Yib481de92007-09-25 17:54:57 -07002212 }
2213
2214#if 0
2215 /* TODO: Figure out when short_preamble would be set and cache from
2216 * that */
2217 if (!hw_to_local(priv->hw)->short_preamble)
2218 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2219 else
2220 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2221#endif
2222
Johannes Berg8318d782008-01-24 19:38:38 +01002223 ch_info = iwl3945_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +08002224 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002225
2226 if (!ch_info)
2227 ch_info = &priv->channel_info[0];
2228
2229 /*
2230 * in some case A channels are all non IBSS
2231 * in this case force B/G channel
2232 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002233 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07002234 ch_info = &priv->channel_info[0];
2235
2236 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2237 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002238 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002239 else
Johannes Berg8318d782008-01-24 19:38:38 +01002240 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002241
Johannes Berg8318d782008-01-24 19:38:38 +01002242 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002243
2244 priv->staging_rxon.ofdm_basic_rates =
2245 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2246 priv->staging_rxon.cck_basic_rates =
2247 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2248}
2249
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002250static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002251{
Johannes Berg05c914f2008-09-11 00:01:58 +02002252 if (mode == NL80211_IFTYPE_ADHOC) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002253 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002255 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002256 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002257 le16_to_cpu(priv->staging_rxon.channel));
2258
2259 if (!ch_info || !is_channel_ibss(ch_info)) {
2260 IWL_ERROR("channel %d not IBSS channel\n",
2261 le16_to_cpu(priv->staging_rxon.channel));
2262 return -EINVAL;
2263 }
2264 }
2265
Zhu, Yi60294de2008-10-29 14:05:45 -07002266 iwl3945_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -07002267 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2268
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002269 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002270
Tomas Winklera96a27f2008-10-23 23:48:56 -07002271 /* don't commit rxon if rf-kill is on*/
Mohamed Abbasfde35712007-11-29 11:10:15 +08002272 if (!iwl3945_is_ready_rf(priv))
2273 return -EAGAIN;
2274
2275 cancel_delayed_work(&priv->scan_check);
2276 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2277 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2278 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2279 return -EAGAIN;
2280 }
2281
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002282 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002283
2284 return 0;
2285}
2286
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002287static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002288 struct ieee80211_tx_info *info,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002289 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002290 struct sk_buff *skb_frag,
2291 int last_frag)
2292{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002293 struct iwl3945_hw_key *keyinfo =
Johannes Berge039fa42008-05-15 12:55:29 +02002294 &priv->stations[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002295
2296 switch (keyinfo->alg) {
2297 case ALG_CCMP:
2298 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2299 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002300 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002301 break;
2302
2303 case ALG_TKIP:
2304#if 0
2305 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2306
2307 if (last_frag)
2308 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2309 8);
2310 else
2311 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2312#endif
2313 break;
2314
2315 case ALG_WEP:
2316 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002317 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002318
2319 if (keyinfo->keylen == 13)
2320 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2321
2322 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2323
2324 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002325 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002326 break;
2327
Zhu Yib481de92007-09-25 17:54:57 -07002328 default:
2329 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2330 break;
2331 }
2332}
2333
2334/*
2335 * handle build REPLY_TX command notification.
2336 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002337static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2338 struct iwl3945_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002339 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002340 struct ieee80211_hdr *hdr,
2341 int is_unicast, u8 std_id)
2342{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002343 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002344 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002345 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002346
2347 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002348 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002349 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002350 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002351 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002352 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002353 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2354 tx_flags |= TX_CMD_FLG_TSF_MSK;
2355 } else {
2356 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2357 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2358 }
2359
2360 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002361 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002362 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2363
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002364 if (ieee80211_is_data_qos(fc)) {
2365 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002366 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002367 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002368 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002369 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002370 }
Zhu Yib481de92007-09-25 17:54:57 -07002371
Johannes Berge6a98542008-10-21 12:40:02 +02002372 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002373 tx_flags |= TX_CMD_FLG_RTS_MSK;
2374 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002375 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002376 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2377 tx_flags |= TX_CMD_FLG_CTS_MSK;
2378 }
2379
2380 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2381 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2382
2383 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002384 if (ieee80211_is_mgmt(fc)) {
2385 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002386 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002387 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002388 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002389 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002390 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002391#ifdef CONFIG_IWL3945_LEDS
2392 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2393#endif
2394 }
Zhu Yib481de92007-09-25 17:54:57 -07002395
2396 cmd->cmd.tx.driver_txop = 0;
2397 cmd->cmd.tx.tx_flags = tx_flags;
2398 cmd->cmd.tx.next_frame_len = 0;
2399}
2400
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002401/**
2402 * iwl3945_get_sta_id - Find station's index within station table
2403 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002404static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002405{
2406 int sta_id;
2407 u16 fc = le16_to_cpu(hdr->frame_control);
2408
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002409 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002410 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2411 is_multicast_ether_addr(hdr->addr1))
2412 return priv->hw_setting.bcast_sta_id;
2413
2414 switch (priv->iw_mode) {
2415
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002416 /* If we are a client station in a BSS network, use the special
2417 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002418 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002419 return IWL_AP_ID;
2420
2421 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002422 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002423 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002424 if (sta_id != IWL_INVALID_STATION)
2425 return sta_id;
2426 return priv->hw_setting.bcast_sta_id;
2427
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002428 /* If this frame is going out to an IBSS network, find the station,
2429 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002430 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002431 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002432 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002433 if (sta_id != IWL_INVALID_STATION)
2434 return sta_id;
2435
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002436 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002437
2438 if (sta_id != IWL_INVALID_STATION)
2439 return sta_id;
2440
Johannes Berge1749612008-10-27 15:59:26 -07002441 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002442 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002443 hdr->addr1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002444 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002445 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002446 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002447 /* If we are in monitor mode, use BCAST. This is required for
2448 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002449 case NL80211_IFTYPE_MONITOR:
Stefanik Gábor914233d2008-06-30 17:23:30 +08002450 return priv->hw_setting.bcast_sta_id;
2451
Zhu Yib481de92007-09-25 17:54:57 -07002452 default:
Jiri Slaby6f147922008-08-11 23:49:41 +02002453 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002454 return priv->hw_setting.bcast_sta_id;
2455 }
2456}
2457
2458/*
2459 * start REPLY_TX command process
2460 */
Johannes Berge039fa42008-05-15 12:55:29 +02002461static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002462{
2463 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002464 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002465 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002466 u32 *control_flags;
Johannes Berge2530082008-05-17 00:57:14 +02002467 int txq_id = skb_get_queue_mapping(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002468 struct iwl3945_tx_queue *txq = NULL;
2469 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002470 dma_addr_t phys_addr;
2471 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002472 struct iwl3945_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002473 u16 len, idx, len_org, hdr_len;
2474 u8 id;
2475 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002476 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002477 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002478 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002479 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002480 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002481 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002482 unsigned long flags;
2483 int rc;
2484
2485 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002486 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002487 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2488 goto drop_unlock;
2489 }
2490
Johannes Berge039fa42008-05-15 12:55:29 +02002491 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002492 IWL_ERROR("ERROR: No TX rate available.\n");
2493 goto drop_unlock;
2494 }
2495
2496 unicast = !is_multicast_ether_addr(hdr->addr1);
2497 id = 0;
2498
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002499 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002500
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002501#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002502 if (ieee80211_is_auth(fc))
2503 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002504 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002505 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002506 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002507 IWL_DEBUG_TX("Sending REASSOC frame\n");
2508#endif
2509
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002510 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002511 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002512 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002513 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002514 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002515 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002516 goto drop_unlock;
2517 }
2518
2519 spin_unlock_irqrestore(&priv->lock, flags);
2520
Harvey Harrison7294ec92008-07-15 18:43:59 -07002521 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002522
2523 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002524 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002525 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002526 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2527 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002528 goto drop;
2529 }
2530
2531 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2532
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002533 if (ieee80211_is_data_qos(fc)) {
2534 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002535 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002536 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2537 IEEE80211_SCTL_SEQ;
2538 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2539 (hdr->seq_ctrl &
2540 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2541 seq_number += 0x10;
2542 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002543
2544 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002545 txq = &priv->txq[txq_id];
2546 q = &txq->q;
2547
2548 spin_lock_irqsave(&priv->lock, flags);
2549
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002550 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002551 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002552 memset(tfd, 0, sizeof(*tfd));
2553 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002554 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002555
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002556 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002557 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002558 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002559
2560 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002561 out_cmd = &txq->cmd[idx];
2562 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2563 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002564
2565 /*
2566 * Set up the Tx-command (not MAC!) header.
2567 * Store the chosen Tx queue and TFD index within the sequence field;
2568 * after Tx, uCode's Tx response will return this value so driver can
2569 * locate the frame within the tx queue and do post-tx processing.
2570 */
Zhu Yib481de92007-09-25 17:54:57 -07002571 out_cmd->hdr.cmd = REPLY_TX;
2572 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002573 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002574
2575 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002576 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2577
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002578 /*
2579 * Use the first empty entry in this queue's command buffer array
2580 * to contain the Tx command and MAC header concatenated together
2581 * (payload data will be in another buffer).
2582 * Size of this varies, due to varying MAC header length.
2583 * If end is not dword aligned, we'll have 2 extra bytes at the end
2584 * of the MAC header (device reads on dword boundaries).
2585 * We'll tell device about this padding later.
2586 */
Zhu Yib481de92007-09-25 17:54:57 -07002587 len = priv->hw_setting.tx_cmd_len +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002588 sizeof(struct iwl3945_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002589
2590 len_org = len;
2591 len = (len + 3) & ~3;
2592
2593 if (len_org != len)
2594 len_org = 1;
2595 else
2596 len_org = 0;
2597
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002598 /* Physical address of this Tx command's header (not MAC header!),
2599 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002600 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2601 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002602
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002603 /* Add buffer containing Tx command and MAC(!) header to TFD's
2604 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002605 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002606
Johannes Bergd0f09802008-07-29 11:32:07 +02002607 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002608 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002609
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002610 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2611 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002612 len = skb->len - hdr_len;
2613 if (len) {
2614 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2615 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002616 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002617 }
2618
Zhu Yib481de92007-09-25 17:54:57 -07002619 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002620 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002621 *control_flags = TFD_CTL_COUNT_SET(1);
2622 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002623 /* Else use 2 buffers.
2624 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002625 *control_flags = TFD_CTL_COUNT_SET(2) |
2626 TFD_CTL_PAD_SET(U32_PAD(len));
2627
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002628 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002629 len = (u16)skb->len;
2630 out_cmd->cmd.tx.len = cpu_to_le16(len);
2631
2632 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002633 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002634
2635 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002636 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002637
2638 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2639 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2640
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002641 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002642 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002643 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002644 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002645 } else {
2646 wait_write_ptr = 1;
2647 txq->need_update = 0;
2648 }
2649
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002650 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002651 sizeof(out_cmd->cmd.tx));
2652
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002653 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002654 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002655
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002656 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002657 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002658 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002659 spin_unlock_irqrestore(&priv->lock, flags);
2660
2661 if (rc)
2662 return rc;
2663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002664 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002665 && priv->mac80211_registered) {
2666 if (wait_write_ptr) {
2667 spin_lock_irqsave(&priv->lock, flags);
2668 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002669 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002670 spin_unlock_irqrestore(&priv->lock, flags);
2671 }
2672
Johannes Berge2530082008-05-17 00:57:14 +02002673 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002674 }
2675
2676 return 0;
2677
2678drop_unlock:
2679 spin_unlock_irqrestore(&priv->lock, flags);
2680drop:
2681 return -1;
2682}
2683
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002684static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002685{
Johannes Berg8318d782008-01-24 19:38:38 +01002686 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002687 struct ieee80211_rate *rate;
2688 int i;
2689
Johannes Berg8318d782008-01-24 19:38:38 +01002690 sband = iwl3945_get_band(priv, priv->band);
2691 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002692 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2693 return;
2694 }
Zhu Yib481de92007-09-25 17:54:57 -07002695
2696 priv->active_rate = 0;
2697 priv->active_rate_basic = 0;
2698
Johannes Berg8318d782008-01-24 19:38:38 +01002699 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2700 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002701
Johannes Berg8318d782008-01-24 19:38:38 +01002702 for (i = 0; i < sband->n_bitrates; i++) {
2703 rate = &sband->bitrates[i];
2704 if ((rate->hw_value < IWL_RATE_COUNT) &&
2705 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2706 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2707 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2708 priv->active_rate |= (1 << rate->hw_value);
2709 }
Zhu Yib481de92007-09-25 17:54:57 -07002710 }
2711
2712 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2713 priv->active_rate, priv->active_rate_basic);
2714
2715 /*
2716 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2717 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2718 * OFDM
2719 */
2720 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2721 priv->staging_rxon.cck_basic_rates =
2722 ((priv->active_rate_basic &
2723 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2724 else
2725 priv->staging_rxon.cck_basic_rates =
2726 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2727
2728 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2729 priv->staging_rxon.ofdm_basic_rates =
2730 ((priv->active_rate_basic &
2731 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2732 IWL_FIRST_OFDM_RATE) & 0xFF;
2733 else
2734 priv->staging_rxon.ofdm_basic_rates =
2735 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2736}
2737
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002738static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002739{
2740 unsigned long flags;
2741
2742 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2743 return;
2744
2745 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2746 disable_radio ? "OFF" : "ON");
2747
2748 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002749 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002750 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002751 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002752 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002753 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002754 CSR_UCODE_SW_BIT_RFKILL);
2755 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002756 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002757 set_bit(STATUS_RF_KILL_SW, &priv->status);
2758 }
2759 return;
2760 }
2761
2762 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002763 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002764
2765 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2766 spin_unlock_irqrestore(&priv->lock, flags);
2767
2768 /* wake up ucode */
2769 msleep(10);
2770
2771 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002772 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
2773 if (!iwl3945_grab_nic_access(priv))
2774 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002775 spin_unlock_irqrestore(&priv->lock, flags);
2776
2777 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2778 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2779 "disabled by HW switch\n");
2780 return;
2781 }
2782
Zhu Yi808e72a2008-06-12 09:47:17 +08002783 if (priv->is_open)
2784 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002785 return;
2786}
2787
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002788void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002789 u32 decrypt_res, struct ieee80211_rx_status *stats)
2790{
2791 u16 fc =
2792 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2793
2794 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2795 return;
2796
2797 if (!(fc & IEEE80211_FCTL_PROTECTED))
2798 return;
2799
2800 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2801 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2802 case RX_RES_STATUS_SEC_TYPE_TKIP:
2803 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2804 RX_RES_STATUS_BAD_ICV_MIC)
2805 stats->flag |= RX_FLAG_MMIC_ERROR;
2806 case RX_RES_STATUS_SEC_TYPE_WEP:
2807 case RX_RES_STATUS_SEC_TYPE_CCMP:
2808 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2809 RX_RES_STATUS_DECRYPT_OK) {
2810 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2811 stats->flag |= RX_FLAG_DECRYPTED;
2812 }
2813 break;
2814
2815 default:
2816 break;
2817 }
2818}
2819
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002820#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002821
2822#include "iwl-spectrum.h"
2823
2824#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2825#define BEACON_TIME_MASK_HIGH 0xFF000000
2826#define TIME_UNIT 1024
2827
2828/*
2829 * extended beacon time format
2830 * time in usec will be changed into a 32-bit value in 8:24 format
2831 * the high 1 byte is the beacon counts
2832 * the lower 3 bytes is the time in usec within one beacon interval
2833 */
2834
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002835static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002836{
2837 u32 quot;
2838 u32 rem;
2839 u32 interval = beacon_interval * 1024;
2840
2841 if (!interval || !usec)
2842 return 0;
2843
2844 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2845 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2846
2847 return (quot << 24) + rem;
2848}
2849
2850/* base is usually what we get from ucode with each received frame,
2851 * the same as HW timer counter counting down
2852 */
2853
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002854static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002855{
2856 u32 base_low = base & BEACON_TIME_MASK_LOW;
2857 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2858 u32 interval = beacon_interval * TIME_UNIT;
2859 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2860 (addon & BEACON_TIME_MASK_HIGH);
2861
2862 if (base_low > addon_low)
2863 res += base_low - addon_low;
2864 else if (base_low < addon_low) {
2865 res += interval + base_low - addon_low;
2866 res += (1 << 24);
2867 } else
2868 res += (1 << 24);
2869
2870 return cpu_to_le32(res);
2871}
2872
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002873static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002874 struct ieee80211_measurement_params *params,
2875 u8 type)
2876{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002877 struct iwl3945_spectrum_cmd spectrum;
2878 struct iwl3945_rx_packet *res;
2879 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002880 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2881 .data = (void *)&spectrum,
2882 .meta.flags = CMD_WANT_SKB,
2883 };
2884 u32 add_time = le64_to_cpu(params->start_time);
2885 int rc;
2886 int spectrum_resp_status;
2887 int duration = le16_to_cpu(params->duration);
2888
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002889 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002890 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002891 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002892 le64_to_cpu(params->start_time) - priv->last_tsf,
2893 le16_to_cpu(priv->rxon_timing.beacon_interval));
2894
2895 memset(&spectrum, 0, sizeof(spectrum));
2896
2897 spectrum.channel_count = cpu_to_le16(1);
2898 spectrum.flags =
2899 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2900 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2901 cmd.len = sizeof(spectrum);
2902 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2903
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002904 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002905 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002906 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002907 add_time,
2908 le16_to_cpu(priv->rxon_timing.beacon_interval));
2909 else
2910 spectrum.start_time = 0;
2911
2912 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2913 spectrum.channels[0].channel = params->channel;
2914 spectrum.channels[0].type = type;
2915 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2916 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2917 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2918
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002919 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002920 if (rc)
2921 return rc;
2922
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002923 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002924 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2925 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2926 rc = -EIO;
2927 }
2928
2929 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2930 switch (spectrum_resp_status) {
2931 case 0: /* Command will be handled */
2932 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002933 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2934 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002935 priv->measurement_status &= ~MEASUREMENT_READY;
2936 }
2937 priv->measurement_status |= MEASUREMENT_ACTIVE;
2938 rc = 0;
2939 break;
2940
2941 case 1: /* Command will not be handled */
2942 rc = -EAGAIN;
2943 break;
2944 }
2945
2946 dev_kfree_skb_any(cmd.meta.u.skb);
2947
2948 return rc;
2949}
2950#endif
2951
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002952static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
2953 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002954{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002955 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
2956 struct iwl3945_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002957 struct delayed_work *pwork;
2958
2959 palive = &pkt->u.alive_frame;
2960
2961 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2962 "0x%01X 0x%01X\n",
2963 palive->is_valid, palive->ver_type,
2964 palive->ver_subtype);
2965
2966 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2967 IWL_DEBUG_INFO("Initialization Alive received.\n");
2968 memcpy(&priv->card_alive_init,
2969 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002970 sizeof(struct iwl3945_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002971 pwork = &priv->init_alive_start;
2972 } else {
2973 IWL_DEBUG_INFO("Runtime Alive received.\n");
2974 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002975 sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002976 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002977 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002978 }
2979
2980 /* We delay the ALIVE response by 5ms to
2981 * give the HW RF Kill time to activate... */
2982 if (palive->is_valid == UCODE_VALID_OK)
2983 queue_delayed_work(priv->workqueue, pwork,
2984 msecs_to_jiffies(5));
2985 else
2986 IWL_WARNING("uCode did not respond OK.\n");
2987}
2988
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002989static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
2990 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002991{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002992 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002993
2994 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2995 return;
2996}
2997
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002998static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
2999 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003000{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003001 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003002
3003 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3004 "seq 0x%04X ser 0x%08X\n",
3005 le32_to_cpu(pkt->u.err_resp.error_type),
3006 get_cmd_string(pkt->u.err_resp.cmd_id),
3007 pkt->u.err_resp.cmd_id,
3008 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3009 le32_to_cpu(pkt->u.err_resp.error_info));
3010}
3011
3012#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003014static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003015{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003016 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3017 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
3018 struct iwl3945_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003019 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3020 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3021 rxon->channel = csa->channel;
3022 priv->staging_rxon.channel = csa->channel;
3023}
3024
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003025static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3026 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003027{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003028#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003029 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3030 struct iwl3945_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003031
3032 if (!report->state) {
3033 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3034 "Spectrum Measure Notification: Start\n");
3035 return;
3036 }
3037
3038 memcpy(&priv->measure_report, report, sizeof(*report));
3039 priv->measurement_status |= MEASUREMENT_READY;
3040#endif
3041}
3042
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003043static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3044 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003045{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003046#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003047 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3048 struct iwl3945_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003049 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3050 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3051#endif
3052}
3053
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003054static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3055 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003056{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003057 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003058 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3059 "notification for %s:\n",
3060 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003061 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003062}
3063
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003064static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003065{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003066 struct iwl3945_priv *priv =
3067 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003068 struct sk_buff *beacon;
3069
3070 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02003071 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07003072
3073 if (!beacon) {
3074 IWL_ERROR("update beacon failed\n");
3075 return;
3076 }
3077
3078 mutex_lock(&priv->mutex);
3079 /* new beacon skb is allocated every time; dispose previous.*/
3080 if (priv->ibss_beacon)
3081 dev_kfree_skb(priv->ibss_beacon);
3082
3083 priv->ibss_beacon = beacon;
3084 mutex_unlock(&priv->mutex);
3085
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003086 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003087}
3088
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003089static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3090 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003091{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003092#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003093 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3094 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003095 u8 rate = beacon->beacon_notify_hdr.rate;
3096
3097 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3098 "tsf %d %d rate %d\n",
3099 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3100 beacon->beacon_notify_hdr.failure_frame,
3101 le32_to_cpu(beacon->ibss_mgr_status),
3102 le32_to_cpu(beacon->high_tsf),
3103 le32_to_cpu(beacon->low_tsf), rate);
3104#endif
3105
Johannes Berg05c914f2008-09-11 00:01:58 +02003106 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07003107 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3108 queue_work(priv->workqueue, &priv->beacon_update);
3109}
3110
3111/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003112static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3113 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003114{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003115#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003116 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3117 struct iwl3945_scanreq_notification *notif =
3118 (struct iwl3945_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003119
3120 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3121#endif
3122}
3123
3124/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003125static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3126 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003127{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003128 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3129 struct iwl3945_scanstart_notification *notif =
3130 (struct iwl3945_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003131 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3132 IWL_DEBUG_SCAN("Scan start: "
3133 "%d [802.11%s] "
3134 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3135 notif->channel,
3136 notif->band ? "bg" : "a",
3137 notif->tsf_high,
3138 notif->tsf_low, notif->status, notif->beacon_timer);
3139}
3140
3141/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003142static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3143 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003144{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003145 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3146 struct iwl3945_scanresults_notification *notif =
3147 (struct iwl3945_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003148
3149 IWL_DEBUG_SCAN("Scan ch.res: "
3150 "%d [802.11%s] "
3151 "(TSF: 0x%08X:%08X) - %d "
3152 "elapsed=%lu usec (%dms since last)\n",
3153 notif->channel,
3154 notif->band ? "bg" : "a",
3155 le32_to_cpu(notif->tsf_high),
3156 le32_to_cpu(notif->tsf_low),
3157 le32_to_cpu(notif->statistics[0]),
3158 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3159 jiffies_to_msecs(elapsed_jiffies
3160 (priv->last_scan_jiffies, jiffies)));
3161
3162 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003163 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003164}
3165
3166/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003167static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3168 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003169{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003170 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3171 struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003172
3173 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3174 scan_notif->scanned_channels,
3175 scan_notif->tsf_low,
3176 scan_notif->tsf_high, scan_notif->status);
3177
3178 /* The HW is no longer scanning */
3179 clear_bit(STATUS_SCAN_HW, &priv->status);
3180
3181 /* The scan completion notification came in, so kill that timer... */
3182 cancel_delayed_work(&priv->scan_check);
3183
3184 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003185 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
3186 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07003187 jiffies_to_msecs(elapsed_jiffies
3188 (priv->scan_pass_start, jiffies)));
3189
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003190 /* Remove this scanned band from the list of pending
3191 * bands to scan, band G precedes A in order of scanning
3192 * as seen in iwl3945_bg_request_scan */
3193 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
3194 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
3195 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
3196 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07003197
3198 /* If a request to abort was given, or the scan did not succeed
3199 * then we reset the scan state machine and terminate,
3200 * re-queuing another scan if one has been requested */
3201 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3202 IWL_DEBUG_INFO("Aborted scan completed.\n");
3203 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3204 } else {
3205 /* If there are more bands on this scan pass reschedule */
3206 if (priv->scan_bands > 0)
3207 goto reschedule;
3208 }
3209
3210 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003211 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003212 IWL_DEBUG_INFO("Setting scan to off\n");
3213
3214 clear_bit(STATUS_SCANNING, &priv->status);
3215
3216 IWL_DEBUG_INFO("Scan took %dms\n",
3217 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3218
3219 queue_work(priv->workqueue, &priv->scan_completed);
3220
3221 return;
3222
3223reschedule:
3224 priv->scan_pass_start = jiffies;
3225 queue_work(priv->workqueue, &priv->request_scan);
3226}
3227
3228/* Handle notification from uCode that card's power state is changing
3229 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003230static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3231 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003232{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003233 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003234 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3235 unsigned long status = priv->status;
3236
3237 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3238 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3239 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003241 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003242 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3243
3244 if (flags & HW_CARD_DISABLED)
3245 set_bit(STATUS_RF_KILL_HW, &priv->status);
3246 else
3247 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3248
3249
3250 if (flags & SW_CARD_DISABLED)
3251 set_bit(STATUS_RF_KILL_SW, &priv->status);
3252 else
3253 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003255 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003256
3257 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3258 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3259 (test_bit(STATUS_RF_KILL_SW, &status) !=
3260 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3261 queue_work(priv->workqueue, &priv->rf_kill);
3262 else
3263 wake_up_interruptible(&priv->wait_command_queue);
3264}
3265
3266/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003267 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003268 *
3269 * Setup the RX handlers for each of the reply types sent from the uCode
3270 * to the host.
3271 *
3272 * This function chains into the hardware specific files for them to setup
3273 * any hardware specific handlers as well.
3274 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003275static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003276{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003277 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3278 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3279 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3280 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003281 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003282 iwl3945_rx_spectrum_measure_notif;
3283 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003284 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003285 iwl3945_rx_pm_debug_statistics_notif;
3286 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003287
Ben Cahill9fbab512007-11-29 11:09:47 +08003288 /*
3289 * The same handler is used for both the REPLY to a discrete
3290 * statistics request from the host as well as for the periodic
3291 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003292 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003293 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3294 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003296 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3297 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003298 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003299 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003300 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003301 iwl3945_rx_scan_complete_notif;
3302 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003303
Ben Cahill9fbab512007-11-29 11:09:47 +08003304 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003305 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003306}
3307
3308/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003309 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3310 * When FW advances 'R' index, all entries between old and new 'R' index
3311 * need to be reclaimed.
3312 */
3313static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv,
3314 int txq_id, int index)
3315{
3316 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3317 struct iwl3945_queue *q = &txq->q;
3318 int nfreed = 0;
3319
3320 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3321 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3322 "is out of range [0-%d] %d %d.\n", txq_id,
3323 index, q->n_bd, q->write_ptr, q->read_ptr);
3324 return;
3325 }
3326
3327 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3328 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3329 if (nfreed > 1) {
3330 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
3331 q->write_ptr, q->read_ptr);
3332 queue_work(priv->workqueue, &priv->restart);
3333 break;
3334 }
3335 nfreed++;
3336 }
3337}
3338
3339
3340/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003341 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003342 * @rxb: Rx buffer to reclaim
3343 *
3344 * If an Rx buffer has an async callback associated with it the callback
3345 * will be executed. The attached skb (if present) will only be freed
3346 * if the callback returns 1
3347 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003348static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3349 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003350{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003351 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003352 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3353 int txq_id = SEQ_TO_QUEUE(sequence);
3354 int index = SEQ_TO_INDEX(sequence);
3355 int huge = sequence & SEQ_HUGE_FRAME;
3356 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003357 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003358
Zhu Yib481de92007-09-25 17:54:57 -07003359 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3360
3361 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3362 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3363
3364 /* Input error checking is done when commands are added to queue. */
3365 if (cmd->meta.flags & CMD_WANT_SKB) {
3366 cmd->meta.source->u.skb = rxb->skb;
3367 rxb->skb = NULL;
3368 } else if (cmd->meta.u.callback &&
3369 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3370 rxb->skb = NULL;
3371
Tomas Winkler91c066f2008-03-06 17:36:55 -08003372 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003373
3374 if (!(cmd->meta.flags & CMD_ASYNC)) {
3375 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3376 wake_up_interruptible(&priv->wait_command_queue);
3377 }
3378}
3379
3380/************************** RX-FUNCTIONS ****************************/
3381/*
3382 * Rx theory of operation
3383 *
3384 * The host allocates 32 DMA target addresses and passes the host address
3385 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3386 * 0 to 31
3387 *
3388 * Rx Queue Indexes
3389 * The host/firmware share two index registers for managing the Rx buffers.
3390 *
3391 * The READ index maps to the first position that the firmware may be writing
3392 * to -- the driver can read up to (but not including) this position and get
3393 * good data.
3394 * The READ index is managed by the firmware once the card is enabled.
3395 *
3396 * The WRITE index maps to the last position the driver has read from -- the
3397 * position preceding WRITE is the last slot the firmware can place a packet.
3398 *
3399 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3400 * WRITE = READ.
3401 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003402 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003403 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3404 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003405 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003406 * and fire the RX interrupt. The driver can then query the READ index and
3407 * process as many packets as possible, moving the WRITE index forward as it
3408 * resets the Rx queue buffers with new memory.
3409 *
3410 * The management in the driver is as follows:
3411 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3412 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003413 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003414 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003415 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3416 * 'processed' and 'read' driver indexes as well)
3417 * + A received packet is processed and handed to the kernel network stack,
3418 * detached from the iwl->rxq. The driver 'processed' index is updated.
3419 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3420 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3421 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3422 * were enough free buffers and RX_STALLED is set it is cleared.
3423 *
3424 *
3425 * Driver sequence:
3426 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003427 * iwl3945_rx_queue_alloc() Allocates rx_free
3428 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003429 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003430 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003431 * queue, updates firmware pointers, and updates
3432 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003433 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003434 *
3435 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003436 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003437 * READ INDEX, detaching the SKB from the pool.
3438 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003439 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003440 * slots.
3441 * ...
3442 *
3443 */
3444
3445/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003446 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003447 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003448static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003449{
3450 int s = q->read - q->write;
3451 if (s <= 0)
3452 s += RX_QUEUE_SIZE;
3453 /* keep some buffer to not confuse full and empty queue */
3454 s -= 2;
3455 if (s < 0)
3456 s = 0;
3457 return s;
3458}
3459
3460/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003461 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003462 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003463int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003464{
3465 u32 reg = 0;
3466 int rc = 0;
3467 unsigned long flags;
3468
3469 spin_lock_irqsave(&q->lock, flags);
3470
3471 if (q->need_update == 0)
3472 goto exit_unlock;
3473
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003474 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003475 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003476 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003477
3478 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003479 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003480 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3481 goto exit_unlock;
3482 }
3483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003484 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003485 if (rc)
3486 goto exit_unlock;
3487
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003488 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003489 iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003490 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003491 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003492
3493 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003494 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003495 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003496 iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003497
3498
3499 q->need_update = 0;
3500
3501 exit_unlock:
3502 spin_unlock_irqrestore(&q->lock, flags);
3503 return rc;
3504}
3505
3506/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003507 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003508 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003509static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003510 dma_addr_t dma_addr)
3511{
3512 return cpu_to_le32((u32)dma_addr);
3513}
3514
3515/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003516 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003517 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003518 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003519 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003520 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003521 *
3522 * This moves the 'write' index forward to catch up with 'processed', and
3523 * also updates the memory address in the firmware to reference the new
3524 * target buffer.
3525 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003526static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003527{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003528 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003529 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003530 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003531 unsigned long flags;
3532 int write, rc;
3533
3534 spin_lock_irqsave(&rxq->lock, flags);
3535 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003536 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003537 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003538 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003539 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003540 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003541
3542 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003543 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003544 rxq->queue[rxq->write] = rxb;
3545 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3546 rxq->free_count--;
3547 }
3548 spin_unlock_irqrestore(&rxq->lock, flags);
3549 /* If the pre-allocated buffer pool is dropping low, schedule to
3550 * refill it */
3551 if (rxq->free_count <= RX_LOW_WATERMARK)
3552 queue_work(priv->workqueue, &priv->rx_replenish);
3553
3554
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003555 /* If we've added more space for the firmware to place data, tell it.
3556 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003557 if ((write != (rxq->write & ~0x7))
3558 || (abs(rxq->write - rxq->read) > 7)) {
3559 spin_lock_irqsave(&rxq->lock, flags);
3560 rxq->need_update = 1;
3561 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003562 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003563 if (rc)
3564 return rc;
3565 }
3566
3567 return 0;
3568}
3569
3570/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003571 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003572 *
3573 * When moving to rx_free an SKB is allocated for the slot.
3574 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003575 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003576 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003577 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003578static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003579{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003580 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003581 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003582 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003583 unsigned long flags;
3584 spin_lock_irqsave(&rxq->lock, flags);
3585 while (!list_empty(&rxq->rx_used)) {
3586 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003587 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003588
3589 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003590 rxb->skb =
3591 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3592 if (!rxb->skb) {
3593 if (net_ratelimit())
3594 printk(KERN_CRIT DRV_NAME
3595 ": Can not allocate SKB buffers\n");
3596 /* We don't reschedule replenish work here -- we will
3597 * call the restock method and if it still needs
3598 * more buffers it will schedule replenish */
3599 break;
3600 }
Zhu Yi12342c42007-12-20 11:27:32 +08003601
3602 /* If radiotap head is required, reserve some headroom here.
3603 * The physical head count is a variable rx_stats->phy_count.
3604 * We reserve 4 bytes here. Plus these extra bytes, the
3605 * headroom of the physical head should be enough for the
3606 * radiotap head that iwl3945 supported. See iwl3945_rt.
3607 */
3608 skb_reserve(rxb->skb, 4);
3609
Zhu Yib481de92007-09-25 17:54:57 -07003610 priv->alloc_rxb_skb++;
3611 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003612
3613 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003614 rxb->dma_addr =
3615 pci_map_single(priv->pci_dev, rxb->skb->data,
3616 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3617 list_add_tail(&rxb->list, &rxq->rx_free);
3618 rxq->free_count++;
3619 }
3620 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003621}
3622
3623/*
3624 * this should be called while priv->lock is locked
3625 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003626static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003627{
3628 struct iwl3945_priv *priv = data;
3629
3630 iwl3945_rx_allocate(priv);
3631 iwl3945_rx_queue_restock(priv);
3632}
3633
3634
3635void iwl3945_rx_replenish(void *data)
3636{
3637 struct iwl3945_priv *priv = data;
3638 unsigned long flags;
3639
3640 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003641
3642 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003643 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003644 spin_unlock_irqrestore(&priv->lock, flags);
3645}
3646
3647/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003648 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003649 * This free routine walks the list of POOL entries and if SKB is set to
3650 * non NULL it is unmapped and freed
3651 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003652static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003653{
3654 int i;
3655 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3656 if (rxq->pool[i].skb != NULL) {
3657 pci_unmap_single(priv->pci_dev,
3658 rxq->pool[i].dma_addr,
3659 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3660 dev_kfree_skb(rxq->pool[i].skb);
3661 }
3662 }
3663
3664 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3665 rxq->dma_addr);
3666 rxq->bd = NULL;
3667}
3668
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003669int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003670{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003671 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003672 struct pci_dev *dev = priv->pci_dev;
3673 int i;
3674
3675 spin_lock_init(&rxq->lock);
3676 INIT_LIST_HEAD(&rxq->rx_free);
3677 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003678
3679 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003680 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3681 if (!rxq->bd)
3682 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003683
Zhu Yib481de92007-09-25 17:54:57 -07003684 /* Fill the rx_used queue with _all_ of the Rx buffers */
3685 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3686 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003687
Zhu Yib481de92007-09-25 17:54:57 -07003688 /* Set us so that we have processed and used all buffers, but have
3689 * not restocked the Rx queue with fresh buffers */
3690 rxq->read = rxq->write = 0;
3691 rxq->free_count = 0;
3692 rxq->need_update = 0;
3693 return 0;
3694}
3695
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003696void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003697{
3698 unsigned long flags;
3699 int i;
3700 spin_lock_irqsave(&rxq->lock, flags);
3701 INIT_LIST_HEAD(&rxq->rx_free);
3702 INIT_LIST_HEAD(&rxq->rx_used);
3703 /* Fill the rx_used queue with _all_ of the Rx buffers */
3704 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3705 /* In the reset function, these buffers may have been allocated
3706 * to an SKB, so we need to unmap and free potential storage */
3707 if (rxq->pool[i].skb != NULL) {
3708 pci_unmap_single(priv->pci_dev,
3709 rxq->pool[i].dma_addr,
3710 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3711 priv->alloc_rxb_skb--;
3712 dev_kfree_skb(rxq->pool[i].skb);
3713 rxq->pool[i].skb = NULL;
3714 }
3715 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3716 }
3717
3718 /* Set us so that we have processed and used all buffers, but have
3719 * not restocked the Rx queue with fresh buffers */
3720 rxq->read = rxq->write = 0;
3721 rxq->free_count = 0;
3722 spin_unlock_irqrestore(&rxq->lock, flags);
3723}
3724
3725/* Convert linear signal-to-noise ratio into dB */
3726static u8 ratio2dB[100] = {
3727/* 0 1 2 3 4 5 6 7 8 9 */
3728 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3729 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3730 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3731 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3732 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3733 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3734 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3735 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3736 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3737 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3738};
3739
3740/* Calculates a relative dB value from a ratio of linear
3741 * (i.e. not dB) signal levels.
3742 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003743int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003744{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003745 /* 1000:1 or higher just report as 60 dB */
3746 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003747 return 60;
3748
Adrian Bunk221c80c2008-02-02 23:19:01 +02003749 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003750 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003751 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003752 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003753
3754 /* We shouldn't see this */
3755 if (sig_ratio < 1)
3756 return 0;
3757
3758 /* Use table for ratios 1:1 - 99:1 */
3759 return (int)ratio2dB[sig_ratio];
3760}
3761
3762#define PERFECT_RSSI (-20) /* dBm */
3763#define WORST_RSSI (-95) /* dBm */
3764#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3765
3766/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3767 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3768 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003769int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003770{
3771 int sig_qual;
3772 int degradation = PERFECT_RSSI - rssi_dbm;
3773
3774 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3775 * as indicator; formula is (signal dbm - noise dbm).
3776 * SNR at or above 40 is a great signal (100%).
3777 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3778 * Weakest usable signal is usually 10 - 15 dB SNR. */
3779 if (noise_dbm) {
3780 if (rssi_dbm - noise_dbm >= 40)
3781 return 100;
3782 else if (rssi_dbm < noise_dbm)
3783 return 0;
3784 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3785
3786 /* Else use just the signal level.
3787 * This formula is a least squares fit of data points collected and
3788 * compared with a reference system that had a percentage (%) display
3789 * for signal quality. */
3790 } else
3791 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3792 (15 * RSSI_RANGE + 62 * degradation)) /
3793 (RSSI_RANGE * RSSI_RANGE);
3794
3795 if (sig_qual > 100)
3796 sig_qual = 100;
3797 else if (sig_qual < 1)
3798 sig_qual = 0;
3799
3800 return sig_qual;
3801}
3802
3803/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003804 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003805 *
3806 * Uses the priv->rx_handlers callback function array to invoke
3807 * the appropriate handlers, including command responses,
3808 * frame-received notifications, and other notifications.
3809 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003810static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003811{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003812 struct iwl3945_rx_mem_buffer *rxb;
3813 struct iwl3945_rx_packet *pkt;
3814 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003815 u32 r, i;
3816 int reclaim;
3817 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003818 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003819 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003820
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003821 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3822 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003823 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003824 i = rxq->read;
3825
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003826 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3827 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003828 /* Rx interrupt, but nothing sent from uCode */
3829 if (i == r)
3830 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3831
3832 while (i != r) {
3833 rxb = rxq->queue[i];
3834
Ben Cahill9fbab512007-11-29 11:09:47 +08003835 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003836 * then a bug has been introduced in the queue refilling
3837 * routines -- catch it here */
3838 BUG_ON(rxb == NULL);
3839
3840 rxq->queue[i] = NULL;
3841
3842 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
3843 IWL_RX_BUF_SIZE,
3844 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003845 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003846
3847 /* Reclaim a command buffer only if this packet is a response
3848 * to a (driver-originated) command.
3849 * If the packet (e.g. Rx frame) originated from uCode,
3850 * there is no command buffer to reclaim.
3851 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3852 * but apparently a few don't get set; catch them here. */
3853 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3854 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3855 (pkt->hdr.cmd != REPLY_TX);
3856
3857 /* Based on type of command response or notification,
3858 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003859 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003860 if (priv->rx_handlers[pkt->hdr.cmd]) {
3861 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3862 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3863 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3864 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3865 } else {
3866 /* No handling needed */
3867 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3868 "r %d i %d No handler needed for %s, 0x%02x\n",
3869 r, i, get_cmd_string(pkt->hdr.cmd),
3870 pkt->hdr.cmd);
3871 }
3872
3873 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003874 /* Invoke any callbacks, transfer the skb to caller, and
3875 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003876 * as we reclaim the driver command queue */
3877 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003878 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003879 else
3880 IWL_WARNING("Claim null rxb?\n");
3881 }
3882
3883 /* For now we just don't re-use anything. We can tweak this
3884 * later to try and re-use notification packets and SKBs that
3885 * fail to Rx correctly */
3886 if (rxb->skb != NULL) {
3887 priv->alloc_rxb_skb--;
3888 dev_kfree_skb_any(rxb->skb);
3889 rxb->skb = NULL;
3890 }
3891
3892 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
3893 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3894 spin_lock_irqsave(&rxq->lock, flags);
3895 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3896 spin_unlock_irqrestore(&rxq->lock, flags);
3897 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003898 /* If there are a lot of unused frames,
3899 * restock the Rx queue so ucode won't assert. */
3900 if (fill_rx) {
3901 count++;
3902 if (count >= 8) {
3903 priv->rxq.read = i;
3904 __iwl3945_rx_replenish(priv);
3905 count = 0;
3906 }
3907 }
Zhu Yib481de92007-09-25 17:54:57 -07003908 }
3909
3910 /* Backtrack one entry */
3911 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003912 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003913}
3914
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003915/**
3916 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3917 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003918static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
3919 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003920{
3921 u32 reg = 0;
3922 int rc = 0;
3923 int txq_id = txq->q.id;
3924
3925 if (txq->need_update == 0)
3926 return rc;
3927
3928 /* if we're trying to save power */
3929 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3930 /* wake up nic if it's powered down ...
3931 * uCode will wake up, and interrupt us again, so next
3932 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003933 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003934
3935 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3936 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003937 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003938 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3939 return rc;
3940 }
3941
3942 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003943 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003944 if (rc)
3945 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003946 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003947 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003948 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003949
3950 /* else not in power-save mode, uCode will never sleep when we're
3951 * trying to tx (during RFKILL, we're not trying to tx). */
3952 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003953 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003954 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003955
3956 txq->need_update = 0;
3957
3958 return rc;
3959}
3960
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003961#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003962static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003963{
3964 IWL_DEBUG_RADIO("RX CONFIG:\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003965 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003966 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3967 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3968 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3969 le32_to_cpu(rxon->filter_flags));
3970 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3971 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3972 rxon->ofdm_basic_rates);
3973 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003974 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3975 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003976 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3977}
3978#endif
3979
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003980static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003981{
3982 IWL_DEBUG_ISR("Enabling interrupts\n");
3983 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003984 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003985}
3986
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003987
3988/* call this function to flush any scheduled tasklet */
3989static inline void iwl_synchronize_irq(struct iwl3945_priv *priv)
3990{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003991 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003992 synchronize_irq(priv->pci_dev->irq);
3993 tasklet_kill(&priv->irq_tasklet);
3994}
3995
3996
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003997static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003998{
3999 clear_bit(STATUS_INT_ENABLED, &priv->status);
4000
4001 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004002 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004003
4004 /* acknowledge/clear/reset any interrupts still pending
4005 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004006 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4007 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004008 IWL_DEBUG_ISR("Disabled interrupts\n");
4009}
4010
4011static const char *desc_lookup(int i)
4012{
4013 switch (i) {
4014 case 1:
4015 return "FAIL";
4016 case 2:
4017 return "BAD_PARAM";
4018 case 3:
4019 return "BAD_CHECKSUM";
4020 case 4:
4021 return "NMI_INTERRUPT";
4022 case 5:
4023 return "SYSASSERT";
4024 case 6:
4025 return "FATAL_ERROR";
4026 }
4027
4028 return "UNKNOWN";
4029}
4030
4031#define ERROR_START_OFFSET (1 * sizeof(u32))
4032#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4033
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004034static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004035{
4036 u32 i;
4037 u32 desc, time, count, base, data1;
4038 u32 blink1, blink2, ilink1, ilink2;
4039 int rc;
4040
4041 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4042
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004043 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004044 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4045 return;
4046 }
4047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004048 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004049 if (rc) {
4050 IWL_WARNING("Can not read from adapter at this time.\n");
4051 return;
4052 }
4053
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004054 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004055
4056 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4057 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004058 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004059 }
4060
4061 IWL_ERROR("Desc Time asrtPC blink2 "
4062 "ilink1 nmiPC Line\n");
4063 for (i = ERROR_START_OFFSET;
4064 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4065 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004066 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004067 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004068 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004069 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004070 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004071 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004072 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004073 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004074 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004075 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004076 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004077 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004078 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004079
4080 IWL_ERROR
4081 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4082 desc_lookup(desc), desc, time, blink1, blink2,
4083 ilink1, ilink2, data1);
4084 }
4085
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004086 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004087
4088}
4089
Ben Cahillf58177b2007-11-29 11:09:43 +08004090#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004091
4092/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004093 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004094 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004095 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004096 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004097static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004098 u32 num_events, u32 mode)
4099{
4100 u32 i;
4101 u32 base; /* SRAM byte address of event log header */
4102 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4103 u32 ptr; /* SRAM byte address of log data */
4104 u32 ev, time, data; /* event log data */
4105
4106 if (num_events == 0)
4107 return;
4108
4109 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4110
4111 if (mode == 0)
4112 event_size = 2 * sizeof(u32);
4113 else
4114 event_size = 3 * sizeof(u32);
4115
4116 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4117
4118 /* "time" is actually "data" for mode 0 (no timestamp).
4119 * place event id # at far right for easier visual parsing. */
4120 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004121 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004122 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004123 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004124 ptr += sizeof(u32);
4125 if (mode == 0)
4126 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4127 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004128 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004129 ptr += sizeof(u32);
4130 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4131 }
4132 }
4133}
4134
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004135static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004136{
4137 int rc;
4138 u32 base; /* SRAM byte address of event log header */
4139 u32 capacity; /* event log capacity in # entries */
4140 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4141 u32 num_wraps; /* # times uCode wrapped to top of log */
4142 u32 next_entry; /* index of next entry to be written by uCode */
4143 u32 size; /* # entries that we'll print */
4144
4145 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004146 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004147 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4148 return;
4149 }
4150
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004151 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004152 if (rc) {
4153 IWL_WARNING("Can not read from adapter at this time.\n");
4154 return;
4155 }
4156
4157 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004158 capacity = iwl3945_read_targ_mem(priv, base);
4159 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4160 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4161 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004162
4163 size = num_wraps ? capacity : next_entry;
4164
4165 /* bail out if nothing in log */
4166 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004167 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004168 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004169 return;
4170 }
4171
Zhu Yi583fab32007-09-27 11:27:30 +08004172 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004173 size, num_wraps);
4174
4175 /* if uCode has wrapped back to top of log, start at the oldest entry,
4176 * i.e the next one that uCode would fill. */
4177 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004178 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004179 capacity - next_entry, mode);
4180
4181 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004182 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004183
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004184 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004185}
4186
4187/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004188 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004189 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004190static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004191{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004192 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004193 set_bit(STATUS_FW_ERROR, &priv->status);
4194
4195 /* Cancel currently queued command. */
4196 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4197
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004198#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004199 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4200 iwl3945_dump_nic_error_log(priv);
4201 iwl3945_dump_nic_event_log(priv);
4202 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004203 }
4204#endif
4205
4206 wake_up_interruptible(&priv->wait_command_queue);
4207
4208 /* Keep the restart process from trying to send host
4209 * commands by clearing the INIT status bit */
4210 clear_bit(STATUS_READY, &priv->status);
4211
4212 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4213 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4214 "Restarting adapter due to uCode error.\n");
4215
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004216 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004217 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4218 sizeof(priv->recovery_rxon));
4219 priv->error_recovering = 1;
4220 }
4221 queue_work(priv->workqueue, &priv->restart);
4222 }
4223}
4224
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004225static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004226{
4227 unsigned long flags;
4228
4229 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4230 sizeof(priv->staging_rxon));
4231 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004232 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004233
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004234 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004235
4236 spin_lock_irqsave(&priv->lock, flags);
4237 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4238 priv->error_recovering = 0;
4239 spin_unlock_irqrestore(&priv->lock, flags);
4240}
4241
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004242static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004243{
4244 u32 inta, handled = 0;
4245 u32 inta_fh;
4246 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004247#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004248 u32 inta_mask;
4249#endif
4250
4251 spin_lock_irqsave(&priv->lock, flags);
4252
4253 /* Ack/clear/reset pending uCode interrupts.
4254 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4255 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004256 inta = iwl3945_read32(priv, CSR_INT);
4257 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004258
4259 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4260 * Any new interrupts that happen after this, either while we're
4261 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004262 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4263 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004264
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004265#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004266 if (iwl3945_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004267 /* just for debug */
4268 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004269 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4270 inta, inta_mask, inta_fh);
4271 }
4272#endif
4273
4274 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4275 * atomic, make sure that inta covers all the interrupts that
4276 * we've discovered, even if FH interrupt came in just after
4277 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004278 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004279 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004280 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004281 inta |= CSR_INT_BIT_FH_TX;
4282
4283 /* Now service all interrupt bits discovered above. */
4284 if (inta & CSR_INT_BIT_HW_ERR) {
4285 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4286
4287 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004288 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004289
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004290 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004291
4292 handled |= CSR_INT_BIT_HW_ERR;
4293
4294 spin_unlock_irqrestore(&priv->lock, flags);
4295
4296 return;
4297 }
4298
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004299#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004300 if (iwl3945_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004301 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004302 if (inta & CSR_INT_BIT_SCD)
4303 IWL_DEBUG_ISR("Scheduler finished to transmit "
4304 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004305
4306 /* Alive notification via Rx interrupt will do the real work */
4307 if (inta & CSR_INT_BIT_ALIVE)
4308 IWL_DEBUG_ISR("Alive interrupt\n");
4309 }
4310#endif
4311 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004312 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004313
Zhu Yib481de92007-09-25 17:54:57 -07004314 /* Error detected by uCode */
4315 if (inta & CSR_INT_BIT_SW_ERR) {
4316 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4317 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004318 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004319 handled |= CSR_INT_BIT_SW_ERR;
4320 }
4321
4322 /* uCode wakes up after power-down sleep */
4323 if (inta & CSR_INT_BIT_WAKEUP) {
4324 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004325 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4326 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4327 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4328 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4329 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4330 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4331 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004332
4333 handled |= CSR_INT_BIT_WAKEUP;
4334 }
4335
4336 /* All uCode command responses, including Tx command responses,
4337 * Rx "responses" (frame-received notification), and other
4338 * notifications from uCode come through here*/
4339 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004340 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004341 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4342 }
4343
4344 if (inta & CSR_INT_BIT_FH_TX) {
4345 IWL_DEBUG_ISR("Tx interrupt\n");
4346
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004347 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4348 if (!iwl3945_grab_nic_access(priv)) {
4349 iwl3945_write_direct32(priv,
Zhu Yib481de92007-09-25 17:54:57 -07004350 FH_TCSR_CREDIT
4351 (ALM_FH_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004352 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004353 }
4354 handled |= CSR_INT_BIT_FH_TX;
4355 }
4356
4357 if (inta & ~handled)
4358 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4359
4360 if (inta & ~CSR_INI_SET_MASK) {
4361 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4362 inta & ~CSR_INI_SET_MASK);
4363 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4364 }
4365
4366 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004367 /* only Re-enable if disabled by irq */
4368 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4369 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004370
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004371#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004372 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4373 inta = iwl3945_read32(priv, CSR_INT);
4374 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4375 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004376 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4377 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4378 }
4379#endif
4380 spin_unlock_irqrestore(&priv->lock, flags);
4381}
4382
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004383static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004384{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004385 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004386 u32 inta, inta_mask;
4387 u32 inta_fh;
4388 if (!priv)
4389 return IRQ_NONE;
4390
4391 spin_lock(&priv->lock);
4392
4393 /* Disable (but don't clear!) interrupts here to avoid
4394 * back-to-back ISRs and sporadic interrupts from our NIC.
4395 * If we have something to service, the tasklet will re-enable ints.
4396 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004397 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4398 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004399
4400 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004401 inta = iwl3945_read32(priv, CSR_INT);
4402 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004403
4404 /* Ignore interrupt if there's nothing in NIC to service.
4405 * This may be due to IRQ shared with another device,
4406 * or due to sporadic interrupts thrown from our NIC. */
4407 if (!inta && !inta_fh) {
4408 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4409 goto none;
4410 }
4411
4412 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4413 /* Hardware disappeared */
Zhu Yi99df6302008-12-02 12:13:58 -08004414 IWL_WARNING("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004415 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004416 }
4417
4418 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4419 inta, inta_mask, inta_fh);
4420
Joonwoo Park25c03d82008-01-23 10:15:20 -08004421 inta &= ~CSR_INT_BIT_SCD;
4422
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004423 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004424 if (likely(inta || inta_fh))
4425 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004426unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004427 spin_unlock(&priv->lock);
4428
4429 return IRQ_HANDLED;
4430
4431 none:
4432 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004433 /* only Re-enable if disabled by irq */
4434 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4435 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004436 spin_unlock(&priv->lock);
4437 return IRQ_NONE;
4438}
4439
4440/************************** EEPROM BANDS ****************************
4441 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004442 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004443 * EEPROM contents to the specific channel number supported for each
4444 * band.
4445 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004446 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004447 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4448 * The specific geography and calibration information for that channel
4449 * is contained in the eeprom map itself.
4450 *
4451 * During init, we copy the eeprom information and channel map
4452 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4453 *
4454 * channel_map_24/52 provides the index in the channel_info array for a
4455 * given channel. We have to have two separate maps as there is channel
4456 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4457 * band_2
4458 *
4459 * A value of 0xff stored in the channel_map indicates that the channel
4460 * is not supported by the hardware at all.
4461 *
4462 * A value of 0xfe in the channel_map indicates that the channel is not
4463 * valid for Tx with the current hardware. This means that
4464 * while the system can tune and receive on a given channel, it may not
4465 * be able to associate or transmit any frames on that
4466 * channel. There is no corresponding channel information for that
4467 * entry.
4468 *
4469 *********************************************************************/
4470
4471/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004472static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004473 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4474};
4475
4476/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004477static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004478 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4479};
4480
Ben Cahill9fbab512007-11-29 11:09:47 +08004481static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004482 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4483};
4484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004485static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004486 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4487};
4488
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004489static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004490 145, 149, 153, 157, 161, 165
4491};
4492
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004493static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004494 int *eeprom_ch_count,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004495 const struct iwl3945_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004496 **eeprom_ch_info,
4497 const u8 **eeprom_ch_index)
4498{
4499 switch (band) {
4500 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004501 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004502 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004503 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004504 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004505 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004506 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004507 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004508 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004509 break;
4510 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004511 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004512 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004513 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004514 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004515 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004516 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004517 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004518 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004519 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004520 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004521 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004522 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004523 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004524 break;
4525 default:
4526 BUG();
4527 return;
4528 }
4529}
4530
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004531/**
4532 * iwl3945_get_channel_info - Find driver's private channel info
4533 *
4534 * Based on band and channel number.
4535 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004536const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004537 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004538{
4539 int i;
4540
Johannes Berg8318d782008-01-24 19:38:38 +01004541 switch (band) {
4542 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004543 for (i = 14; i < priv->channel_count; i++) {
4544 if (priv->channel_info[i].channel == channel)
4545 return &priv->channel_info[i];
4546 }
4547 break;
4548
Johannes Berg8318d782008-01-24 19:38:38 +01004549 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004550 if (channel >= 1 && channel <= 14)
4551 return &priv->channel_info[channel - 1];
4552 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004553 case IEEE80211_NUM_BANDS:
4554 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004555 }
4556
4557 return NULL;
4558}
4559
4560#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4561 ? # x " " : "")
4562
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004563/**
4564 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4565 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004566static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004567{
4568 int eeprom_ch_count = 0;
4569 const u8 *eeprom_ch_index = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004570 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004571 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004572 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004573
4574 if (priv->channel_count) {
4575 IWL_DEBUG_INFO("Channel map already initialized.\n");
4576 return 0;
4577 }
4578
4579 if (priv->eeprom.version < 0x2f) {
4580 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
4581 priv->eeprom.version);
4582 return -EINVAL;
4583 }
4584
4585 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4586
4587 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004588 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4589 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4590 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4591 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4592 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004593
4594 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4595
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004596 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004597 priv->channel_count, GFP_KERNEL);
4598 if (!priv->channel_info) {
4599 IWL_ERROR("Could not allocate channel_info\n");
4600 priv->channel_count = 0;
4601 return -ENOMEM;
4602 }
4603
4604 ch_info = priv->channel_info;
4605
4606 /* Loop through the 5 EEPROM bands adding them in order to the
4607 * channel map we maintain (that contains additional information than
4608 * what just in the EEPROM) */
4609 for (band = 1; band <= 5; band++) {
4610
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004611 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004612 &eeprom_ch_info, &eeprom_ch_index);
4613
4614 /* Loop through each band adding each of the channels */
4615 for (ch = 0; ch < eeprom_ch_count; ch++) {
4616 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004617 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4618 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004619
4620 /* permanently store EEPROM's channel regulatory flags
4621 * and max power in channel info database. */
4622 ch_info->eeprom = eeprom_ch_info[ch];
4623
4624 /* Copy the run-time flags so they are there even on
4625 * invalid channels */
4626 ch_info->flags = eeprom_ch_info[ch].flags;
4627
4628 if (!(is_channel_valid(ch_info))) {
4629 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4630 "No traffic\n",
4631 ch_info->channel,
4632 ch_info->flags,
4633 is_channel_a_band(ch_info) ?
4634 "5.2" : "2.4");
4635 ch_info++;
4636 continue;
4637 }
4638
4639 /* Initialize regulatory-based run-time data */
4640 ch_info->max_power_avg = ch_info->curr_txpow =
4641 eeprom_ch_info[ch].max_power_avg;
4642 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4643 ch_info->min_power = 0;
4644
Guy Cohenfe7c4042008-04-21 15:41:56 -07004645 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004646 " %ddBm): Ad-Hoc %ssupported\n",
4647 ch_info->channel,
4648 is_channel_a_band(ch_info) ?
4649 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004650 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004651 CHECK_AND_PRINT(IBSS),
4652 CHECK_AND_PRINT(ACTIVE),
4653 CHECK_AND_PRINT(RADAR),
4654 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004655 CHECK_AND_PRINT(DFS),
4656 eeprom_ch_info[ch].flags,
4657 eeprom_ch_info[ch].max_power_avg,
4658 ((eeprom_ch_info[ch].
4659 flags & EEPROM_CHANNEL_IBSS)
4660 && !(eeprom_ch_info[ch].
4661 flags & EEPROM_CHANNEL_RADAR))
4662 ? "" : "not ");
4663
4664 /* Set the user_txpower_limit to the highest power
4665 * supported by any channel */
4666 if (eeprom_ch_info[ch].max_power_avg >
4667 priv->user_txpower_limit)
4668 priv->user_txpower_limit =
4669 eeprom_ch_info[ch].max_power_avg;
4670
4671 ch_info++;
4672 }
4673 }
4674
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004675 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004676 if (iwl3945_txpower_set_from_eeprom(priv))
4677 return -EIO;
4678
4679 return 0;
4680}
4681
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004682/*
4683 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4684 */
4685static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
4686{
4687 kfree(priv->channel_info);
4688 priv->channel_count = 0;
4689}
4690
Zhu Yib481de92007-09-25 17:54:57 -07004691/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4692 * sending probe req. This should be set long enough to hear probe responses
4693 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004694#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4695#define IWL_ACTIVE_DWELL_TIME_52 (20)
4696
4697#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4698#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004699
4700/* For faster active scanning, scan will move to the next channel if fewer than
4701 * PLCP_QUIET_THRESH packets are heard on this channel within
4702 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4703 * time if it's a quiet channel (nothing responded to our probe, and there's
4704 * no other traffic).
4705 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4706#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004707#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004708
4709/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4710 * Must be set longer than active dwell time.
4711 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4712#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4713#define IWL_PASSIVE_DWELL_TIME_52 (10)
4714#define IWL_PASSIVE_DWELL_BASE (100)
4715#define IWL_CHANNEL_TUNE_TIME 5
4716
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004717#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004718
Johannes Berg8318d782008-01-24 19:38:38 +01004719static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004720 enum ieee80211_band band,
4721 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004722{
Johannes Berg8318d782008-01-24 19:38:38 +01004723 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004724 return IWL_ACTIVE_DWELL_TIME_52 +
4725 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004726 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004727 return IWL_ACTIVE_DWELL_TIME_24 +
4728 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004729}
4730
Johannes Berg8318d782008-01-24 19:38:38 +01004731static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
4732 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004733{
Johannes Berg8318d782008-01-24 19:38:38 +01004734 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004735 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4736 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4737
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004738 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004739 /* If we're associated, we clamp the maximum passive
4740 * dwell time to be 98% of the beacon interval (minus
4741 * 2 * channel tune time) */
4742 passive = priv->beacon_int;
4743 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4744 passive = IWL_PASSIVE_DWELL_BASE;
4745 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4746 }
4747
Zhu Yib481de92007-09-25 17:54:57 -07004748 return passive;
4749}
4750
Johannes Berg8318d782008-01-24 19:38:38 +01004751static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
4752 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004753 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004754 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004755{
4756 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004757 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004758 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004759 u16 passive_dwell = 0;
4760 u16 active_dwell = 0;
4761 int added, i;
4762
Johannes Berg8318d782008-01-24 19:38:38 +01004763 sband = iwl3945_get_band(priv, band);
4764 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004765 return 0;
4766
Johannes Berg8318d782008-01-24 19:38:38 +01004767 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004768
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004769 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004770 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004771
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004772 if (passive_dwell <= active_dwell)
4773 passive_dwell = active_dwell + 1;
4774
Johannes Berg8318d782008-01-24 19:38:38 +01004775 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004776 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4777 continue;
4778
Johannes Berg8318d782008-01-24 19:38:38 +01004779 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004780
Johannes Berg8318d782008-01-24 19:38:38 +01004781 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004782 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004783 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004784 scan_ch->channel);
4785 continue;
4786 }
4787
4788 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg8318d782008-01-24 19:38:38 +01004789 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN))
Zhu Yib481de92007-09-25 17:54:57 -07004790 scan_ch->type = 0; /* passive */
4791 else
4792 scan_ch->type = 1; /* active */
4793
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004794 if ((scan_ch->type & 1) && n_probes)
4795 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
Zhu Yib481de92007-09-25 17:54:57 -07004796
Zhu Yib481de92007-09-25 17:54:57 -07004797 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4798 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
4799
Ben Cahill9fbab512007-11-29 11:09:47 +08004800 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004801 scan_ch->tpc.dsp_atten = 110;
4802 /* scan_pwr_info->tpc.dsp_atten; */
4803
4804 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004805 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004806 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4807 else {
4808 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4809 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004810 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004811 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004812 */
4813 }
4814
4815 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4816 scan_ch->channel,
4817 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4818 (scan_ch->type & 1) ?
4819 active_dwell : passive_dwell);
4820
4821 scan_ch++;
4822 added++;
4823 }
4824
4825 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4826 return added;
4827}
4828
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004829static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004830 struct ieee80211_rate *rates)
4831{
4832 int i;
4833
4834 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004835 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4836 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4837 rates[i].hw_value_short = i;
4838 rates[i].flags = 0;
4839 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004840 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004841 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004842 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004843 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004844 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004845 }
Zhu Yib481de92007-09-25 17:54:57 -07004846 }
4847}
4848
4849/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004850 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004851 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004852static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004853{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004854 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004855 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004856 struct ieee80211_channel *channels;
4857 struct ieee80211_channel *geo_ch;
4858 struct ieee80211_rate *rates;
4859 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004860
Johannes Berg8318d782008-01-24 19:38:38 +01004861 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4862 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004863 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4864 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4865 return 0;
4866 }
4867
Zhu Yib481de92007-09-25 17:54:57 -07004868 channels = kzalloc(sizeof(struct ieee80211_channel) *
4869 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004870 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004871 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004872
Tomas Winkler8211ef72008-03-02 01:36:04 +02004873 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004874 GFP_KERNEL);
4875 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004876 kfree(channels);
4877 return -ENOMEM;
4878 }
4879
Zhu Yib481de92007-09-25 17:54:57 -07004880 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004881 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4882 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4883 /* just OFDM */
4884 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4885 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004886
Tomas Winkler8211ef72008-03-02 01:36:04 +02004887 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4888 sband->channels = channels;
4889 /* OFDM & CCK */
4890 sband->bitrates = rates;
4891 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004892
4893 priv->ieee_channels = channels;
4894 priv->ieee_rates = rates;
4895
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004896 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004897
Tomas Winkler8211ef72008-03-02 01:36:04 +02004898 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004899 ch = &priv->channel_info[i];
4900
Tomas Winkler8211ef72008-03-02 01:36:04 +02004901 /* FIXME: might be removed if scan is OK*/
4902 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004903 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004904
4905 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004906 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004907 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004908 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004909
Tomas Winkler8211ef72008-03-02 01:36:04 +02004910 geo_ch = &sband->channels[sband->n_channels++];
4911
4912 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004913 geo_ch->max_power = ch->max_power_avg;
4914 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004915 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004916
4917 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004918 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4919 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004920
Johannes Berg8318d782008-01-24 19:38:38 +01004921 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4922 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004923
4924 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004925 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004926
4927 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4928 priv->max_channel_txpower_limit =
4929 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004930 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004931 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004932 }
4933
4934 /* Save flags for reg domain usage */
4935 geo_ch->orig_flags = geo_ch->flags;
4936
4937 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4938 ch->channel, geo_ch->center_freq,
4939 is_channel_a_band(ch) ? "5.2" : "2.4",
4940 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4941 "restricted" : "valid",
4942 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004943 }
4944
Tomas Winkler82b9a122008-03-04 18:09:30 -08004945 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4946 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004947 printk(KERN_INFO DRV_NAME
4948 ": Incorrectly detected BG card as ABG. Please send "
4949 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4950 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004951 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004952 }
4953
4954 printk(KERN_INFO DRV_NAME
4955 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004956 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4957 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004958
John W. Linvillee0e0a672008-03-25 15:58:40 -04004959 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4960 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4961 &priv->bands[IEEE80211_BAND_2GHZ];
4962 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4963 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4964 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004965
Zhu Yib481de92007-09-25 17:54:57 -07004966 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4967
4968 return 0;
4969}
4970
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004971/*
4972 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4973 */
4974static void iwl3945_free_geos(struct iwl3945_priv *priv)
4975{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004976 kfree(priv->ieee_channels);
4977 kfree(priv->ieee_rates);
4978 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4979}
4980
Zhu Yib481de92007-09-25 17:54:57 -07004981/******************************************************************************
4982 *
4983 * uCode download functions
4984 *
4985 ******************************************************************************/
4986
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004987static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004988{
Tomas Winkler98c92212008-01-14 17:46:20 -08004989 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4990 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4991 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4992 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4993 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4994 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004995}
4996
4997/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004998 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004999 * looking at all data.
5000 */
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005001static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005002{
5003 u32 val;
5004 u32 save_len = len;
5005 int rc = 0;
5006 u32 errcnt;
5007
5008 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5009
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005010 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005011 if (rc)
5012 return rc;
5013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005014 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005015
5016 errcnt = 0;
5017 for (; len > 0; len -= sizeof(u32), image++) {
5018 /* read data comes through single port, auto-incr addr */
5019 /* NOTE: Use the debugless read so we don't flood kernel log
5020 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005021 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005022 if (val != le32_to_cpu(*image)) {
5023 IWL_ERROR("uCode INST section is invalid at "
5024 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5025 save_len - len, val, le32_to_cpu(*image));
5026 rc = -EIO;
5027 errcnt++;
5028 if (errcnt >= 20)
5029 break;
5030 }
5031 }
5032
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005033 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005034
5035 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005036 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005037
5038 return rc;
5039}
5040
5041
5042/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005043 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005044 * using sample data 100 bytes apart. If these sample points are good,
5045 * it's a pretty good bet that everything between them is good, too.
5046 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005047static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005048{
5049 u32 val;
5050 int rc = 0;
5051 u32 errcnt = 0;
5052 u32 i;
5053
5054 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5055
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005056 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005057 if (rc)
5058 return rc;
5059
5060 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
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 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005065 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005066 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005067 if (val != le32_to_cpu(*image)) {
5068#if 0 /* Enable this if you want to see details */
5069 IWL_ERROR("uCode INST section is invalid at "
5070 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5071 i, val, *image);
5072#endif
5073 rc = -EIO;
5074 errcnt++;
5075 if (errcnt >= 3)
5076 break;
5077 }
5078 }
5079
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005080 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005081
5082 return rc;
5083}
5084
5085
5086/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005087 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005088 * and verify its contents
5089 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005090static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005091{
5092 __le32 *image;
5093 u32 len;
5094 int rc = 0;
5095
5096 /* Try bootstrap */
5097 image = (__le32 *)priv->ucode_boot.v_addr;
5098 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005099 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005100 if (rc == 0) {
5101 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5102 return 0;
5103 }
5104
5105 /* Try initialize */
5106 image = (__le32 *)priv->ucode_init.v_addr;
5107 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005108 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005109 if (rc == 0) {
5110 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5111 return 0;
5112 }
5113
5114 /* Try runtime/protocol */
5115 image = (__le32 *)priv->ucode_code.v_addr;
5116 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005117 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005118 if (rc == 0) {
5119 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5120 return 0;
5121 }
5122
5123 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5124
Ben Cahill9fbab512007-11-29 11:09:47 +08005125 /* Since nothing seems to match, show first several data entries in
5126 * instruction SRAM, so maybe visual inspection will give a clue.
5127 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005128 image = (__le32 *)priv->ucode_boot.v_addr;
5129 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005130 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005131
5132 return rc;
5133}
5134
5135
5136/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005137static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005138{
5139 __le32 *image = priv->ucode_boot.v_addr;
5140 u32 len = priv->ucode_boot.len;
5141 u32 reg;
5142 u32 val;
5143
5144 IWL_DEBUG_INFO("Begin verify bsm\n");
5145
5146 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005147 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005148 for (reg = BSM_SRAM_LOWER_BOUND;
5149 reg < BSM_SRAM_LOWER_BOUND + len;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005150 reg += sizeof(u32), image++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005151 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005152 if (val != le32_to_cpu(*image)) {
5153 IWL_ERROR("BSM uCode verification failed at "
5154 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5155 BSM_SRAM_LOWER_BOUND,
5156 reg - BSM_SRAM_LOWER_BOUND, len,
5157 val, le32_to_cpu(*image));
5158 return -EIO;
5159 }
5160 }
5161
5162 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5163
5164 return 0;
5165}
5166
5167/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005168 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005169 *
5170 * BSM operation:
5171 *
5172 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5173 * in special SRAM that does not power down during RFKILL. When powering back
5174 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5175 * the bootstrap program into the on-board processor, and starts it.
5176 *
5177 * The bootstrap program loads (via DMA) instructions and data for a new
5178 * program from host DRAM locations indicated by the host driver in the
5179 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5180 * automatically.
5181 *
5182 * When initializing the NIC, the host driver points the BSM to the
5183 * "initialize" uCode image. This uCode sets up some internal data, then
5184 * notifies host via "initialize alive" that it is complete.
5185 *
5186 * The host then replaces the BSM_DRAM_* pointer values to point to the
5187 * normal runtime uCode instructions and a backup uCode data cache buffer
5188 * (filled initially with starting data values for the on-board processor),
5189 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5190 * which begins normal operation.
5191 *
5192 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5193 * the backup data cache in DRAM before SRAM is powered down.
5194 *
5195 * When powering back up, the BSM loads the bootstrap program. This reloads
5196 * the runtime uCode instructions and the backup data cache into SRAM,
5197 * and re-launches the runtime uCode from where it left off.
5198 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005199static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005200{
5201 __le32 *image = priv->ucode_boot.v_addr;
5202 u32 len = priv->ucode_boot.len;
5203 dma_addr_t pinst;
5204 dma_addr_t pdata;
5205 u32 inst_len;
5206 u32 data_len;
5207 int rc;
5208 int i;
5209 u32 done;
5210 u32 reg_offset;
5211
5212 IWL_DEBUG_INFO("Begin load bsm\n");
5213
5214 /* make sure bootstrap program is no larger than BSM's SRAM size */
5215 if (len > IWL_MAX_BSM_SIZE)
5216 return -EINVAL;
5217
5218 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005219 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005220 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005221 * after the "initialize" uCode has run, to point to
5222 * runtime/protocol instructions and backup data cache. */
5223 pinst = priv->ucode_init.p_addr;
5224 pdata = priv->ucode_init_data.p_addr;
5225 inst_len = priv->ucode_init.len;
5226 data_len = priv->ucode_init_data.len;
5227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005228 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005229 if (rc)
5230 return rc;
5231
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005232 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5233 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5234 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5235 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005236
5237 /* Fill BSM memory with bootstrap instructions */
5238 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5239 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5240 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005241 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005242 le32_to_cpu(*image));
5243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005244 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005245 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005246 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005247 return rc;
5248 }
5249
5250 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005251 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5252 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005253 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005254 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005255
5256 /* Load bootstrap code into instruction SRAM now,
5257 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005258 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005259 BSM_WR_CTRL_REG_BIT_START);
5260
5261 /* Wait for load of bootstrap uCode to finish */
5262 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005264 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5265 break;
5266 udelay(10);
5267 }
5268 if (i < 100)
5269 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5270 else {
5271 IWL_ERROR("BSM write did not complete!\n");
5272 return -EIO;
5273 }
5274
5275 /* Enable future boot loads whenever power management unit triggers it
5276 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005277 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005278 BSM_WR_CTRL_REG_BIT_START_EN);
5279
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005280 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005281
5282 return 0;
5283}
5284
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005285static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005286{
5287 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005288 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005289}
5290
5291/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005292 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005293 *
5294 * Copy into buffers for card to fetch via bus-mastering
5295 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005296static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005297{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005298 struct iwl3945_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005299 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005300 const struct firmware *ucode_raw;
5301 /* firmware file name contains uCode/driver compatibility version */
Tomas Winkler4bf775c2008-03-04 18:09:31 -08005302 const char *name = priv->cfg->fw_name;
Zhu Yib481de92007-09-25 17:54:57 -07005303 u8 *src;
5304 size_t len;
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005305 u32 inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07005306
5307 /* Ask kernel firmware_class module to get the boot firmware off disk.
5308 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08005309 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
5310 if (ret < 0) {
5311 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5312 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07005313 goto error;
5314 }
5315
5316 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5317 name, ucode_raw->size);
5318
5319 /* Make sure that we got at least our header! */
5320 if (ucode_raw->size < sizeof(*ucode)) {
5321 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005322 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005323 goto err_release;
5324 }
5325
5326 /* Data from ucode file: header followed by uCode images */
5327 ucode = (void *)ucode_raw->data;
5328
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005329 priv->ucode_ver = le32_to_cpu(ucode->ver);
Zhu Yib481de92007-09-25 17:54:57 -07005330 inst_size = le32_to_cpu(ucode->inst_size);
5331 data_size = le32_to_cpu(ucode->data_size);
5332 init_size = le32_to_cpu(ucode->init_size);
5333 init_data_size = le32_to_cpu(ucode->init_data_size);
5334 boot_size = le32_to_cpu(ucode->boot_size);
5335
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005336 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
5337 priv->ucode_ver);
5338 IWL_DEBUG_INFO("f/w package hdr ucode version = %u.%u.%u.%u\n",
5339 IWL_UCODE_MAJOR(priv->ucode_ver),
5340 IWL_UCODE_MINOR(priv->ucode_ver),
5341 IWL_UCODE_API(priv->ucode_ver),
5342 IWL_UCODE_SERIAL(priv->ucode_ver));
Ian Schrambc434dd2007-10-25 17:15:29 +08005343 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5344 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5345 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5346 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5347 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005348
5349 /* Verify size of file vs. image size info in file's header */
5350 if (ucode_raw->size < sizeof(*ucode) +
5351 inst_size + data_size + init_size +
5352 init_data_size + boot_size) {
5353
5354 IWL_DEBUG_INFO("uCode file size %d too small\n",
5355 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005356 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005357 goto err_release;
5358 }
5359
5360 /* Verify that uCode images will fit in card's SRAM */
5361 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005362 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5363 inst_size);
5364 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005365 goto err_release;
5366 }
5367
5368 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005369 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5370 data_size);
5371 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005372 goto err_release;
5373 }
5374 if (init_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005375 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5376 init_size);
5377 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005378 goto err_release;
5379 }
5380 if (init_data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005381 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5382 init_data_size);
5383 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005384 goto err_release;
5385 }
5386 if (boot_size > IWL_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005387 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5388 boot_size);
5389 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005390 goto err_release;
5391 }
5392
5393 /* Allocate ucode buffers for card's bus-master loading ... */
5394
5395 /* Runtime instructions and 2 copies of data:
5396 * 1) unmodified from disk
5397 * 2) backup cache for save/restore during power-downs */
5398 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005399 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005400
5401 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005402 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005403
5404 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005405 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005406
5407 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005408 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005409 goto err_pci_alloc;
5410
Tomas Winkler90e759d2007-11-29 11:09:41 +08005411 /* Initialization instructions and data */
5412 if (init_size && init_data_size) {
5413 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005414 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005415
5416 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005417 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005418
5419 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5420 goto err_pci_alloc;
5421 }
5422
5423 /* Bootstrap (instructions only, no data) */
5424 if (boot_size) {
5425 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005426 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005427
5428 if (!priv->ucode_boot.v_addr)
5429 goto err_pci_alloc;
5430 }
5431
Zhu Yib481de92007-09-25 17:54:57 -07005432 /* Copy images into buffers for card's bus-master reads ... */
5433
5434 /* Runtime instructions (first block of data in file) */
5435 src = &ucode->data[0];
5436 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005437 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005438 memcpy(priv->ucode_code.v_addr, src, len);
5439 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5440 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5441
5442 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005443 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005444 src = &ucode->data[inst_size];
5445 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005446 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005447 memcpy(priv->ucode_data.v_addr, src, len);
5448 memcpy(priv->ucode_data_backup.v_addr, src, len);
5449
5450 /* Initialization instructions (3rd block) */
5451 if (init_size) {
5452 src = &ucode->data[inst_size + data_size];
5453 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005454 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5455 len);
Zhu Yib481de92007-09-25 17:54:57 -07005456 memcpy(priv->ucode_init.v_addr, src, len);
5457 }
5458
5459 /* Initialization data (4th block) */
5460 if (init_data_size) {
5461 src = &ucode->data[inst_size + data_size + init_size];
5462 len = priv->ucode_init_data.len;
5463 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5464 (int)len);
5465 memcpy(priv->ucode_init_data.v_addr, src, len);
5466 }
5467
5468 /* Bootstrap instructions (5th block) */
5469 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5470 len = priv->ucode_boot.len;
5471 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5472 (int)len);
5473 memcpy(priv->ucode_boot.v_addr, src, len);
5474
5475 /* We have our copies now, allow OS release its copies */
5476 release_firmware(ucode_raw);
5477 return 0;
5478
5479 err_pci_alloc:
5480 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005481 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005482 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005483
5484 err_release:
5485 release_firmware(ucode_raw);
5486
5487 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005488 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005489}
5490
5491
5492/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005493 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005494 *
5495 * Tell initialization uCode where to find runtime uCode.
5496 *
5497 * BSM registers initially contain pointers to initialization uCode.
5498 * We need to replace them to load runtime uCode inst and data,
5499 * and to save runtime data when powering down.
5500 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005501static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005502{
5503 dma_addr_t pinst;
5504 dma_addr_t pdata;
5505 int rc = 0;
5506 unsigned long flags;
5507
5508 /* bits 31:0 for 3945 */
5509 pinst = priv->ucode_code.p_addr;
5510 pdata = priv->ucode_data_backup.p_addr;
5511
5512 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005513 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005514 if (rc) {
5515 spin_unlock_irqrestore(&priv->lock, flags);
5516 return rc;
5517 }
5518
5519 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005520 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5521 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5522 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005523 priv->ucode_data.len);
5524
Tomas Winklera96a27f2008-10-23 23:48:56 -07005525 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005526 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005527 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005528 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5529
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005530 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005531
5532 spin_unlock_irqrestore(&priv->lock, flags);
5533
5534 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5535
5536 return rc;
5537}
5538
5539/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005540 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005541 *
5542 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5543 *
Zhu Yib481de92007-09-25 17:54:57 -07005544 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005545 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005546static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005547{
5548 /* Check alive response for "valid" sign from uCode */
5549 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5550 /* We had an error bringing up the hardware, so take it
5551 * all the way back down so we can try again */
5552 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5553 goto restart;
5554 }
5555
5556 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5557 * This is a paranoid check, because we would not have gotten the
5558 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005559 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005560 /* Runtime instruction load was bad;
5561 * take it all the way back down so we can try again */
5562 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5563 goto restart;
5564 }
5565
5566 /* Send pointers to protocol/runtime uCode image ... init code will
5567 * load and launch runtime uCode, which will send us another "Alive"
5568 * notification. */
5569 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005570 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005571 /* Runtime instruction load won't happen;
5572 * take it all the way back down so we can try again */
5573 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5574 goto restart;
5575 }
5576 return;
5577
5578 restart:
5579 queue_work(priv->workqueue, &priv->restart);
5580}
5581
5582
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005583/* temporary */
5584static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5585 struct sk_buff *skb);
5586
Zhu Yib481de92007-09-25 17:54:57 -07005587/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005588 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005589 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005590 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005591 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005592static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005593{
5594 int rc = 0;
5595 int thermal_spin = 0;
5596 u32 rfkill;
5597
5598 IWL_DEBUG_INFO("Runtime Alive received.\n");
5599
5600 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5601 /* We had an error bringing up the hardware, so take it
5602 * all the way back down so we can try again */
5603 IWL_DEBUG_INFO("Alive failed.\n");
5604 goto restart;
5605 }
5606
5607 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5608 * This is a paranoid check, because we would not have gotten the
5609 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005610 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005611 /* Runtime instruction load was bad;
5612 * take it all the way back down so we can try again */
5613 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5614 goto restart;
5615 }
5616
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005617 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005618
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005619 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005620 if (rc) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005621 IWL_WARNING("Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005622 return;
5623 }
5624
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005625 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005626 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005627 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005628
5629 if (rfkill & 0x1) {
5630 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005631 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005632 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005633 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005634 thermal_spin++;
5635 udelay(10);
5636 }
5637
5638 if (thermal_spin)
5639 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5640 thermal_spin * 10);
5641 } else
5642 set_bit(STATUS_RF_KILL_HW, &priv->status);
5643
Ben Cahill9fbab512007-11-29 11:09:47 +08005644 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005645 set_bit(STATUS_ALIVE, &priv->status);
5646
5647 /* Clear out the uCode error bit if it is set */
5648 clear_bit(STATUS_FW_ERROR, &priv->status);
5649
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005650 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005651 return;
5652
Johannes Berg36d68252008-05-15 12:55:26 +02005653 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005654
5655 priv->active_rate = priv->rates_mask;
5656 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5657
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005658 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005659
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005660 if (iwl3945_is_associated(priv)) {
5661 struct iwl3945_rxon_cmd *active_rxon =
5662 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005663
5664 memcpy(&priv->staging_rxon, &priv->active_rxon,
5665 sizeof(priv->staging_rxon));
5666 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5667 } else {
5668 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005669 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005670 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5671 }
5672
Ben Cahill9fbab512007-11-29 11:09:47 +08005673 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005674 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005675
5676 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005677 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005678
Zhu Yib481de92007-09-25 17:54:57 -07005679 iwl3945_reg_txpower_periodic(priv);
5680
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005681 iwl3945_led_register(priv);
5682
Zhu Yib481de92007-09-25 17:54:57 -07005683 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005684 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005685 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005686
5687 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005688 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005689
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005690 /* reassociate for ADHOC mode */
5691 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5692 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5693 priv->vif);
5694 if (beacon)
5695 iwl3945_mac_beacon_update(priv->hw, beacon);
5696 }
5697
Zhu Yib481de92007-09-25 17:54:57 -07005698 return;
5699
5700 restart:
5701 queue_work(priv->workqueue, &priv->restart);
5702}
5703
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005704static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005705
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005706static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005707{
5708 unsigned long flags;
5709 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5710 struct ieee80211_conf *conf = NULL;
5711
5712 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5713
5714 conf = ieee80211_get_hw_conf(priv->hw);
5715
5716 if (!exit_pending)
5717 set_bit(STATUS_EXIT_PENDING, &priv->status);
5718
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005719 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005720 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005721
5722 /* Unblock any waiting calls */
5723 wake_up_interruptible_all(&priv->wait_command_queue);
5724
Zhu Yib481de92007-09-25 17:54:57 -07005725 /* Wipe out the EXIT_PENDING status bit if we are not actually
5726 * exiting the module */
5727 if (!exit_pending)
5728 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5729
5730 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005731 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005732
5733 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005734 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005735 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005736 spin_unlock_irqrestore(&priv->lock, flags);
5737 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005738
5739 if (priv->mac80211_registered)
5740 ieee80211_stop_queues(priv->hw);
5741
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005742 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005743 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005744 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005745 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5746 STATUS_RF_KILL_HW |
5747 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5748 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005749 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5750 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005751 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005752 STATUS_IN_SUSPEND |
5753 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5754 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005755 goto exit;
5756 }
5757
5758 /* ...otherwise clear out all the status bits but the RF Kill and
5759 * SUSPEND bits and continue taking the NIC down. */
5760 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5761 STATUS_RF_KILL_HW |
5762 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5763 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005764 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5765 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005766 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5767 STATUS_IN_SUSPEND |
5768 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005769 STATUS_FW_ERROR |
5770 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5771 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005772
5773 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005774 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005775 spin_unlock_irqrestore(&priv->lock, flags);
5776
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005777 iwl3945_hw_txq_ctx_stop(priv);
5778 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005779
5780 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005781 if (!iwl3945_grab_nic_access(priv)) {
5782 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005783 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005784 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005785 }
5786 spin_unlock_irqrestore(&priv->lock, flags);
5787
5788 udelay(5);
5789
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005790 iwl3945_hw_nic_stop_master(priv);
5791 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5792 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005793
5794 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005795 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005796
5797 if (priv->ibss_beacon)
5798 dev_kfree_skb(priv->ibss_beacon);
5799 priv->ibss_beacon = NULL;
5800
5801 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005802 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005803}
5804
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005805static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005806{
5807 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005808 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005809 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005810
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005811 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005812}
5813
5814#define MAX_HW_RESTARTS 5
5815
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005816static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005817{
5818 int rc, i;
5819
5820 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5821 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5822 return -EIO;
5823 }
5824
5825 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5826 IWL_WARNING("Radio disabled by SW RF kill (module "
5827 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005828 return -ENODEV;
5829 }
5830
Reinette Chatree903fbd2008-01-30 22:05:15 -08005831 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005832 IWL_ERROR("ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005833 return -EIO;
5834 }
5835
Zhu Yie655b9f2008-01-24 02:19:38 -08005836 /* If platform's RF_KILL switch is NOT set to KILL */
5837 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
5838 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5839 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5840 else {
5841 set_bit(STATUS_RF_KILL_HW, &priv->status);
5842 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5843 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5844 return -ENODEV;
5845 }
Zhu Yib481de92007-09-25 17:54:57 -07005846 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005847
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005848 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005849
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005850 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005851 if (rc) {
5852 IWL_ERROR("Unable to int nic\n");
5853 return rc;
5854 }
5855
5856 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005857 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5858 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005859 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5860
5861 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005862 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
5863 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005864
5865 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005866 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5867 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005868
5869 /* Copy original ucode data image from disk into backup cache.
5870 * This will be used to initialize the on-board processor's
5871 * data SRAM for a clean start when the runtime program first loads. */
5872 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08005873 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005874
Zhu Yie655b9f2008-01-24 02:19:38 -08005875 /* We return success when we resume from suspend and rf_kill is on. */
5876 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5877 return 0;
5878
Zhu Yib481de92007-09-25 17:54:57 -07005879 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5880
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005881 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005882
5883 /* load bootstrap state machine,
5884 * load bootstrap program into processor's memory,
5885 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005886 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005887
5888 if (rc) {
5889 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5890 continue;
5891 }
5892
5893 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005894 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005895
Zhu Yib481de92007-09-25 17:54:57 -07005896 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5897
5898 return 0;
5899 }
5900
5901 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005902 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005903 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005904
5905 /* tried to restart and config the device for as long as our
5906 * patience could withstand */
5907 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5908 return -EIO;
5909}
5910
5911
5912/*****************************************************************************
5913 *
5914 * Workqueue callbacks
5915 *
5916 *****************************************************************************/
5917
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005918static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005919{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005920 struct iwl3945_priv *priv =
5921 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005922
5923 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5924 return;
5925
5926 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005927 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005928 mutex_unlock(&priv->mutex);
5929}
5930
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005931static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005932{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005933 struct iwl3945_priv *priv =
5934 container_of(data, struct iwl3945_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005935
5936 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5937 return;
5938
5939 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005940 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005941 mutex_unlock(&priv->mutex);
5942}
5943
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005944static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005945{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005946 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005947
5948 wake_up_interruptible(&priv->wait_command_queue);
5949
5950 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5951 return;
5952
5953 mutex_lock(&priv->mutex);
5954
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005955 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005956 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5957 "HW and/or SW RF Kill no longer active, restarting "
5958 "device\n");
5959 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5960 queue_work(priv->workqueue, &priv->restart);
5961 } else {
5962
5963 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5964 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5965 "disabled by SW switch\n");
5966 else
5967 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
5968 "Kill switch must be turned off for "
5969 "wireless networking to work.\n");
5970 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005971
Zhu Yib481de92007-09-25 17:54:57 -07005972 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005973 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005974}
5975
5976#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5977
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005978static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005979{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005980 struct iwl3945_priv *priv =
5981 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07005982
5983 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5984 return;
5985
5986 mutex_lock(&priv->mutex);
5987 if (test_bit(STATUS_SCANNING, &priv->status) ||
5988 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5989 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
5990 "Scan completion watchdog resetting adapter (%dms)\n",
5991 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005992
Zhu Yib481de92007-09-25 17:54:57 -07005993 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005994 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005995 }
5996 mutex_unlock(&priv->mutex);
5997}
5998
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005999static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006000{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006001 struct iwl3945_priv *priv =
6002 container_of(data, struct iwl3945_priv, request_scan);
6003 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006004 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006005 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006006 .meta.flags = CMD_SIZE_HUGE,
6007 };
6008 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006009 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006010 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006011 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01006012 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04006013 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07006014
6015 conf = ieee80211_get_hw_conf(priv->hw);
6016
6017 mutex_lock(&priv->mutex);
6018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006019 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006020 IWL_WARNING("request scan called when driver not ready.\n");
6021 goto done;
6022 }
6023
Tomas Winklera96a27f2008-10-23 23:48:56 -07006024 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07006025 * was given the chance to run... */
6026 if (!test_bit(STATUS_SCANNING, &priv->status))
6027 goto done;
6028
6029 /* This should never be called or scheduled if there is currently
6030 * a scan active in the hardware. */
6031 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6032 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6033 "Ignoring second request.\n");
6034 rc = -EIO;
6035 goto done;
6036 }
6037
6038 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6039 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6040 goto done;
6041 }
6042
6043 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6044 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6045 goto done;
6046 }
6047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006048 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006049 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6050 goto done;
6051 }
6052
6053 if (!test_bit(STATUS_READY, &priv->status)) {
6054 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6055 goto done;
6056 }
6057
6058 if (!priv->scan_bands) {
6059 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6060 goto done;
6061 }
6062
6063 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006064 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006065 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6066 if (!priv->scan) {
6067 rc = -ENOMEM;
6068 goto done;
6069 }
6070 }
6071 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006072 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006073
6074 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6075 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6076
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006077 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006078 u16 interval = 0;
6079 u32 extra;
6080 u32 suspend_time = 100;
6081 u32 scan_suspend_time = 100;
6082 unsigned long flags;
6083
6084 IWL_DEBUG_INFO("Scanning while associated...\n");
6085
6086 spin_lock_irqsave(&priv->lock, flags);
6087 interval = priv->beacon_int;
6088 spin_unlock_irqrestore(&priv->lock, flags);
6089
6090 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006091 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006092 if (!interval)
6093 interval = suspend_time;
6094 /*
6095 * suspend time format:
6096 * 0-19: beacon interval in usec (time before exec.)
6097 * 20-23: 0
6098 * 24-31: number of beacons (suspend between channels)
6099 */
6100
6101 extra = (suspend_time / interval) << 24;
6102 scan_suspend_time = 0xFF0FFFFF &
6103 (extra | ((suspend_time % interval) * 1024));
6104
6105 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6106 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6107 scan_suspend_time, interval);
6108 }
6109
6110 /* We should add the ability for user to lock to PASSIVE ONLY */
6111 if (priv->one_direct_scan) {
6112 IWL_DEBUG_SCAN
6113 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006114 print_ssid(ssid, priv->direct_ssid,
6115 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006116 scan->direct_scan[0].id = WLAN_EID_SSID;
6117 scan->direct_scan[0].len = priv->direct_ssid_len;
6118 memcpy(scan->direct_scan[0].ssid,
6119 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006120 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006121 } else
Bill Moss786b4552008-04-17 16:03:40 -07006122 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006123
6124 /* We don't build a direct scan probe request; the uCode will do
6125 * that based on the direct_mask added to each channel entry */
6126 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006127 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01006128 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07006129 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6130 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6131 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6132
6133 /* flags + rate selection */
6134
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006135 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006136 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6137 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6138 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006139 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006140 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006141 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6142 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006143 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006144 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006145 IWL_WARNING("Invalid scan band count\n");
6146 goto done;
6147 }
6148
6149 /* select Rx antennas */
6150 scan->flags |= iwl3945_get_antenna_flags(priv);
6151
Johannes Berg05c914f2008-09-11 00:01:58 +02006152 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07006153 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6154
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006155 scan->channel_count =
6156 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
6157 n_probes,
6158 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07006159
Reinette Chatre14b54332008-11-04 12:21:35 -08006160 if (scan->channel_count == 0) {
6161 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
6162 goto done;
6163 }
6164
Zhu Yib481de92007-09-25 17:54:57 -07006165 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006166 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006167 cmd.data = scan;
6168 scan->len = cpu_to_le16(cmd.len);
6169
6170 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006171 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006172 if (rc)
6173 goto done;
6174
6175 queue_delayed_work(priv->workqueue, &priv->scan_check,
6176 IWL_SCAN_CHECK_WATCHDOG);
6177
6178 mutex_unlock(&priv->mutex);
6179 return;
6180
6181 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08006182 /* can not perform scan make sure we clear scanning
6183 * bits from status so next scan request can be performed.
6184 * if we dont clear scanning status bit here all next scan
6185 * will fail
6186 */
6187 clear_bit(STATUS_SCAN_HW, &priv->status);
6188 clear_bit(STATUS_SCANNING, &priv->status);
6189
Ian Schram01ebd062007-10-25 17:15:22 +08006190 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006191 queue_work(priv->workqueue, &priv->scan_completed);
6192 mutex_unlock(&priv->mutex);
6193}
6194
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006195static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006196{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006197 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006198
6199 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6200 return;
6201
6202 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006203 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006204 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006205 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006206}
6207
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006208static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006209{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006210 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006211
6212 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6213 return;
6214
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006215 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006216 queue_work(priv->workqueue, &priv->up);
6217}
6218
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006219static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006220{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006221 struct iwl3945_priv *priv =
6222 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006223
6224 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6225 return;
6226
6227 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006228 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006229 mutex_unlock(&priv->mutex);
6230}
6231
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006232#define IWL_DELAY_NEXT_SCAN (HZ*2)
6233
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006234static void iwl3945_post_associate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006235{
Zhu Yib481de92007-09-25 17:54:57 -07006236 int rc = 0;
6237 struct ieee80211_conf *conf = NULL;
6238
Johannes Berg05c914f2008-09-11 00:01:58 +02006239 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006240 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07006241 return;
6242 }
6243
6244
Johannes Berge1749612008-10-27 15:59:26 -07006245 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
6246 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07006247
6248 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6249 return;
6250
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006251 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006252 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006253
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006254 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006255
Zhu Yib481de92007-09-25 17:54:57 -07006256 conf = ieee80211_get_hw_conf(priv->hw);
6257
6258 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006259 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006260
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006261 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6262 iwl3945_setup_rxon_timing(priv);
6263 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006264 sizeof(priv->rxon_timing), &priv->rxon_timing);
6265 if (rc)
6266 IWL_WARNING("REPLY_RXON_TIMING failed - "
6267 "Attempting to continue.\n");
6268
6269 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6270
6271 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6272
6273 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6274 priv->assoc_id, priv->beacon_int);
6275
6276 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6277 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6278 else
6279 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6280
6281 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6282 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6283 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6284 else
6285 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6286
Johannes Berg05c914f2008-09-11 00:01:58 +02006287 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006288 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6289
6290 }
6291
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006292 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006293
6294 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02006295 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006296 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006297 break;
6298
Johannes Berg05c914f2008-09-11 00:01:58 +02006299 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07006300
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08006301 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006302 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006303 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006304 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006305 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6306 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006307 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6308 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006309
6310 break;
6311
6312 default:
6313 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006314 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006315 break;
6316 }
6317
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006318 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006319
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006320 /* we have just associated, don't start scan too early */
6321 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006322}
6323
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006324static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006325{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006326 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006327
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006328 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006329 return;
6330
6331 mutex_lock(&priv->mutex);
6332
6333 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006334 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006335
6336 mutex_unlock(&priv->mutex);
6337}
6338
Johannes Berge8975582008-10-09 12:18:51 +02006339static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006340
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006341static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006342{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006343 struct iwl3945_priv *priv =
6344 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006345
6346 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6347
6348 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6349 return;
6350
Zhu Yia0646472007-12-20 14:10:01 +08006351 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006352 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006353
Zhu Yib481de92007-09-25 17:54:57 -07006354 ieee80211_scan_completed(priv->hw);
6355
6356 /* Since setting the TXPOWER may have been deferred while
6357 * performing the scan, fire one off */
6358 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006359 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006360 mutex_unlock(&priv->mutex);
6361}
6362
6363/*****************************************************************************
6364 *
6365 * mac80211 entry point functions
6366 *
6367 *****************************************************************************/
6368
Zhu Yi5a66926a2008-01-14 17:46:18 -08006369#define UCODE_READY_TIMEOUT (2 * HZ)
6370
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006371static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006372{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006373 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006374 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006375
6376 IWL_DEBUG_MAC80211("enter\n");
6377
Zhu Yi5a66926a2008-01-14 17:46:18 -08006378 if (pci_enable_device(priv->pci_dev)) {
6379 IWL_ERROR("Fail to pci_enable_device\n");
6380 return -ENODEV;
6381 }
6382 pci_restore_state(priv->pci_dev);
6383 pci_enable_msi(priv->pci_dev);
6384
6385 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6386 DRV_NAME, priv);
6387 if (ret) {
6388 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6389 goto out_disable_msi;
6390 }
6391
Zhu Yib481de92007-09-25 17:54:57 -07006392 /* we should be verifying the device is ready to be opened */
6393 mutex_lock(&priv->mutex);
6394
Zhu Yi5a66926a2008-01-14 17:46:18 -08006395 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6396 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6397 * ucode filename and max sizes are card-specific. */
6398
6399 if (!priv->ucode_code.len) {
6400 ret = iwl3945_read_ucode(priv);
6401 if (ret) {
6402 IWL_ERROR("Could not read microcode: %d\n", ret);
6403 mutex_unlock(&priv->mutex);
6404 goto out_release_irq;
6405 }
6406 }
6407
Zhu Yie655b9f2008-01-24 02:19:38 -08006408 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006409
Zhu Yib481de92007-09-25 17:54:57 -07006410 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006411
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006412 iwl3945_rfkill_set_hw_state(priv);
6413
Zhu Yie655b9f2008-01-24 02:19:38 -08006414 if (ret)
6415 goto out_release_irq;
6416
6417 IWL_DEBUG_INFO("Start UP work.\n");
6418
6419 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6420 return 0;
6421
Zhu Yi5a66926a2008-01-14 17:46:18 -08006422 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6423 * mac80211 will not be run successfully. */
6424 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6425 test_bit(STATUS_READY, &priv->status),
6426 UCODE_READY_TIMEOUT);
6427 if (!ret) {
6428 if (!test_bit(STATUS_READY, &priv->status)) {
6429 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6430 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6431 ret = -ETIMEDOUT;
6432 goto out_release_irq;
6433 }
6434 }
6435
Zhu Yie655b9f2008-01-24 02:19:38 -08006436 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006437 IWL_DEBUG_MAC80211("leave\n");
6438 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006439
6440out_release_irq:
6441 free_irq(priv->pci_dev->irq, priv);
6442out_disable_msi:
6443 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006444 pci_disable_device(priv->pci_dev);
6445 priv->is_open = 0;
6446 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08006447 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006448}
6449
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006450static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006451{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006452 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006453
6454 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006455
Zhu Yie655b9f2008-01-24 02:19:38 -08006456 if (!priv->is_open) {
6457 IWL_DEBUG_MAC80211("leave - skip\n");
6458 return;
6459 }
6460
Zhu Yib481de92007-09-25 17:54:57 -07006461 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006462
6463 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006464 /* stop mac, cancel any scan request and clear
6465 * RXON_FILTER_ASSOC_MSK BIT
6466 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08006467 mutex_lock(&priv->mutex);
6468 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006469 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006470 }
6471
Zhu Yi5a66926a2008-01-14 17:46:18 -08006472 iwl3945_down(priv);
6473
6474 flush_workqueue(priv->workqueue);
6475 free_irq(priv->pci_dev->irq, priv);
6476 pci_disable_msi(priv->pci_dev);
6477 pci_save_state(priv->pci_dev);
6478 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006479
Zhu Yib481de92007-09-25 17:54:57 -07006480 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006481}
6482
Johannes Berge039fa42008-05-15 12:55:29 +02006483static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006484{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006485 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006486
6487 IWL_DEBUG_MAC80211("enter\n");
6488
Zhu Yib481de92007-09-25 17:54:57 -07006489 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006490 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006491
Johannes Berge039fa42008-05-15 12:55:29 +02006492 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006493 dev_kfree_skb_any(skb);
6494
6495 IWL_DEBUG_MAC80211("leave\n");
6496 return 0;
6497}
6498
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006499static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006500 struct ieee80211_if_init_conf *conf)
6501{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006502 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006503 unsigned long flags;
6504
Johannes Berg32bfd352007-12-19 01:31:26 +01006505 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006506
Johannes Berg32bfd352007-12-19 01:31:26 +01006507 if (priv->vif) {
6508 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006509 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006510 }
6511
6512 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006513 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006514 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006515
6516 spin_unlock_irqrestore(&priv->lock, flags);
6517
6518 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006519
6520 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006521 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006522 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6523 }
6524
Zhu Yi5a66926a2008-01-14 17:46:18 -08006525 if (iwl3945_is_ready(priv))
6526 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006527
Zhu Yib481de92007-09-25 17:54:57 -07006528 mutex_unlock(&priv->mutex);
6529
Zhu Yi5a66926a2008-01-14 17:46:18 -08006530 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006531 return 0;
6532}
6533
6534/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006535 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006536 *
6537 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6538 * be set inappropriately and the driver currently sets the hardware up to
6539 * use it whenever needed.
6540 */
Johannes Berge8975582008-10-09 12:18:51 +02006541static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006542{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006543 struct iwl3945_priv *priv = hw->priv;
6544 const struct iwl3945_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006545 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006546 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006547 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006548
6549 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006550 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006551
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006552 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006553 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006554 ret = -EIO;
6555 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006556 }
6557
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006558 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006559 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006560 IWL_DEBUG_MAC80211("leave - scanning\n");
6561 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006562 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006563 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006564 }
6565
6566 spin_lock_irqsave(&priv->lock, flags);
6567
Johannes Berg8318d782008-01-24 19:38:38 +01006568 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6569 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006570 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006571 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006572 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006573 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6574 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006575 ret = -EINVAL;
6576 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006577 }
6578
Johannes Berg8318d782008-01-24 19:38:38 +01006579 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006580
Johannes Berg8318d782008-01-24 19:38:38 +01006581 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006582
6583 /* The list of supported rates and rate mask can be different
6584 * for each phymode; since the phymode may have changed, reset
6585 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006586 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006587
6588 spin_unlock_irqrestore(&priv->lock, flags);
6589
6590#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6591 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006592 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006593 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006594 }
6595#endif
6596
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006597 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006598
6599 if (!conf->radio_enabled) {
6600 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006601 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006602 }
6603
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006604 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006605 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006606 ret = -EIO;
6607 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006608 }
6609
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006610 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006611
6612 if (memcmp(&priv->active_rxon,
6613 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006614 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006615 else
6616 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6617
6618 IWL_DEBUG_MAC80211("leave\n");
6619
Zhu Yi76bb77e2007-11-22 10:53:22 +08006620out:
Zhu Yia0646472007-12-20 14:10:01 +08006621 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006622 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006623 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006624}
6625
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006626static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006627{
6628 int rc = 0;
6629
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006630 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006631 return;
6632
6633 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006634 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006635
6636 /* RXON - unassoc (to set timing command) */
6637 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006638 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006639
6640 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006641 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6642 iwl3945_setup_rxon_timing(priv);
6643 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006644 sizeof(priv->rxon_timing), &priv->rxon_timing);
6645 if (rc)
6646 IWL_WARNING("REPLY_RXON_TIMING failed - "
6647 "Attempting to continue.\n");
6648
6649 /* FIXME: what should be the assoc_id for AP? */
6650 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6651 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6652 priv->staging_rxon.flags |=
6653 RXON_FLG_SHORT_PREAMBLE_MSK;
6654 else
6655 priv->staging_rxon.flags &=
6656 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6657
6658 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6659 if (priv->assoc_capability &
6660 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6661 priv->staging_rxon.flags |=
6662 RXON_FLG_SHORT_SLOT_MSK;
6663 else
6664 priv->staging_rxon.flags &=
6665 ~RXON_FLG_SHORT_SLOT_MSK;
6666
Johannes Berg05c914f2008-09-11 00:01:58 +02006667 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006668 priv->staging_rxon.flags &=
6669 ~RXON_FLG_SHORT_SLOT_MSK;
6670 }
6671 /* restore RXON assoc */
6672 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006673 iwl3945_commit_rxon(priv);
6674 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006675 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006676 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006677
6678 /* FIXME - we need to add code here to detect a totally new
6679 * configuration, reset the AP, unassoc, rxon timing, assoc,
6680 * clear sta table, add BCAST sta... */
6681}
6682
Johannes Berg32bfd352007-12-19 01:31:26 +01006683static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6684 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006685 struct ieee80211_if_conf *conf)
6686{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006687 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006688 int rc;
6689
6690 if (conf == NULL)
6691 return -EIO;
6692
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006693 if (priv->vif != vif) {
6694 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006695 return 0;
6696 }
6697
Johannes Berg9d139c82008-07-09 14:40:37 +02006698 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006699 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006700 conf->changed & IEEE80211_IFCC_BEACON) {
6701 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6702 if (!beacon)
6703 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006704 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006705 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006706 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006707 if (rc)
6708 return rc;
6709 }
6710
Zhu Yi5a66926a2008-01-14 17:46:18 -08006711 if (!iwl3945_is_alive(priv))
6712 return -EAGAIN;
6713
Zhu Yib481de92007-09-25 17:54:57 -07006714 mutex_lock(&priv->mutex);
6715
Zhu Yib481de92007-09-25 17:54:57 -07006716 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006717 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006718
Johannes Berg4150c572007-09-17 01:29:23 -04006719/*
6720 * very dubious code was here; the probe filtering flag is never set:
6721 *
Zhu Yib481de92007-09-25 17:54:57 -07006722 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6723 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006724 */
Zhu Yib481de92007-09-25 17:54:57 -07006725
Johannes Berg05c914f2008-09-11 00:01:58 +02006726 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006727 if (!conf->bssid) {
6728 conf->bssid = priv->mac_addr;
6729 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006730 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6731 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006732 }
6733 if (priv->ibss_beacon)
6734 dev_kfree_skb(priv->ibss_beacon);
6735
Johannes Berg9d139c82008-07-09 14:40:37 +02006736 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006737 }
6738
Mohamed Abbasfde35712007-11-29 11:10:15 +08006739 if (iwl3945_is_rfkill(priv))
6740 goto done;
6741
Zhu Yib481de92007-09-25 17:54:57 -07006742 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6743 !is_multicast_ether_addr(conf->bssid)) {
6744 /* If there is currently a HW scan going on in the background
6745 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006746 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006747 IWL_WARNING("Aborted scan still in progress "
6748 "after 100ms\n");
6749 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6750 mutex_unlock(&priv->mutex);
6751 return -EAGAIN;
6752 }
6753 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6754
6755 /* TODO: Audit driver for usage of these members and see
6756 * if mac80211 deprecates them (priv->bssid looks like it
6757 * shouldn't be there, but I haven't scanned the IBSS code
6758 * to verify) - jpk */
6759 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6760
Johannes Berg05c914f2008-09-11 00:01:58 +02006761 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006762 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006763 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006764 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006765 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006766 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08006767 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006768 }
6769
6770 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006771 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006772 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006773 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006774 }
6775
Mohamed Abbasfde35712007-11-29 11:10:15 +08006776 done:
Zhu Yib481de92007-09-25 17:54:57 -07006777 IWL_DEBUG_MAC80211("leave\n");
6778 mutex_unlock(&priv->mutex);
6779
6780 return 0;
6781}
6782
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006783static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006784 unsigned int changed_flags,
6785 unsigned int *total_flags,
6786 int mc_count, struct dev_addr_list *mc_list)
6787{
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006788 struct iwl3945_priv *priv = hw->priv;
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006789 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006790
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006791 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6792 changed_flags, *total_flags);
6793
6794 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6795 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6796 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6797 else
6798 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006799 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006800 if (changed_flags & FIF_ALLMULTI) {
6801 if (*total_flags & FIF_ALLMULTI)
6802 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6803 else
6804 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6805 }
6806 if (changed_flags & FIF_CONTROL) {
6807 if (*total_flags & FIF_CONTROL)
6808 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6809 else
6810 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6811 }
6812 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6813 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6814 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6815 else
6816 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6817 }
6818
6819 /* We avoid iwl_commit_rxon here to commit the new filter flags
6820 * since mac80211 will call ieee80211_hw_config immediately.
6821 * (mc_list is not supported at this time). Otherwise, we need to
6822 * queue a background iwl_commit_rxon work.
6823 */
6824
6825 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006826 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006827}
6828
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006829static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006830 struct ieee80211_if_init_conf *conf)
6831{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006832 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006833
6834 IWL_DEBUG_MAC80211("enter\n");
6835
6836 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006837
Mohamed Abbasfde35712007-11-29 11:10:15 +08006838 if (iwl3945_is_ready_rf(priv)) {
6839 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006840 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6841 iwl3945_commit_rxon(priv);
6842 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006843 if (priv->vif == conf->vif) {
6844 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006845 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006846 }
6847 mutex_unlock(&priv->mutex);
6848
6849 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006850}
6851
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006852#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6853
6854static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6855 struct ieee80211_vif *vif,
6856 struct ieee80211_bss_conf *bss_conf,
6857 u32 changes)
6858{
6859 struct iwl3945_priv *priv = hw->priv;
6860
6861 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6862
6863 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6864 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6865 bss_conf->use_short_preamble);
6866 if (bss_conf->use_short_preamble)
6867 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6868 else
6869 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6870 }
6871
6872 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6873 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6874 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6875 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6876 else
6877 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6878 }
6879
6880 if (changes & BSS_CHANGED_ASSOC) {
6881 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6882 /* This should never happen as this function should
6883 * never be called from interrupt context. */
6884 if (WARN_ON_ONCE(in_interrupt()))
6885 return;
6886 if (bss_conf->assoc) {
6887 priv->assoc_id = bss_conf->aid;
6888 priv->beacon_int = bss_conf->beacon_int;
6889 priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF;
6890 priv->timestamp1 = (bss_conf->timestamp >> 32) &
6891 0xFFFFFFFF;
6892 priv->assoc_capability = bss_conf->assoc_capability;
6893 priv->next_scan_jiffies = jiffies +
6894 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6895 mutex_lock(&priv->mutex);
6896 iwl3945_post_associate(priv);
6897 mutex_unlock(&priv->mutex);
6898 } else {
6899 priv->assoc_id = 0;
6900 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6901 }
6902 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6903 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6904 iwl3945_send_rxon_assoc(priv);
6905 }
6906
6907}
6908
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006909static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006910{
6911 int rc = 0;
6912 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006913 struct iwl3945_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006914 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006915
6916 IWL_DEBUG_MAC80211("enter\n");
6917
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006918 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006919 spin_lock_irqsave(&priv->lock, flags);
6920
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006921 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006922 rc = -EIO;
6923 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6924 goto out_unlock;
6925 }
6926
Johannes Berg05c914f2008-09-11 00:01:58 +02006927 if (priv->iw_mode == NL80211_IFTYPE_AP) { /* APs don't scan */
Zhu Yib481de92007-09-25 17:54:57 -07006928 rc = -EIO;
6929 IWL_ERROR("ERROR: APs don't scan\n");
6930 goto out_unlock;
6931 }
6932
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006933 /* we don't schedule scan within next_scan_jiffies period */
6934 if (priv->next_scan_jiffies &&
6935 time_after(priv->next_scan_jiffies, jiffies)) {
6936 rc = -EAGAIN;
6937 goto out_unlock;
6938 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006939 /* if we just finished scan ask for delay for a broadcast scan */
6940 if ((len == 0) && priv->last_scan_jiffies &&
6941 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6942 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006943 rc = -EAGAIN;
6944 goto out_unlock;
6945 }
6946 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006947 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006948 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006949
6950 priv->one_direct_scan = 1;
6951 priv->direct_ssid_len = (u8)
6952 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6953 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006954 } else
6955 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006956
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006957 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006958
6959 IWL_DEBUG_MAC80211("leave\n");
6960
6961out_unlock:
6962 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006963 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006964
6965 return rc;
6966}
6967
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006968static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07006969 const u8 *local_addr, const u8 *addr,
6970 struct ieee80211_key_conf *key)
6971{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006972 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006973 int rc = 0;
6974 u8 sta_id;
6975
6976 IWL_DEBUG_MAC80211("enter\n");
6977
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006978 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07006979 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
6980 return -EOPNOTSUPP;
6981 }
6982
6983 if (is_zero_ether_addr(addr))
6984 /* only support pairwise keys */
6985 return -EOPNOTSUPP;
6986
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006987 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07006988 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07006989 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
6990 addr);
Zhu Yib481de92007-09-25 17:54:57 -07006991 return -EINVAL;
6992 }
6993
6994 mutex_lock(&priv->mutex);
6995
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006996 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006997
Zhu Yib481de92007-09-25 17:54:57 -07006998 switch (cmd) {
6999 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007000 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007001 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007002 iwl3945_set_rxon_hwcrypto(priv, 1);
7003 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007004 key->hw_key_idx = sta_id;
7005 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7006 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7007 }
7008 break;
7009 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007010 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007011 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007012 iwl3945_set_rxon_hwcrypto(priv, 0);
7013 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007014 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7015 }
7016 break;
7017 default:
7018 rc = -EINVAL;
7019 }
7020
7021 IWL_DEBUG_MAC80211("leave\n");
7022 mutex_unlock(&priv->mutex);
7023
7024 return rc;
7025}
7026
Johannes Berge100bb62008-04-30 18:51:21 +02007027static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07007028 const struct ieee80211_tx_queue_params *params)
7029{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007030 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007031 unsigned long flags;
7032 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007033
7034 IWL_DEBUG_MAC80211("enter\n");
7035
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007036 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007037 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7038 return -EIO;
7039 }
7040
7041 if (queue >= AC_NUM) {
7042 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7043 return 0;
7044 }
7045
Zhu Yib481de92007-09-25 17:54:57 -07007046 if (!priv->qos_data.qos_enable) {
7047 priv->qos_data.qos_active = 0;
7048 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
7049 return 0;
7050 }
7051 q = AC_NUM - 1 - queue;
7052
7053 spin_lock_irqsave(&priv->lock, flags);
7054
7055 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7056 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7057 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7058 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01007059 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007060
7061 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7062 priv->qos_data.qos_active = 1;
7063
7064 spin_unlock_irqrestore(&priv->lock, flags);
7065
7066 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02007067 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007068 iwl3945_activate_qos(priv, 1);
7069 else if (priv->assoc_id && iwl3945_is_associated(priv))
7070 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007071
7072 mutex_unlock(&priv->mutex);
7073
Zhu Yib481de92007-09-25 17:54:57 -07007074 IWL_DEBUG_MAC80211("leave\n");
7075 return 0;
7076}
7077
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007078static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007079 struct ieee80211_tx_queue_stats *stats)
7080{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007081 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007082 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007083 struct iwl3945_tx_queue *txq;
7084 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007085 unsigned long flags;
7086
7087 IWL_DEBUG_MAC80211("enter\n");
7088
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007089 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007090 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7091 return -EIO;
7092 }
7093
7094 spin_lock_irqsave(&priv->lock, flags);
7095
7096 for (i = 0; i < AC_NUM; i++) {
7097 txq = &priv->txq[i];
7098 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007099 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007100
Johannes Berg57ffc582008-04-29 17:18:59 +02007101 stats[i].len = q->n_window - avail;
7102 stats[i].limit = q->n_window - q->high_mark;
7103 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07007104
7105 }
7106 spin_unlock_irqrestore(&priv->lock, flags);
7107
7108 IWL_DEBUG_MAC80211("leave\n");
7109
7110 return 0;
7111}
7112
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007113static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007114 struct ieee80211_low_level_stats *stats)
7115{
7116 IWL_DEBUG_MAC80211("enter\n");
7117 IWL_DEBUG_MAC80211("leave\n");
7118
7119 return 0;
7120}
7121
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007122static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007123{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007124 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007125 unsigned long flags;
7126
7127 mutex_lock(&priv->mutex);
7128 IWL_DEBUG_MAC80211("enter\n");
7129
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007130 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007131
Zhu Yib481de92007-09-25 17:54:57 -07007132 spin_lock_irqsave(&priv->lock, flags);
7133 priv->assoc_id = 0;
7134 priv->assoc_capability = 0;
7135 priv->call_post_assoc_from_beacon = 0;
7136
7137 /* new association get rid of ibss beacon skb */
7138 if (priv->ibss_beacon)
7139 dev_kfree_skb(priv->ibss_beacon);
7140
7141 priv->ibss_beacon = NULL;
7142
7143 priv->beacon_int = priv->hw->conf.beacon_int;
7144 priv->timestamp1 = 0;
7145 priv->timestamp0 = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02007146 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07007147 priv->beacon_int = 0;
7148
7149 spin_unlock_irqrestore(&priv->lock, flags);
7150
Mohamed Abbasfde35712007-11-29 11:10:15 +08007151 if (!iwl3945_is_ready_rf(priv)) {
7152 IWL_DEBUG_MAC80211("leave - not ready\n");
7153 mutex_unlock(&priv->mutex);
7154 return;
7155 }
7156
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007157 /* we are restarting association process
7158 * clear RXON_FILTER_ASSOC_MSK bit
7159 */
Johannes Berg05c914f2008-09-11 00:01:58 +02007160 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007161 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007162 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007163 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007164 }
7165
Zhu Yib481de92007-09-25 17:54:57 -07007166 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02007167 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007168
Zhu Yib481de92007-09-25 17:54:57 -07007169 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7170 mutex_unlock(&priv->mutex);
7171 return;
7172 }
7173
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007174 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007175
7176 mutex_unlock(&priv->mutex);
7177
7178 IWL_DEBUG_MAC80211("leave\n");
7179
7180}
7181
Johannes Berge039fa42008-05-15 12:55:29 +02007182static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07007183{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007184 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007185 unsigned long flags;
7186
Zhu Yib481de92007-09-25 17:54:57 -07007187 IWL_DEBUG_MAC80211("enter\n");
7188
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007189 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007190 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07007191 return -EIO;
7192 }
7193
Johannes Berg05c914f2008-09-11 00:01:58 +02007194 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07007195 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07007196 return -EIO;
7197 }
7198
7199 spin_lock_irqsave(&priv->lock, flags);
7200
7201 if (priv->ibss_beacon)
7202 dev_kfree_skb(priv->ibss_beacon);
7203
7204 priv->ibss_beacon = skb;
7205
7206 priv->assoc_id = 0;
7207
7208 IWL_DEBUG_MAC80211("leave\n");
7209 spin_unlock_irqrestore(&priv->lock, flags);
7210
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007211 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007212
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08007213 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007214
Zhu Yib481de92007-09-25 17:54:57 -07007215
7216 return 0;
7217}
7218
7219/*****************************************************************************
7220 *
7221 * sysfs attributes
7222 *
7223 *****************************************************************************/
7224
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007225#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007226
7227/*
7228 * The following adds a new attribute to the sysfs representation
7229 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7230 * used for controlling the debug level.
7231 *
7232 * See the level definitions in iwl for details.
7233 */
7234
7235static ssize_t show_debug_level(struct device_driver *d, char *buf)
7236{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007237 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007238}
7239static ssize_t store_debug_level(struct device_driver *d,
7240 const char *buf, size_t count)
7241{
7242 char *p = (char *)buf;
7243 u32 val;
7244
7245 val = simple_strtoul(p, &p, 0);
7246 if (p == buf)
7247 printk(KERN_INFO DRV_NAME
7248 ": %s is not in hex or decimal form.\n", buf);
7249 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007250 iwl3945_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007251
7252 return strnlen(buf, count);
7253}
7254
7255static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7256 show_debug_level, store_debug_level);
7257
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007258#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007259
Zhu Yib481de92007-09-25 17:54:57 -07007260static ssize_t show_temperature(struct device *d,
7261 struct device_attribute *attr, char *buf)
7262{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007263 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007264
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007265 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007266 return -EAGAIN;
7267
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007268 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007269}
7270
7271static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7272
Zhu Yib481de92007-09-25 17:54:57 -07007273static ssize_t show_tx_power(struct device *d,
7274 struct device_attribute *attr, char *buf)
7275{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007276 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007277 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7278}
7279
7280static ssize_t store_tx_power(struct device *d,
7281 struct device_attribute *attr,
7282 const char *buf, size_t count)
7283{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007284 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007285 char *p = (char *)buf;
7286 u32 val;
7287
7288 val = simple_strtoul(p, &p, 10);
7289 if (p == buf)
7290 printk(KERN_INFO DRV_NAME
7291 ": %s is not in decimal form.\n", buf);
7292 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007293 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007294
7295 return count;
7296}
7297
7298static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7299
7300static ssize_t show_flags(struct device *d,
7301 struct device_attribute *attr, char *buf)
7302{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007303 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007304
7305 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7306}
7307
7308static ssize_t store_flags(struct device *d,
7309 struct device_attribute *attr,
7310 const char *buf, size_t count)
7311{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007312 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007313 u32 flags = simple_strtoul(buf, NULL, 0);
7314
7315 mutex_lock(&priv->mutex);
7316 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7317 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007318 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007319 IWL_WARNING("Could not cancel scan.\n");
7320 else {
7321 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7322 flags);
7323 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007324 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007325 }
7326 }
7327 mutex_unlock(&priv->mutex);
7328
7329 return count;
7330}
7331
7332static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7333
7334static ssize_t show_filter_flags(struct device *d,
7335 struct device_attribute *attr, char *buf)
7336{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007337 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007338
7339 return sprintf(buf, "0x%04X\n",
7340 le32_to_cpu(priv->active_rxon.filter_flags));
7341}
7342
7343static ssize_t store_filter_flags(struct device *d,
7344 struct device_attribute *attr,
7345 const char *buf, size_t count)
7346{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007347 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007348 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7349
7350 mutex_lock(&priv->mutex);
7351 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7352 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007353 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007354 IWL_WARNING("Could not cancel scan.\n");
7355 else {
7356 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7357 "0x%04X\n", filter_flags);
7358 priv->staging_rxon.filter_flags =
7359 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007360 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007361 }
7362 }
7363 mutex_unlock(&priv->mutex);
7364
7365 return count;
7366}
7367
7368static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7369 store_filter_flags);
7370
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007371#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007372
7373static ssize_t show_measurement(struct device *d,
7374 struct device_attribute *attr, char *buf)
7375{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007376 struct iwl3945_priv *priv = dev_get_drvdata(d);
7377 struct iwl3945_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007378 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007379 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007380 unsigned long flags;
7381
7382 spin_lock_irqsave(&priv->lock, flags);
7383 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7384 spin_unlock_irqrestore(&priv->lock, flags);
7385 return 0;
7386 }
7387 memcpy(&measure_report, &priv->measure_report, size);
7388 priv->measurement_status = 0;
7389 spin_unlock_irqrestore(&priv->lock, flags);
7390
7391 while (size && (PAGE_SIZE - len)) {
7392 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7393 PAGE_SIZE - len, 1);
7394 len = strlen(buf);
7395 if (PAGE_SIZE - len)
7396 buf[len++] = '\n';
7397
7398 ofs += 16;
7399 size -= min(size, 16U);
7400 }
7401
7402 return len;
7403}
7404
7405static ssize_t store_measurement(struct device *d,
7406 struct device_attribute *attr,
7407 const char *buf, size_t count)
7408{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007409 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007410 struct ieee80211_measurement_params params = {
7411 .channel = le16_to_cpu(priv->active_rxon.channel),
7412 .start_time = cpu_to_le64(priv->last_tsf),
7413 .duration = cpu_to_le16(1),
7414 };
7415 u8 type = IWL_MEASURE_BASIC;
7416 u8 buffer[32];
7417 u8 channel;
7418
7419 if (count) {
7420 char *p = buffer;
7421 strncpy(buffer, buf, min(sizeof(buffer), count));
7422 channel = simple_strtoul(p, NULL, 0);
7423 if (channel)
7424 params.channel = channel;
7425
7426 p = buffer;
7427 while (*p && *p != ' ')
7428 p++;
7429 if (*p)
7430 type = simple_strtoul(p + 1, NULL, 0);
7431 }
7432
7433 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7434 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007435 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007436
7437 return count;
7438}
7439
7440static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7441 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007442#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007443
Zhu Yib481de92007-09-25 17:54:57 -07007444static ssize_t store_retry_rate(struct device *d,
7445 struct device_attribute *attr,
7446 const char *buf, size_t count)
7447{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007448 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007449
7450 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7451 if (priv->retry_rate <= 0)
7452 priv->retry_rate = 1;
7453
7454 return count;
7455}
7456
7457static ssize_t show_retry_rate(struct device *d,
7458 struct device_attribute *attr, char *buf)
7459{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007460 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007461 return sprintf(buf, "%d", priv->retry_rate);
7462}
7463
7464static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7465 store_retry_rate);
7466
7467static ssize_t store_power_level(struct device *d,
7468 struct device_attribute *attr,
7469 const char *buf, size_t count)
7470{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007471 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007472 int rc;
7473 int mode;
7474
7475 mode = simple_strtoul(buf, NULL, 0);
7476 mutex_lock(&priv->mutex);
7477
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007478 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007479 rc = -EAGAIN;
7480 goto out;
7481 }
7482
7483 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7484 mode = IWL_POWER_AC;
7485 else
7486 mode |= IWL_POWER_ENABLED;
7487
7488 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007489 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007490 if (rc) {
7491 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7492 goto out;
7493 }
7494 priv->power_mode = mode;
7495 }
7496
7497 rc = count;
7498
7499 out:
7500 mutex_unlock(&priv->mutex);
7501 return rc;
7502}
7503
7504#define MAX_WX_STRING 80
7505
7506/* Values are in microsecond */
7507static const s32 timeout_duration[] = {
7508 350000,
7509 250000,
7510 75000,
7511 37000,
7512 25000,
7513};
7514static const s32 period_duration[] = {
7515 400000,
7516 700000,
7517 1000000,
7518 1000000,
7519 1000000
7520};
7521
7522static ssize_t show_power_level(struct device *d,
7523 struct device_attribute *attr, char *buf)
7524{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007525 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007526 int level = IWL_POWER_LEVEL(priv->power_mode);
7527 char *p = buf;
7528
7529 p += sprintf(p, "%d ", level);
7530 switch (level) {
7531 case IWL_POWER_MODE_CAM:
7532 case IWL_POWER_AC:
7533 p += sprintf(p, "(AC)");
7534 break;
7535 case IWL_POWER_BATTERY:
7536 p += sprintf(p, "(BATTERY)");
7537 break;
7538 default:
7539 p += sprintf(p,
7540 "(Timeout %dms, Period %dms)",
7541 timeout_duration[level - 1] / 1000,
7542 period_duration[level - 1] / 1000);
7543 }
7544
7545 if (!(priv->power_mode & IWL_POWER_ENABLED))
7546 p += sprintf(p, " OFF\n");
7547 else
7548 p += sprintf(p, " \n");
7549
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007550 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007551
7552}
7553
7554static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7555 store_power_level);
7556
7557static ssize_t show_channels(struct device *d,
7558 struct device_attribute *attr, char *buf)
7559{
Johannes Berg8318d782008-01-24 19:38:38 +01007560 /* all this shit doesn't belong into sysfs anyway */
7561 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007562}
7563
7564static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7565
7566static ssize_t show_statistics(struct device *d,
7567 struct device_attribute *attr, char *buf)
7568{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007569 struct iwl3945_priv *priv = dev_get_drvdata(d);
7570 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007571 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007572 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07007573 int rc = 0;
7574
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007575 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007576 return -EAGAIN;
7577
7578 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007579 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007580 mutex_unlock(&priv->mutex);
7581
7582 if (rc) {
7583 len = sprintf(buf,
7584 "Error sending statistics request: 0x%08X\n", rc);
7585 return len;
7586 }
7587
7588 while (size && (PAGE_SIZE - len)) {
7589 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7590 PAGE_SIZE - len, 1);
7591 len = strlen(buf);
7592 if (PAGE_SIZE - len)
7593 buf[len++] = '\n';
7594
7595 ofs += 16;
7596 size -= min(size, 16U);
7597 }
7598
7599 return len;
7600}
7601
7602static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7603
7604static ssize_t show_antenna(struct device *d,
7605 struct device_attribute *attr, char *buf)
7606{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007607 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007608
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007609 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007610 return -EAGAIN;
7611
7612 return sprintf(buf, "%d\n", priv->antenna);
7613}
7614
7615static ssize_t store_antenna(struct device *d,
7616 struct device_attribute *attr,
7617 const char *buf, size_t count)
7618{
7619 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007620 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007621
7622 if (count == 0)
7623 return 0;
7624
7625 if (sscanf(buf, "%1i", &ant) != 1) {
7626 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7627 return count;
7628 }
7629
7630 if ((ant >= 0) && (ant <= 2)) {
7631 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007632 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007633 } else
7634 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7635
7636
7637 return count;
7638}
7639
7640static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7641
7642static ssize_t show_status(struct device *d,
7643 struct device_attribute *attr, char *buf)
7644{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007645 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
7646 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007647 return -EAGAIN;
7648 return sprintf(buf, "0x%08x\n", (int)priv->status);
7649}
7650
7651static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7652
7653static ssize_t dump_error_log(struct device *d,
7654 struct device_attribute *attr,
7655 const char *buf, size_t count)
7656{
7657 char *p = (char *)buf;
7658
7659 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007660 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007661
7662 return strnlen(buf, count);
7663}
7664
7665static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7666
7667static ssize_t dump_event_log(struct device *d,
7668 struct device_attribute *attr,
7669 const char *buf, size_t count)
7670{
7671 char *p = (char *)buf;
7672
7673 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007674 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007675
7676 return strnlen(buf, count);
7677}
7678
7679static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7680
7681/*****************************************************************************
7682 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007683 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007684 *
7685 *****************************************************************************/
7686
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007687static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007688{
7689 priv->workqueue = create_workqueue(DRV_NAME);
7690
7691 init_waitqueue_head(&priv->wait_command_queue);
7692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007693 INIT_WORK(&priv->up, iwl3945_bg_up);
7694 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7695 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7696 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7697 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7698 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7699 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7700 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007701 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7702 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7703 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007704
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007705 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007706
7707 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007708 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007709}
7710
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007711static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007712{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007713 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007714
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007715 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007716 cancel_delayed_work(&priv->scan_check);
7717 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007718 cancel_work_sync(&priv->beacon_update);
7719}
7720
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007721static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007722 &dev_attr_antenna.attr,
7723 &dev_attr_channels.attr,
7724 &dev_attr_dump_errors.attr,
7725 &dev_attr_dump_events.attr,
7726 &dev_attr_flags.attr,
7727 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007728#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007729 &dev_attr_measurement.attr,
7730#endif
7731 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007732 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007733 &dev_attr_statistics.attr,
7734 &dev_attr_status.attr,
7735 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007736 &dev_attr_tx_power.attr,
7737
7738 NULL
7739};
7740
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007741static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007742 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007743 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007744};
7745
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007746static struct ieee80211_ops iwl3945_hw_ops = {
7747 .tx = iwl3945_mac_tx,
7748 .start = iwl3945_mac_start,
7749 .stop = iwl3945_mac_stop,
7750 .add_interface = iwl3945_mac_add_interface,
7751 .remove_interface = iwl3945_mac_remove_interface,
7752 .config = iwl3945_mac_config,
7753 .config_interface = iwl3945_mac_config_interface,
7754 .configure_filter = iwl3945_configure_filter,
7755 .set_key = iwl3945_mac_set_key,
7756 .get_stats = iwl3945_mac_get_stats,
7757 .get_tx_stats = iwl3945_mac_get_tx_stats,
7758 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007759 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007760 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007761 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007762};
7763
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007764static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007765{
7766 int err = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007767 struct iwl3945_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007768 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007769 struct iwl_3945_cfg *cfg = (struct iwl_3945_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007770 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007771
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007772 /***********************
7773 * 1. Allocating HW data
7774 * ********************/
7775
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007776 /* Disabling hardware scan means that mac80211 will perform scans
7777 * "the hard way", rather than using device's scan. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007778 if (iwl3945_param_disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07007779 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007780 iwl3945_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07007781 }
7782
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007783 if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) ||
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007784 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
Zhu Yib481de92007-09-25 17:54:57 -07007785 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007786 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Zhu Yib481de92007-09-25 17:54:57 -07007787 err = -EINVAL;
7788 goto out;
7789 }
7790
7791 /* mac80211 allocates memory for this device instance, including
7792 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007793 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007794 if (hw == NULL) {
7795 IWL_ERROR("Can not allocate network device\n");
7796 err = -ENOMEM;
7797 goto out;
7798 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007799
Zhu Yib481de92007-09-25 17:54:57 -07007800 SET_IEEE80211_DEV(hw, &pdev->dev);
7801
Zhu Yib481de92007-09-25 17:54:57 -07007802 priv = hw->priv;
7803 priv->hw = hw;
Zhu Yib481de92007-09-25 17:54:57 -07007804 priv->pci_dev = pdev;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007805 priv->cfg = cfg;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007806
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007807 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
7808 hw->rate_control_algorithm = "iwl-3945-rs";
7809 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7810
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007811 /* Select antenna (may be helpful if only one antenna is connected) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007812 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007813#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007814 iwl3945_debug_level = iwl3945_param_debug;
Zhu Yib481de92007-09-25 17:54:57 -07007815 atomic_set(&priv->restrict_refcnt, 0);
7816#endif
Zhu Yib481de92007-09-25 17:54:57 -07007817
Bruno Randolf566bfe52008-05-08 19:15:40 +02007818 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007819 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007820 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007821
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007822 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007823 BIT(NL80211_IFTYPE_STATION) |
7824 BIT(NL80211_IFTYPE_ADHOC);
7825
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007826 hw->wiphy->fw_handles_regulatory = true;
7827
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007828 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007829 hw->queues = 4;
7830
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007831 /***************************
7832 * 2. Initializing PCI bus
7833 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007834 if (pci_enable_device(pdev)) {
7835 err = -ENODEV;
7836 goto out_ieee80211_free_hw;
7837 }
7838
7839 pci_set_master(pdev);
7840
Zhu Yib481de92007-09-25 17:54:57 -07007841 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7842 if (!err)
7843 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7844 if (err) {
7845 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
7846 goto out_pci_disable_device;
7847 }
7848
7849 pci_set_drvdata(pdev, priv);
7850 err = pci_request_regions(pdev, DRV_NAME);
7851 if (err)
7852 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007853
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007854 /***********************
7855 * 3. Read REV Register
7856 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007857 priv->hw_base = pci_iomap(pdev, 0, 0);
7858 if (!priv->hw_base) {
7859 err = -ENODEV;
7860 goto out_pci_release_regions;
7861 }
7862
7863 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7864 (unsigned long long) pci_resource_len(pdev, 0));
7865 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7866
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007867 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7868 * PCI Tx retries from interfering with C3 CPU state */
7869 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007870
Zhu Yi5a66926a2008-01-14 17:46:18 -08007871 /* nic init */
7872 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007873 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007874
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007875 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
7876 err = iwl3945_poll_bit(priv, CSR_GP_CNTRL,
7877 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
7878 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
7879 if (err < 0) {
7880 IWL_DEBUG_INFO("Failed to init the card\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08007881 goto out_remove_sysfs;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007882 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007883
7884 /***********************
7885 * 4. Read EEPROM
7886 * ********************/
Zhu Yi5a66926a2008-01-14 17:46:18 -08007887 /* Read the EEPROM */
7888 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007889 if (err) {
Zhu Yi5a66926a2008-01-14 17:46:18 -08007890 IWL_ERROR("Unable to init EEPROM\n");
7891 goto out_remove_sysfs;
7892 }
7893 /* MAC Address location in EEPROM same for 3945/4965 */
7894 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007895 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007896 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7897
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007898 /***********************
7899 * 5. Setup HW Constants
7900 * ********************/
7901 /* Device-specific setup */
7902 if (iwl3945_hw_set_hw_setting(priv)) {
7903 IWL_ERROR("failed to set hw settings\n");
7904 goto out_iounmap;
7905 }
7906
7907 /***********************
7908 * 6. Setup priv
7909 * ********************/
7910 priv->retry_rate = 1;
7911 priv->ibss_beacon = NULL;
7912
7913 spin_lock_init(&priv->lock);
7914 spin_lock_init(&priv->power_data.lock);
7915 spin_lock_init(&priv->sta_lock);
7916 spin_lock_init(&priv->hcmd_lock);
7917
7918 INIT_LIST_HEAD(&priv->free_frames);
7919 mutex_init(&priv->mutex);
7920
7921 /* Clear the driver's (not device's) station table */
7922 iwl3945_clear_stations_table(priv);
7923
7924 priv->data_retry_limit = -1;
7925 priv->ieee_channels = NULL;
7926 priv->ieee_rates = NULL;
7927 priv->band = IEEE80211_BAND_2GHZ;
7928
7929 priv->iw_mode = NL80211_IFTYPE_STATION;
7930
7931 if (iwl3945_param_qos_enable)
7932 priv->qos_data.qos_enable = 1;
7933
7934 iwl3945_reset_qos(priv);
7935
7936 priv->qos_data.qos_active = 0;
7937 priv->qos_data.qos_cap.val = 0;
7938
7939
7940 priv->rates_mask = IWL_RATES_MASK;
7941 /* If power management is turned on, default to AC mode */
7942 priv->power_mode = IWL_POWER_AC;
7943 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7944
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007945 err = iwl3945_init_channel_map(priv);
7946 if (err) {
7947 IWL_ERROR("initializing regulatory failed: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007948 goto out_release_irq;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007949 }
7950
7951 err = iwl3945_init_geos(priv);
7952 if (err) {
7953 IWL_ERROR("initializing geos failed: %d\n", err);
7954 goto out_free_channel_map;
7955 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007956
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007957 printk(KERN_INFO DRV_NAME
7958 ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name);
7959
7960 /***********************************
7961 * 7. Initialize Module Parameters
7962 * **********************************/
7963
7964 /* Initialize module parameter values here */
7965 /* Disable radio (SW RF KILL) via parameter when loading driver */
7966 if (iwl3945_param_disable) {
7967 set_bit(STATUS_RF_KILL_SW, &priv->status);
7968 IWL_DEBUG_INFO("Radio disabled.\n");
7969 }
7970
7971
7972 /***********************
7973 * 8. Setup Services
7974 * ********************/
7975
7976 spin_lock_irqsave(&priv->lock, flags);
7977 iwl3945_disable_interrupts(priv);
7978 spin_unlock_irqrestore(&priv->lock, flags);
7979
7980 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7981 if (err) {
7982 IWL_ERROR("failed to create sysfs device attributes\n");
7983 goto out_free_geos;
7984 }
7985
7986 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
7987 iwl3945_setup_deferred_work(priv);
7988 iwl3945_setup_rx_handlers(priv);
7989
7990 /***********************
7991 * 9. Conclude
7992 * ********************/
7993 pci_save_state(pdev);
7994 pci_disable_device(pdev);
7995
7996 /*********************************
7997 * 10. Setup and Register mac80211
7998 * *******************************/
7999
Zhu Yi5a66926a2008-01-14 17:46:18 -08008000 err = ieee80211_register_hw(priv->hw);
8001 if (err) {
8002 IWL_ERROR("Failed to register network device (error %d)\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008003 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07008004 }
8005
Zhu Yi5a66926a2008-01-14 17:46:18 -08008006 priv->hw->conf.beacon_int = 100;
8007 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008008
Zhu Yib481de92007-09-25 17:54:57 -07008009
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008010 err = iwl3945_rfkill_init(priv);
8011 if (err)
8012 IWL_ERROR("Unable to initialize RFKILL system. "
8013 "Ignoring error: %d\n", err);
8014
Zhu Yib481de92007-09-25 17:54:57 -07008015 return 0;
8016
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008017 out_remove_sysfs:
8018 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008019 out_free_geos:
8020 iwl3945_free_geos(priv);
8021 out_free_channel_map:
8022 iwl3945_free_channel_map(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008023
Zhu Yib481de92007-09-25 17:54:57 -07008024
8025 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07008026 destroy_workqueue(priv->workqueue);
8027 priv->workqueue = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008028 iwl3945_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008029
8030 out_iounmap:
8031 pci_iounmap(pdev, priv->hw_base);
8032 out_pci_release_regions:
8033 pci_release_regions(pdev);
8034 out_pci_disable_device:
8035 pci_disable_device(pdev);
8036 pci_set_drvdata(pdev, NULL);
8037 out_ieee80211_free_hw:
8038 ieee80211_free_hw(priv->hw);
8039 out:
8040 return err;
8041}
8042
Reinette Chatrec83dbf62008-03-21 13:53:41 -07008043static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008044{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008045 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008046 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07008047
8048 if (!priv)
8049 return;
8050
8051 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8052
Zhu Yib481de92007-09-25 17:54:57 -07008053 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008054
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008055 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008056
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008057 /* make sure we flush any pending irq or
8058 * tasklet for the driver
8059 */
8060 spin_lock_irqsave(&priv->lock, flags);
8061 iwl3945_disable_interrupts(priv);
8062 spin_unlock_irqrestore(&priv->lock, flags);
8063
8064 iwl_synchronize_irq(priv);
8065
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008066 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008067
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008068 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008069 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008070
8071 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008072 iwl3945_rx_queue_free(priv, &priv->rxq);
8073 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008074
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008075 iwl3945_unset_hw_setting(priv);
8076 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008077
Tomas Winkler3ac7f142008-07-21 02:40:14 +03008078 if (priv->mac80211_registered)
Zhu Yib481de92007-09-25 17:54:57 -07008079 ieee80211_unregister_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008080
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08008081 /*netif_stop_queue(dev); */
8082 flush_workqueue(priv->workqueue);
8083
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008084 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008085 * priv->workqueue... so we can't take down the workqueue
8086 * until now... */
8087 destroy_workqueue(priv->workqueue);
8088 priv->workqueue = NULL;
8089
Zhu Yib481de92007-09-25 17:54:57 -07008090 pci_iounmap(pdev, priv->hw_base);
8091 pci_release_regions(pdev);
8092 pci_disable_device(pdev);
8093 pci_set_drvdata(pdev, NULL);
8094
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008095 iwl3945_free_channel_map(priv);
8096 iwl3945_free_geos(priv);
Emmanuel Grumbach261415f2008-05-29 16:35:25 +08008097 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07008098 if (priv->ibss_beacon)
8099 dev_kfree_skb(priv->ibss_beacon);
8100
8101 ieee80211_free_hw(priv->hw);
8102}
8103
8104#ifdef CONFIG_PM
8105
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008106static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008107{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008108 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008109
Zhu Yie655b9f2008-01-24 02:19:38 -08008110 if (priv->is_open) {
8111 set_bit(STATUS_IN_SUSPEND, &priv->status);
8112 iwl3945_mac_stop(priv->hw);
8113 priv->is_open = 1;
8114 }
Zhu Yib481de92007-09-25 17:54:57 -07008115
Zhu Yib481de92007-09-25 17:54:57 -07008116 pci_set_power_state(pdev, PCI_D3hot);
8117
Zhu Yib481de92007-09-25 17:54:57 -07008118 return 0;
8119}
8120
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008121static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008122{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008123 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008124
Zhu Yib481de92007-09-25 17:54:57 -07008125 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008126
Zhu Yie655b9f2008-01-24 02:19:38 -08008127 if (priv->is_open)
8128 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008129
Zhu Yie655b9f2008-01-24 02:19:38 -08008130 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008131 return 0;
8132}
8133
8134#endif /* CONFIG_PM */
8135
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008136/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008137#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008138/* software rf-kill from user */
8139static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
8140{
8141 struct iwl3945_priv *priv = data;
8142 int err = 0;
8143
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008144 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008145 return 0;
8146
8147 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
8148 return 0;
8149
Tomas Winklera96a27f2008-10-23 23:48:56 -07008150 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008151 mutex_lock(&priv->mutex);
8152
8153 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008154 case RFKILL_STATE_UNBLOCKED:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008155 if (iwl3945_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008156 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008157 goto out_unlock;
8158 }
8159 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008160 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008161 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008162 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008163 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008164 default:
Tomas Winklera96a27f2008-10-23 23:48:56 -07008165 IWL_WARNING("we received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008166 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008167 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008168out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008169 mutex_unlock(&priv->mutex);
8170
8171 return err;
8172}
8173
8174int iwl3945_rfkill_init(struct iwl3945_priv *priv)
8175{
8176 struct device *device = wiphy_dev(priv->hw->wiphy);
8177 int ret = 0;
8178
8179 BUG_ON(device == NULL);
8180
8181 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008182 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
8183 if (!priv->rfkill) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008184 IWL_ERROR("Unable to allocate rfkill device.\n");
8185 ret = -ENOMEM;
8186 goto error;
8187 }
8188
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008189 priv->rfkill->name = priv->cfg->name;
8190 priv->rfkill->data = priv;
8191 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
8192 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
8193 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008194
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008195 priv->rfkill->dev.class->suspend = NULL;
8196 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008197
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008198 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008199 if (ret) {
8200 IWL_ERROR("Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008201 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008202 }
8203
8204 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8205 return ret;
8206
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008207freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008208 if (priv->rfkill != NULL)
8209 rfkill_free(priv->rfkill);
8210 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008211
8212error:
8213 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8214 return ret;
8215}
8216
8217void iwl3945_rfkill_unregister(struct iwl3945_priv *priv)
8218{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008219 if (priv->rfkill)
8220 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008221
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008222 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008223}
8224
8225/* set rf-kill to the right state. */
8226void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv)
8227{
8228
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008229 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008230 return;
8231
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008232 if (iwl3945_is_rfkill_hw(priv)) {
8233 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
8234 return;
8235 }
8236
8237 if (!iwl3945_is_rfkill_sw(priv))
8238 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008239 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008240 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008241}
8242#endif
8243
Zhu Yib481de92007-09-25 17:54:57 -07008244/*****************************************************************************
8245 *
8246 * driver and module entry point
8247 *
8248 *****************************************************************************/
8249
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008250static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008251 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008252 .id_table = iwl3945_hw_card_ids,
8253 .probe = iwl3945_pci_probe,
8254 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008255#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008256 .suspend = iwl3945_pci_suspend,
8257 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008258#endif
8259};
8260
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008261static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008262{
8263
8264 int ret;
8265 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8266 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008267
8268 ret = iwl3945_rate_control_register();
8269 if (ret) {
8270 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
8271 return ret;
8272 }
8273
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008274 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008275 if (ret) {
8276 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008277 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07008278 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008279#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008280 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008281 if (ret) {
8282 IWL_ERROR("Unable to create driver sysfs file\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008283 goto error_debug;
Zhu Yib481de92007-09-25 17:54:57 -07008284 }
8285#endif
8286
8287 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008288
8289#ifdef CONFIG_IWL3945_DEBUG
8290error_debug:
8291 pci_unregister_driver(&iwl3945_driver);
8292#endif
8293error_register:
8294 iwl3945_rate_control_unregister();
8295 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07008296}
8297
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008298static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008299{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008300#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008301 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008302#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008303 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008304 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07008305}
8306
Zhu Yi25cb6ca2008-09-11 11:45:22 +08008307MODULE_FIRMWARE("iwlwifi-3945" IWL3945_UCODE_API ".ucode");
8308
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008309module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008310MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008311module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008312MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008313module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008314MODULE_PARM_DESC(hwcrypto,
8315 "using hardware crypto engine (default 0 [software])\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008316module_param_named(debug, iwl3945_param_debug, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008317MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008318module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008319MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8320
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008321module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008322MODULE_PARM_DESC(queues_num, "number of hw queues.");
8323
8324/* QoS */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008325module_param_named(qos_enable, iwl3945_param_qos_enable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008326MODULE_PARM_DESC(qos_enable, "enable all QoS functionality");
8327
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008328module_exit(iwl3945_exit);
8329module_init(iwl3945_init);