blob: 13a0b9a3ec7d731a5b09e6796d2671a9253ac96b [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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * 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"
Tomas Winkler600c0e12008-12-19 10:37:04 +080050#include "iwl-commands.h"
Tomas Winkler69d00d22008-12-19 10:37:02 +080051#include "iwl-3945-commands.h"
Zhu Yib481de92007-09-25 17:54:57 -070052#include "iwl-3945.h"
Tomas Winklerbddadf82008-12-19 10:37:01 +080053#include "iwl-3945-fh.h"
Zhu Yib481de92007-09-25 17:54:57 -070054#include "iwl-helpers.h"
55
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080056#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080057u32 iwl3945_debug_level;
Zhu Yib481de92007-09-25 17:54:57 -070058#endif
59
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080060static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
61 struct iwl3945_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080062
Zhu Yib481de92007-09-25 17:54:57 -070063/******************************************************************************
64 *
65 * module boiler plate
66 *
67 ******************************************************************************/
68
69/* module parameters */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080070static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */
Wu, Fengguang95aa1942008-12-17 16:52:30 +080071static u32 iwl3945_param_debug; /* def: 0 = minimal debug log messages */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080072static int iwl3945_param_disable; /* def: 0 = enable radio */
Ben Cahill9fbab512007-11-29 11:09:47 +080073static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080074int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */
Ron Rindjunskydfe7d452008-04-15 16:01:45 -070075int iwl3945_param_queues_num = IWL39_MAX_NUM_QUEUES; /* def: 8 Tx queues */
Zhu Yib481de92007-09-25 17:54:57 -070076
77/*
78 * module name, copyright, version, etc.
79 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
80 */
81
82#define DRV_DESCRIPTION \
83"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
84
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080085#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070086#define VD "d"
87#else
88#define VD
89#endif
90
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080091#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070092#define VS "s"
93#else
94#define VS
95#endif
96
Reinette Chatreb9e0b442008-02-08 16:39:11 -080097#define IWLWIFI_VERSION "1.2.26k" VD VS
Reinette Chatreeb7ae892008-03-11 16:17:17 -070098#define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080099#define DRV_AUTHOR "<ilw@linux.intel.com>"
Zhu Yib481de92007-09-25 17:54:57 -0700100#define DRV_VERSION IWLWIFI_VERSION
101
Zhu Yib481de92007-09-25 17:54:57 -0700102
103MODULE_DESCRIPTION(DRV_DESCRIPTION);
104MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -0800105MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -0700106MODULE_LICENSE("GPL");
107
Johannes Berg8318d782008-01-24 19:38:38 +0100108static const struct ieee80211_supported_band *iwl3945_get_band(
109 struct iwl3945_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700110{
Johannes Berg8318d782008-01-24 19:38:38 +0100111 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700112}
113
Zhu Yib481de92007-09-25 17:54:57 -0700114/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
115 * DMA services
116 *
117 * Theory of operation
118 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800119 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
120 * of buffer descriptors, each of which points to one or more data buffers for
121 * the device to read from or fill. Driver and device exchange status of each
122 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
123 * entries in each circular buffer, to protect against confusing empty and full
124 * queue states.
125 *
126 * The device reads or writes the data in the queues via the device's several
127 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700128 *
129 * For Tx queue, there are low mark and high mark limits. If, after queuing
130 * the packet for Tx, free space become < low mark, Tx queue stopped. When
131 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
132 * Tx queue resumed.
133 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800134 * The 3945 operates with six queues: One receive queue, one transmit queue
135 * (#4) for sending commands to the device firmware, and four transmit queues
136 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
Zhu Yib481de92007-09-25 17:54:57 -0700137 ***************************************************/
138
Tomas Winklerc54b6792008-03-06 17:36:53 -0800139int iwl3945_queue_space(const struct iwl3945_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700140{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800141 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700142
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800143 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700144 s -= q->n_bd;
145
146 if (s <= 0)
147 s += q->n_window;
148 /* keep some reserve to not confuse empty and full situations */
149 s -= 2;
150 if (s < 0)
151 s = 0;
152 return s;
153}
154
Tomas Winklerc54b6792008-03-06 17:36:53 -0800155int iwl3945_x2_queue_used(const struct iwl3945_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700156{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800157 return q->write_ptr > q->read_ptr ?
158 (i >= q->read_ptr && i < q->write_ptr) :
159 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700160}
161
Tomas Winklerc54b6792008-03-06 17:36:53 -0800162
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800163static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700164{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800165 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700166 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800167 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700168
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800169 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700170 return index & (q->n_window - 1);
171}
172
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800173/**
174 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
175 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800176static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700177 int count, int slots_num, u32 id)
178{
179 q->n_bd = count;
180 q->n_window = slots_num;
181 q->id = id;
182
Tomas Winklerc54b6792008-03-06 17:36:53 -0800183 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
184 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700185 BUG_ON(!is_power_of_2(count));
186
187 /* slots_num must be power-of-two size, otherwise
188 * get_cmd_index is broken. */
189 BUG_ON(!is_power_of_2(slots_num));
190
191 q->low_mark = q->n_window / 4;
192 if (q->low_mark < 4)
193 q->low_mark = 4;
194
195 q->high_mark = q->n_window / 8;
196 if (q->high_mark < 2)
197 q->high_mark = 2;
198
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800199 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700200
201 return 0;
202}
203
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800204/**
205 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
206 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800207static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
208 struct iwl3945_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700209{
210 struct pci_dev *dev = priv->pci_dev;
211
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800212 /* Driver private data, only for Tx (not command) queues,
213 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700214 if (id != IWL_CMD_QUEUE_NUM) {
215 txq->txb = kmalloc(sizeof(txq->txb[0]) *
216 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
217 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800218 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700219 "structures failed\n");
220 goto error;
221 }
222 } else
223 txq->txb = NULL;
224
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800225 /* Circular buffer of transmit frame descriptors (TFDs),
226 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700227 txq->bd = pci_alloc_consistent(dev,
228 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
229 &txq->q.dma_addr);
230
231 if (!txq->bd) {
232 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
233 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
234 goto error;
235 }
236 txq->q.id = id;
237
238 return 0;
239
240 error:
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300241 kfree(txq->txb);
242 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700243
244 return -ENOMEM;
245}
246
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800247/**
248 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
249 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800250int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
251 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700252{
253 struct pci_dev *dev = priv->pci_dev;
254 int len;
255 int rc = 0;
256
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800257 /*
258 * Alloc buffer array for commands (Tx or other types of commands).
259 * For the command queue (#4), allocate command space + one big
260 * command for scan, since scan command is very huge; the system will
261 * not have two scans at the same time, so only one is needed.
262 * For data Tx queues (all other queues), no super-size command
263 * space is needed.
264 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800265 len = sizeof(struct iwl3945_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700266 if (txq_id == IWL_CMD_QUEUE_NUM)
267 len += IWL_MAX_SCAN_SIZE;
268 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
269 if (!txq->cmd)
270 return -ENOMEM;
271
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800272 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800273 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700274 if (rc) {
275 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
276
277 return -ENOMEM;
278 }
279 txq->need_update = 0;
280
281 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800282 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700283 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800284
285 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700287
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800288 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800289 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700290
291 return 0;
292}
293
294/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800295 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700296 * @txq: Transmit queue to deallocate.
297 *
298 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800299 * Free all buffers.
300 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700301 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800302void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700303{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800304 struct iwl3945_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700305 struct pci_dev *dev = priv->pci_dev;
306 int len;
307
308 if (q->n_bd == 0)
309 return;
310
311 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800312 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800313 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800314 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700315
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800316 len = sizeof(struct iwl3945_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700317 if (q->id == IWL_CMD_QUEUE_NUM)
318 len += IWL_MAX_SCAN_SIZE;
319
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800320 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700321 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
322
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800323 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700324 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800325 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700326 txq->q.n_bd, txq->bd, txq->q.dma_addr);
327
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800328 /* De-alloc array of per-TFD driver data */
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300329 kfree(txq->txb);
330 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700331
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800332 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700333 memset(txq, 0, sizeof(*txq));
334}
335
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800336const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700337
338/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800339 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700340 * the functionality provided here
341 */
342
343/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800344#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800345/**
346 * iwl3945_remove_station - Remove driver's knowledge of station.
347 *
348 * NOTE: This does not remove station from device's station table.
349 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800350static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700351{
352 int index = IWL_INVALID_STATION;
353 int i;
354 unsigned long flags;
355
356 spin_lock_irqsave(&priv->sta_lock, flags);
357
358 if (is_ap)
359 index = IWL_AP_ID;
360 else if (is_broadcast_ether_addr(addr))
361 index = priv->hw_setting.bcast_sta_id;
362 else
363 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
364 if (priv->stations[i].used &&
365 !compare_ether_addr(priv->stations[i].sta.sta.addr,
366 addr)) {
367 index = i;
368 break;
369 }
370
371 if (unlikely(index == IWL_INVALID_STATION))
372 goto out;
373
374 if (priv->stations[index].used) {
375 priv->stations[index].used = 0;
376 priv->num_stations--;
377 }
378
379 BUG_ON(priv->num_stations < 0);
380
381out:
382 spin_unlock_irqrestore(&priv->sta_lock, flags);
383 return 0;
384}
Zhu Yi556f8db2007-09-27 11:27:33 +0800385#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800386
387/**
388 * iwl3945_clear_stations_table - Clear the driver's station table
389 *
390 * NOTE: This does not clear or otherwise alter the device's station table.
391 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800392static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700393{
394 unsigned long flags;
395
396 spin_lock_irqsave(&priv->sta_lock, flags);
397
398 priv->num_stations = 0;
399 memset(priv->stations, 0, sizeof(priv->stations));
400
401 spin_unlock_irqrestore(&priv->sta_lock, flags);
402}
403
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800404/**
405 * iwl3945_add_station - Add station to station tables in driver and device
406 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800407u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700408{
409 int i;
410 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800411 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700412 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800413 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700414
415 spin_lock_irqsave(&priv->sta_lock, flags_spin);
416 if (is_ap)
417 index = IWL_AP_ID;
418 else if (is_broadcast_ether_addr(addr))
419 index = priv->hw_setting.bcast_sta_id;
420 else
421 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
422 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
423 addr)) {
424 index = i;
425 break;
426 }
427
428 if (!priv->stations[i].used &&
429 index == IWL_INVALID_STATION)
430 index = i;
431 }
432
Ian Schram01ebd062007-10-25 17:15:22 +0800433 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700434 since they have different meaning */
435 if (unlikely(index == IWL_INVALID_STATION)) {
436 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
437 return index;
438 }
439
440 if (priv->stations[index].used &&
441 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
442 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
443 return index;
444 }
445
Johannes Berge1749612008-10-27 15:59:26 -0700446 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
Zhu Yib481de92007-09-25 17:54:57 -0700447 station = &priv->stations[index];
448 station->used = 1;
449 priv->num_stations++;
450
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800451 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800452 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700453 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
454 station->sta.mode = 0;
455 station->sta.sta.sta_id = index;
456 station->sta.station_flags = 0;
457
Johannes Berg8318d782008-01-24 19:38:38 +0100458 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800459 rate = IWL_RATE_6M_PLCP;
460 else
461 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800462
463 /* Turn on both antennas for the station... */
464 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800465 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800466
Zhu Yib481de92007-09-25 17:54:57 -0700467 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800468
469 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800470 iwl3945_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700471 return index;
472
473}
474
475/*************** DRIVER STATUS FUNCTIONS *****/
476
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800477static inline int iwl3945_is_ready(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700478{
479 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
480 * set but EXIT_PENDING is not */
481 return test_bit(STATUS_READY, &priv->status) &&
482 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
483 !test_bit(STATUS_EXIT_PENDING, &priv->status);
484}
485
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800486static inline int iwl3945_is_alive(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700487{
488 return test_bit(STATUS_ALIVE, &priv->status);
489}
490
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800491static inline int iwl3945_is_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700492{
493 return test_bit(STATUS_INIT, &priv->status);
494}
495
Adel Gadllah80fcc9e2008-07-01 17:49:50 +0200496static inline int iwl3945_is_rfkill_sw(struct iwl3945_priv *priv)
497{
498 return test_bit(STATUS_RF_KILL_SW, &priv->status);
499}
500
501static inline int iwl3945_is_rfkill_hw(struct iwl3945_priv *priv)
502{
503 return test_bit(STATUS_RF_KILL_HW, &priv->status);
504}
505
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800506static inline int iwl3945_is_rfkill(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700507{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +0200508 return iwl3945_is_rfkill_hw(priv) ||
509 iwl3945_is_rfkill_sw(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700510}
511
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800512static inline int iwl3945_is_ready_rf(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700513{
514
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800515 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700516 return 0;
517
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800518 return iwl3945_is_ready(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700519}
520
521/*************** HOST COMMAND QUEUE FUNCTIONS *****/
522
Abhijeet Kolekarc3056062008-11-12 13:14:08 -0800523#define IWL_CMD(x) case x: return #x
Zhu Yib481de92007-09-25 17:54:57 -0700524
525static const char *get_cmd_string(u8 cmd)
526{
527 switch (cmd) {
528 IWL_CMD(REPLY_ALIVE);
529 IWL_CMD(REPLY_ERROR);
530 IWL_CMD(REPLY_RXON);
531 IWL_CMD(REPLY_RXON_ASSOC);
532 IWL_CMD(REPLY_QOS_PARAM);
533 IWL_CMD(REPLY_RXON_TIMING);
534 IWL_CMD(REPLY_ADD_STA);
535 IWL_CMD(REPLY_REMOVE_STA);
536 IWL_CMD(REPLY_REMOVE_ALL_STA);
537 IWL_CMD(REPLY_3945_RX);
538 IWL_CMD(REPLY_TX);
539 IWL_CMD(REPLY_RATE_SCALE);
540 IWL_CMD(REPLY_LEDS_CMD);
541 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
542 IWL_CMD(RADAR_NOTIFICATION);
543 IWL_CMD(REPLY_QUIET_CMD);
544 IWL_CMD(REPLY_CHANNEL_SWITCH);
545 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
546 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
547 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
548 IWL_CMD(POWER_TABLE_CMD);
549 IWL_CMD(PM_SLEEP_NOTIFICATION);
550 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
551 IWL_CMD(REPLY_SCAN_CMD);
552 IWL_CMD(REPLY_SCAN_ABORT_CMD);
553 IWL_CMD(SCAN_START_NOTIFICATION);
554 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
555 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
556 IWL_CMD(BEACON_NOTIFICATION);
557 IWL_CMD(REPLY_TX_BEACON);
558 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
559 IWL_CMD(QUIET_NOTIFICATION);
560 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
561 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
562 IWL_CMD(REPLY_BT_CONFIG);
563 IWL_CMD(REPLY_STATISTICS_CMD);
564 IWL_CMD(STATISTICS_NOTIFICATION);
565 IWL_CMD(REPLY_CARD_STATE_CMD);
566 IWL_CMD(CARD_STATE_NOTIFICATION);
567 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
568 default:
569 return "UNKNOWN";
570
571 }
572}
573
574#define HOST_COMPLETE_TIMEOUT (HZ / 2)
575
576/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800577 * iwl3945_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700578 * @priv: device private data point
579 * @cmd: a point to the ucode command structure
580 *
581 * The function returns < 0 values to indicate the operation is
582 * failed. On success, it turns the index (> 0) of command in the
583 * command queue.
584 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800585static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700586{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800587 struct iwl3945_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
588 struct iwl3945_queue *q = &txq->q;
589 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -0700590 u32 *control_flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800591 struct iwl3945_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700592 u32 idx;
593 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
594 dma_addr_t phys_addr;
595 int pad;
596 u16 count;
597 int ret;
598 unsigned long flags;
599
600 /* If any of the command structures end up being larger than
601 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
602 * we will need to increase the size of the TFD entries */
603 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
604 !(cmd->meta.flags & CMD_SIZE_HUGE));
605
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800606
607 if (iwl3945_is_rfkill(priv)) {
608 IWL_DEBUG_INFO("Not sending command - RF KILL");
609 return -EIO;
610 }
611
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800612 if (iwl3945_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Zhu Yib481de92007-09-25 17:54:57 -0700613 IWL_ERROR("No space for Tx\n");
614 return -ENOSPC;
615 }
616
617 spin_lock_irqsave(&priv->hcmd_lock, flags);
618
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800619 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700620 memset(tfd, 0, sizeof(*tfd));
621
622 control_flags = (u32 *) tfd;
623
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800624 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Zhu Yib481de92007-09-25 17:54:57 -0700625 out_cmd = &txq->cmd[idx];
626
627 out_cmd->hdr.cmd = cmd->id;
628 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
629 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
630
631 /* At this point, the out_cmd now has all of the incoming cmd
632 * information */
633
634 out_cmd->hdr.flags = 0;
635 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800636 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700637 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
Tomas Winkler600c0e12008-12-19 10:37:04 +0800638 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
Zhu Yib481de92007-09-25 17:54:57 -0700639
640 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800641 offsetof(struct iwl3945_cmd, hdr);
642 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700643
644 pad = U32_PAD(cmd->len);
645 count = TFD_CTL_COUNT_GET(*control_flags);
646 *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad);
647
648 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
649 "%d bytes at %d[%d]:%d\n",
650 get_cmd_string(out_cmd->hdr.cmd),
651 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800652 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700653
654 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800655
656 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800657 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800658 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700659
660 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
661 return ret ? ret : idx;
662}
663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800664static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700665{
666 int ret;
667
668 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
669
670 /* An asynchronous command can not expect an SKB to be set. */
671 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
672
673 /* An asynchronous command MUST have a callback. */
674 BUG_ON(!cmd->meta.u.callback);
675
676 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
677 return -EBUSY;
678
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800679 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700680 if (ret < 0) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800681 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700682 get_cmd_string(cmd->id), ret);
683 return ret;
684 }
685 return 0;
686}
687
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800688static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700689{
690 int cmd_idx;
691 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700692
693 BUG_ON(cmd->meta.flags & CMD_ASYNC);
694
695 /* A synchronous command can not have a callback set. */
696 BUG_ON(cmd->meta.u.callback != NULL);
697
Tomas Winklere5472972008-03-28 16:21:12 -0700698 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Zhu Yib481de92007-09-25 17:54:57 -0700699 IWL_ERROR("Error sending %s: Already sending a host command\n",
700 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700701 ret = -EBUSY;
702 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700703 }
704
705 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
706
707 if (cmd->meta.flags & CMD_WANT_SKB)
708 cmd->meta.source = &cmd->meta;
709
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800710 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700711 if (cmd_idx < 0) {
712 ret = cmd_idx;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800713 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700714 get_cmd_string(cmd->id), ret);
715 goto out;
716 }
717
718 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
719 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
720 HOST_COMPLETE_TIMEOUT);
721 if (!ret) {
722 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
723 IWL_ERROR("Error sending %s: time out after %dms.\n",
724 get_cmd_string(cmd->id),
725 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
726
727 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
728 ret = -ETIMEDOUT;
729 goto cancel;
730 }
731 }
732
733 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
734 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
735 get_cmd_string(cmd->id));
736 ret = -ECANCELED;
737 goto fail;
738 }
739 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
740 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
741 get_cmd_string(cmd->id));
742 ret = -EIO;
743 goto fail;
744 }
745 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
746 IWL_ERROR("Error: Response NULL in '%s'\n",
747 get_cmd_string(cmd->id));
748 ret = -EIO;
Zhu Yi73e1a652009-01-08 10:19:58 -0800749 goto cancel;
Zhu Yib481de92007-09-25 17:54:57 -0700750 }
751
752 ret = 0;
753 goto out;
754
755cancel:
756 if (cmd->meta.flags & CMD_WANT_SKB) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800757 struct iwl3945_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700758
759 /* Cancel the CMD_WANT_SKB flag for the cmd in the
760 * TX cmd queue. Otherwise in case the cmd comes
761 * in later, it will possibly set an invalid
762 * address (cmd->meta.source). */
763 qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
764 qcmd->meta.flags &= ~CMD_WANT_SKB;
765 }
766fail:
767 if (cmd->meta.u.skb) {
768 dev_kfree_skb_any(cmd->meta.u.skb);
769 cmd->meta.u.skb = NULL;
770 }
771out:
Tomas Winklere5472972008-03-28 16:21:12 -0700772 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -0700773 return ret;
774}
775
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800776int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700777{
Zhu Yib481de92007-09-25 17:54:57 -0700778 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800779 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700780
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800781 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700782}
783
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800784int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700785{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800786 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700787 .id = id,
788 .len = len,
789 .data = data,
790 };
791
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800792 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700793}
794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800795static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700796{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800797 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700798 .id = id,
799 .len = sizeof(val),
800 .data = &val,
801 };
802
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800803 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700804}
805
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800806int iwl3945_send_statistics_request(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700807{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800808 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700809}
810
811/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800812 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100813 * @band: 2.4 or 5 GHz band
814 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700815
Johannes Berg8318d782008-01-24 19:38:38 +0100816 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700817 *
818 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100819 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700820 */
Johannes Berg8318d782008-01-24 19:38:38 +0100821static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv,
822 enum ieee80211_band band,
823 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700824{
Johannes Berg8318d782008-01-24 19:38:38 +0100825 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700826 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100827 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700828 return -EINVAL;
829 }
830
831 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100832 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700833 return 0;
834
835 priv->staging_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100836 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700837 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
838 else
839 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
840
Johannes Berg8318d782008-01-24 19:38:38 +0100841 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700842
Johannes Berg8318d782008-01-24 19:38:38 +0100843 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700844
845 return 0;
846}
847
848/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800849 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700850 *
851 * NOTE: This is really only useful during development and can eventually
852 * be #ifdef'd out once the driver is stable and folks aren't actively
853 * making changes
854 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800855static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700856{
857 int error = 0;
858 int counter = 1;
859
860 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
861 error |= le32_to_cpu(rxon->flags &
862 (RXON_FLG_TGJ_NARROW_BAND_MSK |
863 RXON_FLG_RADAR_DETECT_MSK));
864 if (error)
865 IWL_WARNING("check 24G fields %d | %d\n",
866 counter++, error);
867 } else {
868 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
869 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
870 if (error)
871 IWL_WARNING("check 52 fields %d | %d\n",
872 counter++, error);
873 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
874 if (error)
875 IWL_WARNING("check 52 CCK %d | %d\n",
876 counter++, error);
877 }
878 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
879 if (error)
880 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
881
882 /* make sure basic rates 6Mbps and 1Mbps are supported */
883 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
884 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
885 if (error)
886 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
887
888 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
889 if (error)
890 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
891
892 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
893 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
894 if (error)
895 IWL_WARNING("check CCK and short slot %d | %d\n",
896 counter++, error);
897
898 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
899 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
900 if (error)
901 IWL_WARNING("check CCK & auto detect %d | %d\n",
902 counter++, error);
903
904 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
905 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
906 if (error)
907 IWL_WARNING("check TGG and auto detect %d | %d\n",
908 counter++, error);
909
910 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
911 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
912 RXON_FLG_ANT_A_MSK)) == 0);
913 if (error)
914 IWL_WARNING("check antenna %d %d\n", counter++, error);
915
916 if (error)
917 IWL_WARNING("Tuning to channel %d\n",
918 le16_to_cpu(rxon->channel));
919
920 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800921 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700922 return -1;
923 }
924 return 0;
925}
926
927/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800928 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800929 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700930 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800931 * If the RXON structure is changing enough to require a new tune,
932 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
933 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700934 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800935static int iwl3945_full_rxon_required(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700936{
937
938 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800939 if (!(iwl3945_is_associated(priv)) ||
Zhu Yib481de92007-09-25 17:54:57 -0700940 compare_ether_addr(priv->staging_rxon.bssid_addr,
941 priv->active_rxon.bssid_addr) ||
942 compare_ether_addr(priv->staging_rxon.node_addr,
943 priv->active_rxon.node_addr) ||
944 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
945 priv->active_rxon.wlap_bssid_addr) ||
946 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
947 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
948 (priv->staging_rxon.air_propagation !=
949 priv->active_rxon.air_propagation) ||
950 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
951 return 1;
952
953 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
954 * be updated with the RXON_ASSOC command -- however only some
955 * flag transitions are allowed using RXON_ASSOC */
956
957 /* Check if we are not switching bands */
958 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
959 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
960 return 1;
961
962 /* Check if we are switching association toggle */
963 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
964 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
965 return 1;
966
967 return 0;
968}
969
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800970static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700971{
972 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800973 struct iwl3945_rx_packet *res = NULL;
974 struct iwl3945_rxon_assoc_cmd rxon_assoc;
975 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700976 .id = REPLY_RXON_ASSOC,
977 .len = sizeof(rxon_assoc),
978 .meta.flags = CMD_WANT_SKB,
979 .data = &rxon_assoc,
980 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800981 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon;
982 const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700983
984 if ((rxon1->flags == rxon2->flags) &&
985 (rxon1->filter_flags == rxon2->filter_flags) &&
986 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
987 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
988 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
989 return 0;
990 }
991
992 rxon_assoc.flags = priv->staging_rxon.flags;
993 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
994 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
995 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
996 rxon_assoc.reserved = 0;
997
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800998 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700999 if (rc)
1000 return rc;
1001
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001002 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001003 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1004 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1005 rc = -EIO;
1006 }
1007
1008 priv->alloc_rxb_skb--;
1009 dev_kfree_skb_any(cmd.meta.u.skb);
1010
1011 return rc;
1012}
1013
1014/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001015 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -07001016 *
Ian Schram01ebd062007-10-25 17:15:22 +08001017 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -07001018 * the active_rxon structure is updated with the new data. This
1019 * function correctly transitions out of the RXON_ASSOC_MSK state if
1020 * a HW tune is required based on the RXON structure changes.
1021 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001022static int iwl3945_commit_rxon(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001023{
1024 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001025 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001026 int rc = 0;
1027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001028 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001029 return -1;
1030
1031 /* always get timestamp with Rx frame */
1032 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1033
1034 /* select antenna */
1035 priv->staging_rxon.flags &=
1036 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1037 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1038
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001039 rc = iwl3945_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001040 if (rc) {
1041 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1042 return -EINVAL;
1043 }
1044
1045 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001046 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -07001047 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001048 if (!iwl3945_full_rxon_required(priv)) {
1049 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001050 if (rc) {
1051 IWL_ERROR("Error setting RXON_ASSOC "
1052 "configuration (%d).\n", rc);
1053 return rc;
1054 }
1055
1056 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1057
1058 return 0;
1059 }
1060
1061 /* If we are currently associated and the new config requires
1062 * an RXON_ASSOC and the new config wants the associated mask enabled,
1063 * we must clear the associated from the active configuration
1064 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001065 if (iwl3945_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07001066 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1067 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1068 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1069
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001070 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1071 sizeof(struct iwl3945_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001072 &priv->active_rxon);
1073
1074 /* If the mask clearing failed then we set
1075 * active_rxon back to what it was previously */
1076 if (rc) {
1077 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1078 IWL_ERROR("Error clearing ASSOC_MSK on current "
1079 "configuration (%d).\n", rc);
1080 return rc;
1081 }
Zhu Yib481de92007-09-25 17:54:57 -07001082 }
1083
1084 IWL_DEBUG_INFO("Sending RXON\n"
1085 "* with%s RXON_FILTER_ASSOC_MSK\n"
1086 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -07001087 "* bssid = %pM\n",
Zhu Yib481de92007-09-25 17:54:57 -07001088 ((priv->staging_rxon.filter_flags &
1089 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1090 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -07001091 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001092
1093 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001094 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1095 sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001096 if (rc) {
1097 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1098 return rc;
1099 }
1100
1101 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1102
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001103 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08001104
Zhu Yib481de92007-09-25 17:54:57 -07001105 /* If we issue a new RXON command which required a tune then we must
1106 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001107 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001108 if (rc) {
1109 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1110 return rc;
1111 }
1112
1113 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001114 if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -07001115 IWL_INVALID_STATION) {
1116 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1117 return -EIO;
1118 }
1119
1120 /* If we have set the ASSOC_MSK and we are in BSS mode then
1121 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001122 if (iwl3945_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001123 (priv->iw_mode == NL80211_IFTYPE_STATION))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001124 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001125 == IWL_INVALID_STATION) {
1126 IWL_ERROR("Error adding AP address for transmit.\n");
1127 return -EIO;
1128 }
1129
Johannes Berg8318d782008-01-24 19:38:38 +01001130 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001131 rc = iwl3945_init_hw_rate_table(priv);
1132 if (rc) {
1133 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1134 return -EIO;
1135 }
1136
1137 return 0;
1138}
1139
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001140static int iwl3945_send_bt_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001141{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001142 struct iwl3945_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001143 .flags = 3,
1144 .lead_time = 0xAA,
1145 .max_kill = 1,
1146 .kill_ack_mask = 0,
1147 .kill_cts_mask = 0,
1148 };
1149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001150 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1151 sizeof(struct iwl3945_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001152}
1153
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001154static int iwl3945_send_scan_abort(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001155{
1156 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001157 struct iwl3945_rx_packet *res;
1158 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001159 .id = REPLY_SCAN_ABORT_CMD,
1160 .meta.flags = CMD_WANT_SKB,
1161 };
1162
1163 /* If there isn't a scan actively going on in the hardware
1164 * then we are in between scan bands and not actually
1165 * actively scanning, so don't send the abort command */
1166 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1167 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1168 return 0;
1169 }
1170
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001171 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001172 if (rc) {
1173 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1174 return rc;
1175 }
1176
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001177 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001178 if (res->u.status != CAN_ABORT_STATUS) {
1179 /* The scan abort will return 1 for success or
1180 * 2 for "failure". A failure condition can be
1181 * due to simply not being in an active scan which
1182 * can occur if we send the scan abort before we
1183 * the microcode has notified us that a scan is
1184 * completed. */
1185 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1186 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1187 clear_bit(STATUS_SCAN_HW, &priv->status);
1188 }
1189
1190 dev_kfree_skb_any(cmd.meta.u.skb);
1191
1192 return rc;
1193}
1194
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001195static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv,
1196 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001197 struct sk_buff *skb)
1198{
1199 return 1;
1200}
1201
1202/*
1203 * CARD_STATE_CMD
1204 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001205 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001206 *
1207 * When in the 'enable' state the card operates as normal.
1208 * When in the 'disable' state, the card enters into a low power mode.
1209 * When in the 'halt' state, the card is shut down and must be fully
1210 * restarted to come back on.
1211 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001212static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001213{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001214 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001215 .id = REPLY_CARD_STATE_CMD,
1216 .len = sizeof(u32),
1217 .data = &flags,
1218 .meta.flags = meta_flag,
1219 };
1220
1221 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001222 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001223
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001224 return iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001225}
1226
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001227static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv,
1228 struct iwl3945_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001229{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001230 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001231
1232 if (!skb) {
1233 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1234 return 1;
1235 }
1236
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001237 res = (struct iwl3945_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001238 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1239 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1240 res->hdr.flags);
1241 return 1;
1242 }
1243
1244 switch (res->u.add_sta.status) {
1245 case ADD_STA_SUCCESS_MSK:
1246 break;
1247 default:
1248 break;
1249 }
1250
1251 /* We didn't cache the SKB; let the caller free it */
1252 return 1;
1253}
1254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001255int iwl3945_send_add_station(struct iwl3945_priv *priv,
1256 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001257{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001258 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001259 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001260 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001261 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001262 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001263 .meta.flags = flags,
1264 .data = sta,
1265 };
1266
1267 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001268 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001269 else
1270 cmd.meta.flags |= CMD_WANT_SKB;
1271
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001272 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001273
1274 if (rc || (flags & CMD_ASYNC))
1275 return rc;
1276
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001277 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001278 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1279 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1280 res->hdr.flags);
1281 rc = -EIO;
1282 }
1283
1284 if (rc == 0) {
1285 switch (res->u.add_sta.status) {
1286 case ADD_STA_SUCCESS_MSK:
1287 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1288 break;
1289 default:
1290 rc = -EIO;
1291 IWL_WARNING("REPLY_ADD_STA failed\n");
1292 break;
1293 }
1294 }
1295
1296 priv->alloc_rxb_skb--;
1297 dev_kfree_skb_any(cmd.meta.u.skb);
1298
1299 return rc;
1300}
1301
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001302static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001303 struct ieee80211_key_conf *keyconf,
1304 u8 sta_id)
1305{
1306 unsigned long flags;
1307 __le16 key_flags = 0;
1308
1309 switch (keyconf->alg) {
1310 case ALG_CCMP:
1311 key_flags |= STA_KEY_FLG_CCMP;
1312 key_flags |= cpu_to_le16(
1313 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1314 key_flags &= ~STA_KEY_FLG_INVALID;
1315 break;
1316 case ALG_TKIP:
1317 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001318 default:
1319 return -EINVAL;
1320 }
1321 spin_lock_irqsave(&priv->sta_lock, flags);
1322 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1323 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1324 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1325 keyconf->keylen);
1326
1327 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1328 keyconf->keylen);
1329 priv->stations[sta_id].sta.key.key_flags = key_flags;
1330 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1331 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1332
1333 spin_unlock_irqrestore(&priv->sta_lock, flags);
1334
1335 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001336 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001337 return 0;
1338}
1339
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001340static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001341{
1342 unsigned long flags;
1343
1344 spin_lock_irqsave(&priv->sta_lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001345 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1346 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl3945_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001347 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1348 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1349 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1350 spin_unlock_irqrestore(&priv->sta_lock, flags);
1351
1352 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001353 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001354 return 0;
1355}
1356
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001357static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001358{
1359 struct list_head *element;
1360
1361 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1362 priv->frames_count);
1363
1364 while (!list_empty(&priv->free_frames)) {
1365 element = priv->free_frames.next;
1366 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001367 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001368 priv->frames_count--;
1369 }
1370
1371 if (priv->frames_count) {
1372 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1373 priv->frames_count);
1374 priv->frames_count = 0;
1375 }
1376}
1377
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001378static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001379{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001380 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001381 struct list_head *element;
1382 if (list_empty(&priv->free_frames)) {
1383 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1384 if (!frame) {
1385 IWL_ERROR("Could not allocate frame!\n");
1386 return NULL;
1387 }
1388
1389 priv->frames_count++;
1390 return frame;
1391 }
1392
1393 element = priv->free_frames.next;
1394 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001395 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001396}
1397
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001398static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001399{
1400 memset(frame, 0, sizeof(*frame));
1401 list_add(&frame->list, &priv->free_frames);
1402}
1403
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001404unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001405 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001406 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001407{
1408
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001409 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001410 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1411 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001412 return 0;
1413
1414 if (priv->ibss_beacon->len > left)
1415 return 0;
1416
1417 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1418
1419 return priv->ibss_beacon->len;
1420}
1421
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001422static u8 iwl3945_rate_get_lowest_plcp(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001423{
1424 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001425 int rate_mask;
1426
1427 /* Set rate mask*/
1428 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001429 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001430 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001431 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001432
1433 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001434 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001435 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001436 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001437 }
1438
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001439 /* No valid rate was found. Assign the lowest one */
1440 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1441 return IWL_RATE_1M_PLCP;
1442 else
1443 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001444}
1445
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001446static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001447{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001448 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001449 unsigned int frame_size;
1450 int rc;
1451 u8 rate;
1452
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001453 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001454
1455 if (!frame) {
1456 IWL_ERROR("Could not obtain free frame buffer for beacon "
1457 "command.\n");
1458 return -ENOMEM;
1459 }
1460
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001461 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001462
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001463 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001464
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001465 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001466 &frame->u.cmd[0]);
1467
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001468 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001469
1470 return rc;
1471}
1472
1473/******************************************************************************
1474 *
1475 * EEPROM related functions
1476 *
1477 ******************************************************************************/
1478
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001479static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001480{
1481 memcpy(mac, priv->eeprom.mac_address, 6);
1482}
1483
Reinette Chatre74a3a252008-01-23 10:15:19 -08001484/*
1485 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1486 * embedded controller) as EEPROM reader; each read is a series of pulses
1487 * to/from the EEPROM chip, not a single event, so even reads could conflict
1488 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1489 * simply claims ownership, which should be safe when this function is called
1490 * (i.e. before loading uCode!).
1491 */
1492static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1493{
1494 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1495 return 0;
1496}
1497
Zhu Yib481de92007-09-25 17:54:57 -07001498/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001499 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001500 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001501 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001502 *
1503 * NOTE: This routine uses the non-debug IO access functions.
1504 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001505int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001506{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001507 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001508 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001509 int sz = sizeof(priv->eeprom);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001510 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001511 u16 addr;
1512
1513 /* The EEPROM structure has several padding buffers within it
1514 * and when adding new EEPROM maps is subject to programmer errors
1515 * which may be very difficult to identify without explicitly
1516 * checking the resulting size of the eeprom map. */
1517 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1518
1519 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001520 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001521 return -ENOENT;
1522 }
1523
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001524 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001525 ret = iwl3945_eeprom_acquire_semaphore(priv);
1526 if (ret < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001527 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001528 return -ENOENT;
1529 }
1530
1531 /* eeprom is an array of 16bit values */
1532 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001533 u32 r;
1534
1535 _iwl3945_write32(priv, CSR_EEPROM_REG,
1536 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001537 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001538 ret = iwl3945_poll_direct_bit(priv, CSR_EEPROM_REG,
1539 CSR_EEPROM_REG_READ_VALID_MSK,
1540 IWL_EEPROM_ACCESS_TIMEOUT);
1541 if (ret < 0) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001542 IWL_ERROR("Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001543 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001544 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001545
1546 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001547 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001548 }
1549
1550 return 0;
1551}
1552
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001553static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001554{
1555 if (priv->hw_setting.shared_virt)
1556 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001557 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001558 priv->hw_setting.shared_virt,
1559 priv->hw_setting.shared_phys);
1560}
1561
1562/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001563 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001564 *
1565 * return : set the bit for each supported rate insert in ie
1566 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001567static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001568 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001569{
1570 u16 ret_rates = 0, bit;
1571 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001572 u8 *cnt = ie;
1573 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001574
1575 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1576 if (bit & supported_rate) {
1577 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001578 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001579 ((bit & basic_rate) ? 0x80 : 0x00);
1580 (*cnt)++;
1581 (*left)--;
1582 if ((*left <= 0) ||
1583 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001584 break;
1585 }
1586 }
1587
1588 return ret_rates;
1589}
1590
1591/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001592 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001593 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001594static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001595 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001596 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001597{
1598 int len = 0;
1599 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001600 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001601
1602 /* Make sure there is enough space for the probe request,
1603 * two mandatory IEs and the data */
1604 left -= 24;
1605 if (left < 0)
1606 return 0;
1607 len += 24;
1608
1609 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001610 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001611 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001612 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001613 frame->seq_ctrl = 0;
1614
1615 /* fill in our indirect SSID IE */
1616 /* ...next IE... */
1617
1618 left -= 2;
1619 if (left < 0)
1620 return 0;
1621 len += 2;
1622 pos = &(frame->u.probe_req.variable[0]);
1623 *pos++ = WLAN_EID_SSID;
1624 *pos++ = 0;
1625
Zhu Yib481de92007-09-25 17:54:57 -07001626 /* fill in supported rate */
1627 /* ...next IE... */
1628 left -= 2;
1629 if (left < 0)
1630 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001631
Zhu Yib481de92007-09-25 17:54:57 -07001632 /* ... fill it in... */
1633 *pos++ = WLAN_EID_SUPP_RATES;
1634 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001635
1636 priv->active_rate = priv->rates_mask;
1637 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001638 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1639
Tomas Winklerc7c46672007-10-18 02:04:15 +02001640 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001641 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001642 priv->active_rate_basic, &left);
1643 active_rates &= ~ret_rates;
1644
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001645 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001646 priv->active_rate_basic, &left);
1647 active_rates &= ~ret_rates;
1648
Zhu Yib481de92007-09-25 17:54:57 -07001649 len += 2 + *pos;
1650 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001651 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001652 goto fill_end;
1653
1654 /* fill in supported extended rate */
1655 /* ...next IE... */
1656 left -= 2;
1657 if (left < 0)
1658 return 0;
1659 /* ... fill it in... */
1660 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1661 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001662 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001663 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001664 if (*pos > 0)
1665 len += 2 + *pos;
1666
1667 fill_end:
1668 return (u16)len;
1669}
1670
1671/*
1672 * QoS support
1673*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001674static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
1675 struct iwl3945_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001676{
1677
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001678 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1679 sizeof(struct iwl3945_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001680}
1681
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001682static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001683{
1684 u16 cw_min = 15;
1685 u16 cw_max = 1023;
1686 u8 aifs = 2;
1687 u8 is_legacy = 0;
1688 unsigned long flags;
1689 int i;
1690
1691 spin_lock_irqsave(&priv->lock, flags);
1692 priv->qos_data.qos_active = 0;
1693
Winkler, Tomas6d1ef1a2008-12-09 11:29:00 -08001694 /* QoS always active in AP and ADHOC mode
1695 * In STA mode wait for association
1696 */
1697 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
1698 priv->iw_mode == NL80211_IFTYPE_AP)
1699 priv->qos_data.qos_active = 1;
1700 else
1701 priv->qos_data.qos_active = 0;
1702
1703
1704 /* check for legacy mode */
1705 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
1706 (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
1707 (priv->iw_mode == NL80211_IFTYPE_STATION &&
1708 (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001709 cw_min = 31;
1710 is_legacy = 1;
1711 }
1712
1713 if (priv->qos_data.qos_active)
1714 aifs = 3;
1715
1716 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1717 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1718 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1719 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1720 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1721
1722 if (priv->qos_data.qos_active) {
1723 i = 1;
1724 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1725 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1726 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1727 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1728 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1729
1730 i = 2;
1731 priv->qos_data.def_qos_parm.ac[i].cw_min =
1732 cpu_to_le16((cw_min + 1) / 2 - 1);
1733 priv->qos_data.def_qos_parm.ac[i].cw_max =
1734 cpu_to_le16(cw_max);
1735 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1736 if (is_legacy)
1737 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1738 cpu_to_le16(6016);
1739 else
1740 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1741 cpu_to_le16(3008);
1742 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1743
1744 i = 3;
1745 priv->qos_data.def_qos_parm.ac[i].cw_min =
1746 cpu_to_le16((cw_min + 1) / 4 - 1);
1747 priv->qos_data.def_qos_parm.ac[i].cw_max =
1748 cpu_to_le16((cw_max + 1) / 2 - 1);
1749 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1750 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1751 if (is_legacy)
1752 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1753 cpu_to_le16(3264);
1754 else
1755 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1756 cpu_to_le16(1504);
1757 } else {
1758 for (i = 1; i < 4; i++) {
1759 priv->qos_data.def_qos_parm.ac[i].cw_min =
1760 cpu_to_le16(cw_min);
1761 priv->qos_data.def_qos_parm.ac[i].cw_max =
1762 cpu_to_le16(cw_max);
1763 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1764 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1765 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1766 }
1767 }
1768 IWL_DEBUG_QOS("set QoS to default \n");
1769
1770 spin_unlock_irqrestore(&priv->lock, flags);
1771}
1772
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001773static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001774{
1775 unsigned long flags;
1776
Zhu Yib481de92007-09-25 17:54:57 -07001777 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1778 return;
1779
Zhu Yib481de92007-09-25 17:54:57 -07001780 spin_lock_irqsave(&priv->lock, flags);
1781 priv->qos_data.def_qos_parm.qos_flags = 0;
1782
1783 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1784 !priv->qos_data.qos_cap.q_AP.txop_request)
1785 priv->qos_data.def_qos_parm.qos_flags |=
1786 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1787
1788 if (priv->qos_data.qos_active)
1789 priv->qos_data.def_qos_parm.qos_flags |=
1790 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1791
1792 spin_unlock_irqrestore(&priv->lock, flags);
1793
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001794 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001795 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001796 priv->qos_data.qos_active);
1797
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001798 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001799 &(priv->qos_data.def_qos_parm));
1800 }
1801}
1802
Zhu Yib481de92007-09-25 17:54:57 -07001803/*
1804 * Power management (not Tx power!) functions
1805 */
1806#define MSEC_TO_USEC 1024
1807
Tomas Winkler600c0e12008-12-19 10:37:04 +08001808
1809#define NOSLP __constant_cpu_to_le16(0), 0, 0
1810#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -07001811#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
Zhu Yib481de92007-09-25 17:54:57 -07001818/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001819/* for TIM 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001820static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001821 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1822 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1823 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1824 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1825 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1826 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1827};
1828
Tomas Winklera96a27f2008-10-23 23:48:56 -07001829/* for TIM > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001830static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001831 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1832 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1833 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1834 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1835 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1836 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1837 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1838 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1839 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1840 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1841};
1842
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001843int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001844{
1845 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001846 struct iwl3945_power_mgr *pow_data;
1847 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001848 u16 pci_pm;
1849
1850 IWL_DEBUG_POWER("Initialize power \n");
1851
1852 pow_data = &(priv->power_data);
1853
1854 memset(pow_data, 0, sizeof(*pow_data));
1855
1856 pow_data->active_index = IWL_POWER_RANGE_0;
1857 pow_data->dtim_val = 0xffff;
1858
1859 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1860 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1861
1862 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1863 if (rc != 0)
1864 return 0;
1865 else {
Tomas Winkler600c0e12008-12-19 10:37:04 +08001866 struct iwl_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001867
1868 IWL_DEBUG_POWER("adjust power command flags\n");
1869
1870 for (i = 0; i < IWL_POWER_AC; i++) {
1871 cmd = &pow_data->pwr_range_0[i].cmd;
1872
1873 if (pci_pm & 0x1)
1874 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1875 else
1876 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1877 }
1878 }
1879 return rc;
1880}
1881
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001882static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
Tomas Winkler600c0e12008-12-19 10:37:04 +08001883 struct iwl_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001884{
1885 int rc = 0, i;
1886 u8 skip;
1887 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001888 struct iwl3945_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001889 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001890 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001891
1892 if (mode > IWL_POWER_INDEX_5) {
1893 IWL_DEBUG_POWER("Error invalid power mode \n");
1894 return -1;
1895 }
1896 pow_data = &(priv->power_data);
1897
1898 if (pow_data->active_index == IWL_POWER_RANGE_0)
1899 range = &pow_data->pwr_range_0[0];
1900 else
1901 range = &pow_data->pwr_range_1[1];
1902
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001903 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001904
1905#ifdef IWL_MAC80211_DISABLE
1906 if (priv->assoc_network != NULL) {
1907 unsigned long flags;
1908
1909 period = priv->assoc_network->tim.tim_period;
1910 }
1911#endif /*IWL_MAC80211_DISABLE */
1912 skip = range[mode].no_dtim;
1913
1914 if (period == 0) {
1915 period = 1;
1916 skip = 0;
1917 }
1918
1919 if (skip == 0) {
1920 max_sleep = period;
1921 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1922 } else {
1923 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1924 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1925 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1926 }
1927
1928 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1929 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1930 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1931 }
1932
1933 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1934 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1935 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1936 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1937 le32_to_cpu(cmd->sleep_interval[0]),
1938 le32_to_cpu(cmd->sleep_interval[1]),
1939 le32_to_cpu(cmd->sleep_interval[2]),
1940 le32_to_cpu(cmd->sleep_interval[3]),
1941 le32_to_cpu(cmd->sleep_interval[4]));
1942
1943 return rc;
1944}
1945
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001946static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001947{
John W. Linville9a62f732007-11-15 16:27:36 -05001948 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001949 int rc;
Tomas Winkler600c0e12008-12-19 10:37:04 +08001950 struct iwl_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001951
1952 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001953 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001954 * else user level */
1955 switch (mode) {
1956 case IWL_POWER_BATTERY:
1957 final_mode = IWL_POWER_INDEX_3;
1958 break;
1959 case IWL_POWER_AC:
1960 final_mode = IWL_POWER_MODE_CAM;
1961 break;
1962 default:
1963 final_mode = mode;
1964 break;
1965 }
1966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001967 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001968
Tomas Winkler600c0e12008-12-19 10:37:04 +08001969 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1970 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1971 sizeof(struct iwl3945_powertable_cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001972
1973 if (final_mode == IWL_POWER_MODE_CAM)
1974 clear_bit(STATUS_POWER_PMI, &priv->status);
1975 else
1976 set_bit(STATUS_POWER_PMI, &priv->status);
1977
1978 return rc;
1979}
1980
Zhu Yib481de92007-09-25 17:54:57 -07001981/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001982 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001983 *
1984 * NOTE: priv->mutex is not required before calling this function
1985 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001986static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001987{
1988 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1989 clear_bit(STATUS_SCANNING, &priv->status);
1990 return 0;
1991 }
1992
1993 if (test_bit(STATUS_SCANNING, &priv->status)) {
1994 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1995 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1996 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1997 queue_work(priv->workqueue, &priv->abort_scan);
1998
1999 } else
2000 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2001
2002 return test_bit(STATUS_SCANNING, &priv->status);
2003 }
2004
2005 return 0;
2006}
2007
2008/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002009 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002010 * @ms: amount of time to wait (in milliseconds) for scan to abort
2011 *
2012 * NOTE: priv->mutex must be held before calling this function
2013 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002014static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07002015{
2016 unsigned long now = jiffies;
2017 int ret;
2018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002019 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002020 if (ret && ms) {
2021 mutex_unlock(&priv->mutex);
2022 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2023 test_bit(STATUS_SCANNING, &priv->status))
2024 msleep(1);
2025 mutex_lock(&priv->mutex);
2026
2027 return test_bit(STATUS_SCANNING, &priv->status);
2028 }
2029
2030 return ret;
2031}
2032
Zhu Yib481de92007-09-25 17:54:57 -07002033#define MAX_UCODE_BEACON_INTERVAL 1024
2034#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2035
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002036static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07002037{
2038 u16 new_val = 0;
2039 u16 beacon_factor = 0;
2040
2041 beacon_factor =
2042 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2043 / MAX_UCODE_BEACON_INTERVAL;
2044 new_val = beacon_val / beacon_factor;
2045
2046 return cpu_to_le16(new_val);
2047}
2048
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002049static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002050{
2051 u64 interval_tm_unit;
2052 u64 tsf, result;
2053 unsigned long flags;
2054 struct ieee80211_conf *conf = NULL;
2055 u16 beacon_int = 0;
2056
2057 conf = ieee80211_get_hw_conf(priv->hw);
2058
2059 spin_lock_irqsave(&priv->lock, flags);
2060 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2061 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2062
2063 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2064
2065 tsf = priv->timestamp1;
2066 tsf = ((tsf << 32) | priv->timestamp0);
2067
2068 beacon_int = priv->beacon_int;
2069 spin_unlock_irqrestore(&priv->lock, flags);
2070
Johannes Berg05c914f2008-09-11 00:01:58 +02002071 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07002072 if (beacon_int == 0) {
2073 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2074 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2075 } else {
2076 priv->rxon_timing.beacon_interval =
2077 cpu_to_le16(beacon_int);
2078 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002079 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002080 le16_to_cpu(priv->rxon_timing.beacon_interval));
2081 }
2082
2083 priv->rxon_timing.atim_window = 0;
2084 } else {
2085 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002086 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002087 /* TODO: we need to get atim_window from upper stack
2088 * for now we set to 0 */
2089 priv->rxon_timing.atim_window = 0;
2090 }
2091
2092 interval_tm_unit =
2093 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2094 result = do_div(tsf, interval_tm_unit);
2095 priv->rxon_timing.beacon_init_val =
2096 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2097
2098 IWL_DEBUG_ASSOC
2099 ("beacon interval %d beacon timer %d beacon tim %d\n",
2100 le16_to_cpu(priv->rxon_timing.beacon_interval),
2101 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2102 le16_to_cpu(priv->rxon_timing.atim_window));
2103}
2104
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002105static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002106{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002107 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002108 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2109 return -EIO;
2110 }
2111
2112 if (test_bit(STATUS_SCANNING, &priv->status)) {
2113 IWL_DEBUG_SCAN("Scan already in progress.\n");
2114 return -EAGAIN;
2115 }
2116
2117 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2118 IWL_DEBUG_SCAN("Scan request while abort pending. "
2119 "Queuing.\n");
2120 return -EAGAIN;
2121 }
2122
2123 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002124 if (priv->cfg->sku & IWL_SKU_G)
2125 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
2126 if (priv->cfg->sku & IWL_SKU_A)
2127 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002128 set_bit(STATUS_SCANNING, &priv->status);
2129 priv->scan_start = jiffies;
2130 priv->scan_pass_start = priv->scan_start;
2131
2132 queue_work(priv->workqueue, &priv->request_scan);
2133
2134 return 0;
2135}
2136
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002137static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002138{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002139 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002140
2141 if (hw_decrypt)
2142 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2143 else
2144 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2145
2146 return 0;
2147}
2148
Johannes Berg8318d782008-01-24 19:38:38 +01002149static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2150 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002151{
Johannes Berg8318d782008-01-24 19:38:38 +01002152 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002153 priv->staging_rxon.flags &=
2154 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2155 | RXON_FLG_CCK_MSK);
2156 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2157 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002158 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002159 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2160 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2161 else
2162 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2163
Johannes Berg05c914f2008-09-11 00:01:58 +02002164 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002165 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2166
2167 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2168 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2169 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2170 }
2171}
2172
2173/*
Ian Schram01ebd062007-10-25 17:15:22 +08002174 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002175 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002176static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv,
2177 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002178{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002179 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002180
2181 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2182
Zhu, Yi60294de2008-10-29 14:05:45 -07002183 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002184 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -07002185 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2186 break;
2187
Johannes Berg05c914f2008-09-11 00:01:58 +02002188 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002189 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2190 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2191 break;
2192
Johannes Berg05c914f2008-09-11 00:01:58 +02002193 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002194 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2195 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2196 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2197 RXON_FILTER_ACCEPT_GRP_MSK;
2198 break;
2199
Johannes Berg05c914f2008-09-11 00:01:58 +02002200 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -07002201 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2202 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2203 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2204 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002205 default:
Zhu, Yi60294de2008-10-29 14:05:45 -07002206 IWL_ERROR("Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002207 break;
Zhu Yib481de92007-09-25 17:54:57 -07002208 }
2209
2210#if 0
2211 /* TODO: Figure out when short_preamble would be set and cache from
2212 * that */
2213 if (!hw_to_local(priv->hw)->short_preamble)
2214 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2215 else
2216 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2217#endif
2218
Johannes Berg8318d782008-01-24 19:38:38 +01002219 ch_info = iwl3945_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +08002220 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002221
2222 if (!ch_info)
2223 ch_info = &priv->channel_info[0];
2224
2225 /*
2226 * in some case A channels are all non IBSS
2227 * in this case force B/G channel
2228 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002229 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07002230 ch_info = &priv->channel_info[0];
2231
2232 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2233 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002234 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002235 else
Johannes Berg8318d782008-01-24 19:38:38 +01002236 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002237
Johannes Berg8318d782008-01-24 19:38:38 +01002238 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002239
2240 priv->staging_rxon.ofdm_basic_rates =
2241 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2242 priv->staging_rxon.cck_basic_rates =
2243 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2244}
2245
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002246static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002247{
Johannes Berg05c914f2008-09-11 00:01:58 +02002248 if (mode == NL80211_IFTYPE_ADHOC) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002249 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002250
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002251 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002252 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002253 le16_to_cpu(priv->staging_rxon.channel));
2254
2255 if (!ch_info || !is_channel_ibss(ch_info)) {
2256 IWL_ERROR("channel %d not IBSS channel\n",
2257 le16_to_cpu(priv->staging_rxon.channel));
2258 return -EINVAL;
2259 }
2260 }
2261
Zhu, Yi60294de2008-10-29 14:05:45 -07002262 iwl3945_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -07002263 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2264
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002265 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002266
Tomas Winklera96a27f2008-10-23 23:48:56 -07002267 /* don't commit rxon if rf-kill is on*/
Mohamed Abbasfde35712007-11-29 11:10:15 +08002268 if (!iwl3945_is_ready_rf(priv))
2269 return -EAGAIN;
2270
2271 cancel_delayed_work(&priv->scan_check);
2272 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2273 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2274 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2275 return -EAGAIN;
2276 }
2277
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002278 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002279
2280 return 0;
2281}
2282
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002283static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002284 struct ieee80211_tx_info *info,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002285 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002286 struct sk_buff *skb_frag,
2287 int last_frag)
2288{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002289 struct iwl3945_hw_key *keyinfo =
Johannes Berge039fa42008-05-15 12:55:29 +02002290 &priv->stations[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002291
2292 switch (keyinfo->alg) {
2293 case ALG_CCMP:
2294 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2295 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002296 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002297 break;
2298
2299 case ALG_TKIP:
2300#if 0
2301 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2302
2303 if (last_frag)
2304 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2305 8);
2306 else
2307 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2308#endif
2309 break;
2310
2311 case ALG_WEP:
2312 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002313 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002314
2315 if (keyinfo->keylen == 13)
2316 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2317
2318 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2319
2320 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002321 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002322 break;
2323
Zhu Yib481de92007-09-25 17:54:57 -07002324 default:
2325 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2326 break;
2327 }
2328}
2329
2330/*
2331 * handle build REPLY_TX command notification.
2332 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002333static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2334 struct iwl3945_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002335 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002336 struct ieee80211_hdr *hdr,
2337 int is_unicast, u8 std_id)
2338{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002339 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002340 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002341 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002342
2343 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002344 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002345 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002346 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002347 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002348 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002349 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2350 tx_flags |= TX_CMD_FLG_TSF_MSK;
2351 } else {
2352 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2353 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2354 }
2355
2356 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002357 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002358 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2359
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002360 if (ieee80211_is_data_qos(fc)) {
2361 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002362 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002363 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002364 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002365 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002366 }
Zhu Yib481de92007-09-25 17:54:57 -07002367
Johannes Berge6a98542008-10-21 12:40:02 +02002368 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002369 tx_flags |= TX_CMD_FLG_RTS_MSK;
2370 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002371 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002372 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2373 tx_flags |= TX_CMD_FLG_CTS_MSK;
2374 }
2375
2376 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2377 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2378
2379 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002380 if (ieee80211_is_mgmt(fc)) {
2381 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002382 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002383 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002384 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002385 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002386 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002387#ifdef CONFIG_IWL3945_LEDS
2388 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2389#endif
2390 }
Zhu Yib481de92007-09-25 17:54:57 -07002391
2392 cmd->cmd.tx.driver_txop = 0;
2393 cmd->cmd.tx.tx_flags = tx_flags;
2394 cmd->cmd.tx.next_frame_len = 0;
2395}
2396
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002397/**
2398 * iwl3945_get_sta_id - Find station's index within station table
2399 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002400static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002401{
2402 int sta_id;
2403 u16 fc = le16_to_cpu(hdr->frame_control);
2404
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002405 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002406 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2407 is_multicast_ether_addr(hdr->addr1))
2408 return priv->hw_setting.bcast_sta_id;
2409
2410 switch (priv->iw_mode) {
2411
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002412 /* If we are a client station in a BSS network, use the special
2413 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002414 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002415 return IWL_AP_ID;
2416
2417 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002418 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002419 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002420 if (sta_id != IWL_INVALID_STATION)
2421 return sta_id;
2422 return priv->hw_setting.bcast_sta_id;
2423
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002424 /* If this frame is going out to an IBSS network, find the station,
2425 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002426 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002427 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002428 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002429 if (sta_id != IWL_INVALID_STATION)
2430 return sta_id;
2431
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002432 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002433
2434 if (sta_id != IWL_INVALID_STATION)
2435 return sta_id;
2436
Johannes Berge1749612008-10-27 15:59:26 -07002437 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002438 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002439 hdr->addr1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002440 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002441 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002442 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002443 /* If we are in monitor mode, use BCAST. This is required for
2444 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002445 case NL80211_IFTYPE_MONITOR:
Stefanik Gábor914233d2008-06-30 17:23:30 +08002446 return priv->hw_setting.bcast_sta_id;
2447
Zhu Yib481de92007-09-25 17:54:57 -07002448 default:
Jiri Slaby6f147922008-08-11 23:49:41 +02002449 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002450 return priv->hw_setting.bcast_sta_id;
2451 }
2452}
2453
2454/*
2455 * start REPLY_TX command process
2456 */
Johannes Berge039fa42008-05-15 12:55:29 +02002457static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002458{
2459 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002460 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002461 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002462 u32 *control_flags;
Johannes Berge2530082008-05-17 00:57:14 +02002463 int txq_id = skb_get_queue_mapping(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002464 struct iwl3945_tx_queue *txq = NULL;
2465 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002466 dma_addr_t phys_addr;
2467 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002468 struct iwl3945_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002469 u16 len, idx, len_org, hdr_len;
2470 u8 id;
2471 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002472 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002473 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002474 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002475 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002476 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002477 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002478 unsigned long flags;
2479 int rc;
2480
2481 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002482 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002483 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2484 goto drop_unlock;
2485 }
2486
Johannes Berge039fa42008-05-15 12:55:29 +02002487 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002488 IWL_ERROR("ERROR: No TX rate available.\n");
2489 goto drop_unlock;
2490 }
2491
2492 unicast = !is_multicast_ether_addr(hdr->addr1);
2493 id = 0;
2494
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002495 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002496
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002497#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002498 if (ieee80211_is_auth(fc))
2499 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002500 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002501 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002502 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002503 IWL_DEBUG_TX("Sending REASSOC frame\n");
2504#endif
2505
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002506 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002507 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002508 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002509 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002510 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002511 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002512 goto drop_unlock;
2513 }
2514
2515 spin_unlock_irqrestore(&priv->lock, flags);
2516
Harvey Harrison7294ec92008-07-15 18:43:59 -07002517 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002518
2519 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002520 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002521 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002522 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2523 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002524 goto drop;
2525 }
2526
2527 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2528
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002529 if (ieee80211_is_data_qos(fc)) {
2530 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002531 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002532 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2533 IEEE80211_SCTL_SEQ;
2534 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2535 (hdr->seq_ctrl &
2536 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2537 seq_number += 0x10;
2538 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002539
2540 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002541 txq = &priv->txq[txq_id];
2542 q = &txq->q;
2543
2544 spin_lock_irqsave(&priv->lock, flags);
2545
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002546 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002547 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002548 memset(tfd, 0, sizeof(*tfd));
2549 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002550 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002551
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002552 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002553 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002554 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002555
2556 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002557 out_cmd = &txq->cmd[idx];
2558 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2559 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002560
2561 /*
2562 * Set up the Tx-command (not MAC!) header.
2563 * Store the chosen Tx queue and TFD index within the sequence field;
2564 * after Tx, uCode's Tx response will return this value so driver can
2565 * locate the frame within the tx queue and do post-tx processing.
2566 */
Zhu Yib481de92007-09-25 17:54:57 -07002567 out_cmd->hdr.cmd = REPLY_TX;
2568 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002569 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002570
2571 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002572 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2573
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002574 /*
2575 * Use the first empty entry in this queue's command buffer array
2576 * to contain the Tx command and MAC header concatenated together
2577 * (payload data will be in another buffer).
2578 * Size of this varies, due to varying MAC header length.
2579 * If end is not dword aligned, we'll have 2 extra bytes at the end
2580 * of the MAC header (device reads on dword boundaries).
2581 * We'll tell device about this padding later.
2582 */
Zhu Yib481de92007-09-25 17:54:57 -07002583 len = priv->hw_setting.tx_cmd_len +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002584 sizeof(struct iwl3945_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002585
2586 len_org = len;
2587 len = (len + 3) & ~3;
2588
2589 if (len_org != len)
2590 len_org = 1;
2591 else
2592 len_org = 0;
2593
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002594 /* Physical address of this Tx command's header (not MAC header!),
2595 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002596 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2597 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002598
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002599 /* Add buffer containing Tx command and MAC(!) header to TFD's
2600 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002601 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002602
Johannes Bergd0f09802008-07-29 11:32:07 +02002603 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002604 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002605
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002606 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2607 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002608 len = skb->len - hdr_len;
2609 if (len) {
2610 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2611 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002612 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002613 }
2614
Zhu Yib481de92007-09-25 17:54:57 -07002615 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002616 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002617 *control_flags = TFD_CTL_COUNT_SET(1);
2618 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002619 /* Else use 2 buffers.
2620 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002621 *control_flags = TFD_CTL_COUNT_SET(2) |
2622 TFD_CTL_PAD_SET(U32_PAD(len));
2623
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002624 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002625 len = (u16)skb->len;
2626 out_cmd->cmd.tx.len = cpu_to_le16(len);
2627
2628 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002629 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002630
2631 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002632 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002633
2634 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2635 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2636
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002637 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002638 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002639 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002640 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002641 } else {
2642 wait_write_ptr = 1;
2643 txq->need_update = 0;
2644 }
2645
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002646 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002647 sizeof(out_cmd->cmd.tx));
2648
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002649 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002650 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002651
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002652 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002653 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002654 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002655 spin_unlock_irqrestore(&priv->lock, flags);
2656
2657 if (rc)
2658 return rc;
2659
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002660 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002661 && priv->mac80211_registered) {
2662 if (wait_write_ptr) {
2663 spin_lock_irqsave(&priv->lock, flags);
2664 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002665 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002666 spin_unlock_irqrestore(&priv->lock, flags);
2667 }
2668
Johannes Berge2530082008-05-17 00:57:14 +02002669 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002670 }
2671
2672 return 0;
2673
2674drop_unlock:
2675 spin_unlock_irqrestore(&priv->lock, flags);
2676drop:
2677 return -1;
2678}
2679
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002680static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002681{
Johannes Berg8318d782008-01-24 19:38:38 +01002682 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002683 struct ieee80211_rate *rate;
2684 int i;
2685
Johannes Berg8318d782008-01-24 19:38:38 +01002686 sband = iwl3945_get_band(priv, priv->band);
2687 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002688 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2689 return;
2690 }
Zhu Yib481de92007-09-25 17:54:57 -07002691
2692 priv->active_rate = 0;
2693 priv->active_rate_basic = 0;
2694
Johannes Berg8318d782008-01-24 19:38:38 +01002695 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2696 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002697
Johannes Berg8318d782008-01-24 19:38:38 +01002698 for (i = 0; i < sband->n_bitrates; i++) {
2699 rate = &sband->bitrates[i];
2700 if ((rate->hw_value < IWL_RATE_COUNT) &&
2701 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2702 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2703 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2704 priv->active_rate |= (1 << rate->hw_value);
2705 }
Zhu Yib481de92007-09-25 17:54:57 -07002706 }
2707
2708 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2709 priv->active_rate, priv->active_rate_basic);
2710
2711 /*
2712 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2713 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2714 * OFDM
2715 */
2716 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2717 priv->staging_rxon.cck_basic_rates =
2718 ((priv->active_rate_basic &
2719 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2720 else
2721 priv->staging_rxon.cck_basic_rates =
2722 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2723
2724 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2725 priv->staging_rxon.ofdm_basic_rates =
2726 ((priv->active_rate_basic &
2727 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2728 IWL_FIRST_OFDM_RATE) & 0xFF;
2729 else
2730 priv->staging_rxon.ofdm_basic_rates =
2731 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2732}
2733
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002734static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002735{
2736 unsigned long flags;
2737
2738 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2739 return;
2740
2741 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2742 disable_radio ? "OFF" : "ON");
2743
2744 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002745 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002746 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002747 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002748 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002749 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002750 CSR_UCODE_SW_BIT_RFKILL);
2751 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002752 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002753 set_bit(STATUS_RF_KILL_SW, &priv->status);
2754 }
2755 return;
2756 }
2757
2758 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002759 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002760
2761 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2762 spin_unlock_irqrestore(&priv->lock, flags);
2763
2764 /* wake up ucode */
2765 msleep(10);
2766
2767 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002768 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
2769 if (!iwl3945_grab_nic_access(priv))
2770 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002771 spin_unlock_irqrestore(&priv->lock, flags);
2772
2773 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2774 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2775 "disabled by HW switch\n");
2776 return;
2777 }
2778
Zhu Yi808e72a2008-06-12 09:47:17 +08002779 if (priv->is_open)
2780 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002781 return;
2782}
2783
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002784void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002785 u32 decrypt_res, struct ieee80211_rx_status *stats)
2786{
2787 u16 fc =
2788 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2789
2790 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2791 return;
2792
2793 if (!(fc & IEEE80211_FCTL_PROTECTED))
2794 return;
2795
2796 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2797 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2798 case RX_RES_STATUS_SEC_TYPE_TKIP:
2799 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2800 RX_RES_STATUS_BAD_ICV_MIC)
2801 stats->flag |= RX_FLAG_MMIC_ERROR;
2802 case RX_RES_STATUS_SEC_TYPE_WEP:
2803 case RX_RES_STATUS_SEC_TYPE_CCMP:
2804 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2805 RX_RES_STATUS_DECRYPT_OK) {
2806 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2807 stats->flag |= RX_FLAG_DECRYPTED;
2808 }
2809 break;
2810
2811 default:
2812 break;
2813 }
2814}
2815
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002816#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002817
2818#include "iwl-spectrum.h"
2819
2820#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2821#define BEACON_TIME_MASK_HIGH 0xFF000000
2822#define TIME_UNIT 1024
2823
2824/*
2825 * extended beacon time format
2826 * time in usec will be changed into a 32-bit value in 8:24 format
2827 * the high 1 byte is the beacon counts
2828 * the lower 3 bytes is the time in usec within one beacon interval
2829 */
2830
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002831static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002832{
2833 u32 quot;
2834 u32 rem;
2835 u32 interval = beacon_interval * 1024;
2836
2837 if (!interval || !usec)
2838 return 0;
2839
2840 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2841 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2842
2843 return (quot << 24) + rem;
2844}
2845
2846/* base is usually what we get from ucode with each received frame,
2847 * the same as HW timer counter counting down
2848 */
2849
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002850static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002851{
2852 u32 base_low = base & BEACON_TIME_MASK_LOW;
2853 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2854 u32 interval = beacon_interval * TIME_UNIT;
2855 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2856 (addon & BEACON_TIME_MASK_HIGH);
2857
2858 if (base_low > addon_low)
2859 res += base_low - addon_low;
2860 else if (base_low < addon_low) {
2861 res += interval + base_low - addon_low;
2862 res += (1 << 24);
2863 } else
2864 res += (1 << 24);
2865
2866 return cpu_to_le32(res);
2867}
2868
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002869static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002870 struct ieee80211_measurement_params *params,
2871 u8 type)
2872{
Tomas Winkler600c0e12008-12-19 10:37:04 +08002873 struct iwl_spectrum_cmd spectrum;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002874 struct iwl3945_rx_packet *res;
2875 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002876 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2877 .data = (void *)&spectrum,
2878 .meta.flags = CMD_WANT_SKB,
2879 };
2880 u32 add_time = le64_to_cpu(params->start_time);
2881 int rc;
2882 int spectrum_resp_status;
2883 int duration = le16_to_cpu(params->duration);
2884
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002885 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002886 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002887 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002888 le64_to_cpu(params->start_time) - priv->last_tsf,
2889 le16_to_cpu(priv->rxon_timing.beacon_interval));
2890
2891 memset(&spectrum, 0, sizeof(spectrum));
2892
2893 spectrum.channel_count = cpu_to_le16(1);
2894 spectrum.flags =
2895 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2896 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2897 cmd.len = sizeof(spectrum);
2898 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2899
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002900 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002901 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002902 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002903 add_time,
2904 le16_to_cpu(priv->rxon_timing.beacon_interval));
2905 else
2906 spectrum.start_time = 0;
2907
2908 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2909 spectrum.channels[0].channel = params->channel;
2910 spectrum.channels[0].type = type;
2911 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2912 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2913 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2914
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002915 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002916 if (rc)
2917 return rc;
2918
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002919 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002920 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2921 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2922 rc = -EIO;
2923 }
2924
2925 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2926 switch (spectrum_resp_status) {
2927 case 0: /* Command will be handled */
2928 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002929 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2930 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002931 priv->measurement_status &= ~MEASUREMENT_READY;
2932 }
2933 priv->measurement_status |= MEASUREMENT_ACTIVE;
2934 rc = 0;
2935 break;
2936
2937 case 1: /* Command will not be handled */
2938 rc = -EAGAIN;
2939 break;
2940 }
2941
2942 dev_kfree_skb_any(cmd.meta.u.skb);
2943
2944 return rc;
2945}
2946#endif
2947
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002948static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
2949 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002950{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002951 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
2952 struct iwl3945_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002953 struct delayed_work *pwork;
2954
2955 palive = &pkt->u.alive_frame;
2956
2957 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2958 "0x%01X 0x%01X\n",
2959 palive->is_valid, palive->ver_type,
2960 palive->ver_subtype);
2961
2962 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2963 IWL_DEBUG_INFO("Initialization Alive received.\n");
2964 memcpy(&priv->card_alive_init,
2965 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002966 sizeof(struct iwl3945_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002967 pwork = &priv->init_alive_start;
2968 } else {
2969 IWL_DEBUG_INFO("Runtime Alive received.\n");
2970 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002971 sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002972 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002973 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002974 }
2975
2976 /* We delay the ALIVE response by 5ms to
2977 * give the HW RF Kill time to activate... */
2978 if (palive->is_valid == UCODE_VALID_OK)
2979 queue_delayed_work(priv->workqueue, pwork,
2980 msecs_to_jiffies(5));
2981 else
2982 IWL_WARNING("uCode did not respond OK.\n");
2983}
2984
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002985static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
2986 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002987{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002988 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002989
2990 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2991 return;
2992}
2993
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002994static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
2995 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002996{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002997 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002998
2999 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3000 "seq 0x%04X ser 0x%08X\n",
3001 le32_to_cpu(pkt->u.err_resp.error_type),
3002 get_cmd_string(pkt->u.err_resp.cmd_id),
3003 pkt->u.err_resp.cmd_id,
3004 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3005 le32_to_cpu(pkt->u.err_resp.error_info));
3006}
3007
3008#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3009
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003010static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003011{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003012 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3013 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003014 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003015 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3016 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3017 rxon->channel = csa->channel;
3018 priv->staging_rxon.channel = csa->channel;
3019}
3020
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003021static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3022 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003023{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003024#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003025 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003026 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003027
3028 if (!report->state) {
3029 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3030 "Spectrum Measure Notification: Start\n");
3031 return;
3032 }
3033
3034 memcpy(&priv->measure_report, report, sizeof(*report));
3035 priv->measurement_status |= MEASUREMENT_READY;
3036#endif
3037}
3038
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003039static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3040 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003041{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003042#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003043 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003044 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003045 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3046 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3047#endif
3048}
3049
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003050static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3051 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003052{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003053 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003054 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3055 "notification for %s:\n",
3056 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003057 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003058}
3059
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003060static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003061{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003062 struct iwl3945_priv *priv =
3063 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003064 struct sk_buff *beacon;
3065
3066 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02003067 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07003068
3069 if (!beacon) {
3070 IWL_ERROR("update beacon failed\n");
3071 return;
3072 }
3073
3074 mutex_lock(&priv->mutex);
3075 /* new beacon skb is allocated every time; dispose previous.*/
3076 if (priv->ibss_beacon)
3077 dev_kfree_skb(priv->ibss_beacon);
3078
3079 priv->ibss_beacon = beacon;
3080 mutex_unlock(&priv->mutex);
3081
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003082 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003083}
3084
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003085static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3086 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003087{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003088#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003089 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3090 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003091 u8 rate = beacon->beacon_notify_hdr.rate;
3092
3093 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3094 "tsf %d %d rate %d\n",
3095 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3096 beacon->beacon_notify_hdr.failure_frame,
3097 le32_to_cpu(beacon->ibss_mgr_status),
3098 le32_to_cpu(beacon->high_tsf),
3099 le32_to_cpu(beacon->low_tsf), rate);
3100#endif
3101
Johannes Berg05c914f2008-09-11 00:01:58 +02003102 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07003103 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3104 queue_work(priv->workqueue, &priv->beacon_update);
3105}
3106
3107/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003108static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3109 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003110{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003111#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003112 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3113 struct iwl3945_scanreq_notification *notif =
3114 (struct iwl3945_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003115
3116 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3117#endif
3118}
3119
3120/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003121static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3122 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003123{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003124 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3125 struct iwl3945_scanstart_notification *notif =
3126 (struct iwl3945_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003127 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3128 IWL_DEBUG_SCAN("Scan start: "
3129 "%d [802.11%s] "
3130 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3131 notif->channel,
3132 notif->band ? "bg" : "a",
3133 notif->tsf_high,
3134 notif->tsf_low, notif->status, notif->beacon_timer);
3135}
3136
3137/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003138static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3139 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003140{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003141 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3142 struct iwl3945_scanresults_notification *notif =
3143 (struct iwl3945_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003144
3145 IWL_DEBUG_SCAN("Scan ch.res: "
3146 "%d [802.11%s] "
3147 "(TSF: 0x%08X:%08X) - %d "
3148 "elapsed=%lu usec (%dms since last)\n",
3149 notif->channel,
3150 notif->band ? "bg" : "a",
3151 le32_to_cpu(notif->tsf_high),
3152 le32_to_cpu(notif->tsf_low),
3153 le32_to_cpu(notif->statistics[0]),
3154 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3155 jiffies_to_msecs(elapsed_jiffies
3156 (priv->last_scan_jiffies, jiffies)));
3157
3158 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003159 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003160}
3161
3162/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003163static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3164 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003165{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003166 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3167 struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003168
3169 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3170 scan_notif->scanned_channels,
3171 scan_notif->tsf_low,
3172 scan_notif->tsf_high, scan_notif->status);
3173
3174 /* The HW is no longer scanning */
3175 clear_bit(STATUS_SCAN_HW, &priv->status);
3176
3177 /* The scan completion notification came in, so kill that timer... */
3178 cancel_delayed_work(&priv->scan_check);
3179
3180 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003181 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
3182 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07003183 jiffies_to_msecs(elapsed_jiffies
3184 (priv->scan_pass_start, jiffies)));
3185
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003186 /* Remove this scanned band from the list of pending
3187 * bands to scan, band G precedes A in order of scanning
3188 * as seen in iwl3945_bg_request_scan */
3189 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
3190 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
3191 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
3192 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07003193
3194 /* If a request to abort was given, or the scan did not succeed
3195 * then we reset the scan state machine and terminate,
3196 * re-queuing another scan if one has been requested */
3197 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3198 IWL_DEBUG_INFO("Aborted scan completed.\n");
3199 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3200 } else {
3201 /* If there are more bands on this scan pass reschedule */
3202 if (priv->scan_bands > 0)
3203 goto reschedule;
3204 }
3205
3206 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003207 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003208 IWL_DEBUG_INFO("Setting scan to off\n");
3209
3210 clear_bit(STATUS_SCANNING, &priv->status);
3211
3212 IWL_DEBUG_INFO("Scan took %dms\n",
3213 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3214
3215 queue_work(priv->workqueue, &priv->scan_completed);
3216
3217 return;
3218
3219reschedule:
3220 priv->scan_pass_start = jiffies;
3221 queue_work(priv->workqueue, &priv->request_scan);
3222}
3223
3224/* Handle notification from uCode that card's power state is changing
3225 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003226static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3227 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003228{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003229 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003230 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3231 unsigned long status = priv->status;
3232
3233 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3234 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3235 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3236
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003237 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003238 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3239
3240 if (flags & HW_CARD_DISABLED)
3241 set_bit(STATUS_RF_KILL_HW, &priv->status);
3242 else
3243 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3244
3245
3246 if (flags & SW_CARD_DISABLED)
3247 set_bit(STATUS_RF_KILL_SW, &priv->status);
3248 else
3249 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3250
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003251 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003252
3253 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3254 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3255 (test_bit(STATUS_RF_KILL_SW, &status) !=
3256 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3257 queue_work(priv->workqueue, &priv->rf_kill);
3258 else
3259 wake_up_interruptible(&priv->wait_command_queue);
3260}
3261
3262/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003263 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003264 *
3265 * Setup the RX handlers for each of the reply types sent from the uCode
3266 * to the host.
3267 *
3268 * This function chains into the hardware specific files for them to setup
3269 * any hardware specific handlers as well.
3270 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003271static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003272{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003273 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3274 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3275 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3276 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003277 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003278 iwl3945_rx_spectrum_measure_notif;
3279 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003280 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003281 iwl3945_rx_pm_debug_statistics_notif;
3282 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003283
Ben Cahill9fbab512007-11-29 11:09:47 +08003284 /*
3285 * The same handler is used for both the REPLY to a discrete
3286 * statistics request from the host as well as for the periodic
3287 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003288 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003289 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3290 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003291
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003292 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3293 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003294 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003295 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003296 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003297 iwl3945_rx_scan_complete_notif;
3298 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003299
Ben Cahill9fbab512007-11-29 11:09:47 +08003300 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003301 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003302}
3303
3304/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003305 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3306 * When FW advances 'R' index, all entries between old and new 'R' index
3307 * need to be reclaimed.
3308 */
3309static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv,
3310 int txq_id, int index)
3311{
3312 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3313 struct iwl3945_queue *q = &txq->q;
3314 int nfreed = 0;
3315
3316 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3317 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3318 "is out of range [0-%d] %d %d.\n", txq_id,
3319 index, q->n_bd, q->write_ptr, q->read_ptr);
3320 return;
3321 }
3322
3323 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3324 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3325 if (nfreed > 1) {
3326 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
3327 q->write_ptr, q->read_ptr);
3328 queue_work(priv->workqueue, &priv->restart);
3329 break;
3330 }
3331 nfreed++;
3332 }
3333}
3334
3335
3336/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003337 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003338 * @rxb: Rx buffer to reclaim
3339 *
3340 * If an Rx buffer has an async callback associated with it the callback
3341 * will be executed. The attached skb (if present) will only be freed
3342 * if the callback returns 1
3343 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003344static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3345 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003346{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003347 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003348 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3349 int txq_id = SEQ_TO_QUEUE(sequence);
3350 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003351 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07003352 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003353 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003354
Zhu Yib481de92007-09-25 17:54:57 -07003355 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3356
3357 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3358 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3359
3360 /* Input error checking is done when commands are added to queue. */
3361 if (cmd->meta.flags & CMD_WANT_SKB) {
3362 cmd->meta.source->u.skb = rxb->skb;
3363 rxb->skb = NULL;
3364 } else if (cmd->meta.u.callback &&
3365 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3366 rxb->skb = NULL;
3367
Tomas Winkler91c066f2008-03-06 17:36:55 -08003368 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003369
3370 if (!(cmd->meta.flags & CMD_ASYNC)) {
3371 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3372 wake_up_interruptible(&priv->wait_command_queue);
3373 }
3374}
3375
3376/************************** RX-FUNCTIONS ****************************/
3377/*
3378 * Rx theory of operation
3379 *
3380 * The host allocates 32 DMA target addresses and passes the host address
3381 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3382 * 0 to 31
3383 *
3384 * Rx Queue Indexes
3385 * The host/firmware share two index registers for managing the Rx buffers.
3386 *
3387 * The READ index maps to the first position that the firmware may be writing
3388 * to -- the driver can read up to (but not including) this position and get
3389 * good data.
3390 * The READ index is managed by the firmware once the card is enabled.
3391 *
3392 * The WRITE index maps to the last position the driver has read from -- the
3393 * position preceding WRITE is the last slot the firmware can place a packet.
3394 *
3395 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3396 * WRITE = READ.
3397 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003398 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003399 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3400 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003401 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003402 * and fire the RX interrupt. The driver can then query the READ index and
3403 * process as many packets as possible, moving the WRITE index forward as it
3404 * resets the Rx queue buffers with new memory.
3405 *
3406 * The management in the driver is as follows:
3407 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3408 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003409 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003410 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003411 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3412 * 'processed' and 'read' driver indexes as well)
3413 * + A received packet is processed and handed to the kernel network stack,
3414 * detached from the iwl->rxq. The driver 'processed' index is updated.
3415 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3416 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3417 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3418 * were enough free buffers and RX_STALLED is set it is cleared.
3419 *
3420 *
3421 * Driver sequence:
3422 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003423 * iwl3945_rx_queue_alloc() Allocates rx_free
3424 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003425 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003426 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003427 * queue, updates firmware pointers, and updates
3428 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003429 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003430 *
3431 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003432 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003433 * READ INDEX, detaching the SKB from the pool.
3434 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003435 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003436 * slots.
3437 * ...
3438 *
3439 */
3440
3441/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003442 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003443 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003444static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003445{
3446 int s = q->read - q->write;
3447 if (s <= 0)
3448 s += RX_QUEUE_SIZE;
3449 /* keep some buffer to not confuse full and empty queue */
3450 s -= 2;
3451 if (s < 0)
3452 s = 0;
3453 return s;
3454}
3455
3456/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003457 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003458 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003459int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003460{
3461 u32 reg = 0;
3462 int rc = 0;
3463 unsigned long flags;
3464
3465 spin_lock_irqsave(&q->lock, flags);
3466
3467 if (q->need_update == 0)
3468 goto exit_unlock;
3469
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003470 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003471 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003472 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003473
3474 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003475 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003476 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3477 goto exit_unlock;
3478 }
3479
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003480 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003481 if (rc)
3482 goto exit_unlock;
3483
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003484 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003485 iwl3945_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003486 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003487 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003488
3489 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003490 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003491 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003492 iwl3945_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003493
3494
3495 q->need_update = 0;
3496
3497 exit_unlock:
3498 spin_unlock_irqrestore(&q->lock, flags);
3499 return rc;
3500}
3501
3502/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003503 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003504 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003505static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003506 dma_addr_t dma_addr)
3507{
3508 return cpu_to_le32((u32)dma_addr);
3509}
3510
3511/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003512 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003513 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003514 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003515 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003516 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003517 *
3518 * This moves the 'write' index forward to catch up with 'processed', and
3519 * also updates the memory address in the firmware to reference the new
3520 * target buffer.
3521 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003522static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003523{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003524 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003525 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003526 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003527 unsigned long flags;
3528 int write, rc;
3529
3530 spin_lock_irqsave(&rxq->lock, flags);
3531 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003532 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003533 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003534 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003535 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003536 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003537
3538 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003539 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003540 rxq->queue[rxq->write] = rxb;
3541 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3542 rxq->free_count--;
3543 }
3544 spin_unlock_irqrestore(&rxq->lock, flags);
3545 /* If the pre-allocated buffer pool is dropping low, schedule to
3546 * refill it */
3547 if (rxq->free_count <= RX_LOW_WATERMARK)
3548 queue_work(priv->workqueue, &priv->rx_replenish);
3549
3550
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003551 /* If we've added more space for the firmware to place data, tell it.
3552 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003553 if ((write != (rxq->write & ~0x7))
3554 || (abs(rxq->write - rxq->read) > 7)) {
3555 spin_lock_irqsave(&rxq->lock, flags);
3556 rxq->need_update = 1;
3557 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003558 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003559 if (rc)
3560 return rc;
3561 }
3562
3563 return 0;
3564}
3565
3566/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003567 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003568 *
3569 * When moving to rx_free an SKB is allocated for the slot.
3570 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003571 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003572 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003573 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003574static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003575{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003576 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003577 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003578 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003579 unsigned long flags;
3580 spin_lock_irqsave(&rxq->lock, flags);
3581 while (!list_empty(&rxq->rx_used)) {
3582 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003583 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003584
3585 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003586 rxb->skb =
3587 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3588 if (!rxb->skb) {
3589 if (net_ratelimit())
3590 printk(KERN_CRIT DRV_NAME
3591 ": Can not allocate SKB buffers\n");
3592 /* We don't reschedule replenish work here -- we will
3593 * call the restock method and if it still needs
3594 * more buffers it will schedule replenish */
3595 break;
3596 }
Zhu Yi12342c42007-12-20 11:27:32 +08003597
3598 /* If radiotap head is required, reserve some headroom here.
3599 * The physical head count is a variable rx_stats->phy_count.
3600 * We reserve 4 bytes here. Plus these extra bytes, the
3601 * headroom of the physical head should be enough for the
3602 * radiotap head that iwl3945 supported. See iwl3945_rt.
3603 */
3604 skb_reserve(rxb->skb, 4);
3605
Zhu Yib481de92007-09-25 17:54:57 -07003606 priv->alloc_rxb_skb++;
3607 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003608
3609 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003610 rxb->dma_addr =
3611 pci_map_single(priv->pci_dev, rxb->skb->data,
3612 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3613 list_add_tail(&rxb->list, &rxq->rx_free);
3614 rxq->free_count++;
3615 }
3616 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003617}
3618
3619/*
3620 * this should be called while priv->lock is locked
3621 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003622static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003623{
3624 struct iwl3945_priv *priv = data;
3625
3626 iwl3945_rx_allocate(priv);
3627 iwl3945_rx_queue_restock(priv);
3628}
3629
3630
3631void iwl3945_rx_replenish(void *data)
3632{
3633 struct iwl3945_priv *priv = data;
3634 unsigned long flags;
3635
3636 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003637
3638 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003639 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003640 spin_unlock_irqrestore(&priv->lock, flags);
3641}
3642
3643/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003644 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003645 * This free routine walks the list of POOL entries and if SKB is set to
3646 * non NULL it is unmapped and freed
3647 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003648static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003649{
3650 int i;
3651 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3652 if (rxq->pool[i].skb != NULL) {
3653 pci_unmap_single(priv->pci_dev,
3654 rxq->pool[i].dma_addr,
3655 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3656 dev_kfree_skb(rxq->pool[i].skb);
3657 }
3658 }
3659
3660 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3661 rxq->dma_addr);
3662 rxq->bd = NULL;
3663}
3664
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003665int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003666{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003667 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003668 struct pci_dev *dev = priv->pci_dev;
3669 int i;
3670
3671 spin_lock_init(&rxq->lock);
3672 INIT_LIST_HEAD(&rxq->rx_free);
3673 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003674
3675 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003676 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3677 if (!rxq->bd)
3678 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003679
Zhu Yib481de92007-09-25 17:54:57 -07003680 /* Fill the rx_used queue with _all_ of the Rx buffers */
3681 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3682 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003683
Zhu Yib481de92007-09-25 17:54:57 -07003684 /* Set us so that we have processed and used all buffers, but have
3685 * not restocked the Rx queue with fresh buffers */
3686 rxq->read = rxq->write = 0;
3687 rxq->free_count = 0;
3688 rxq->need_update = 0;
3689 return 0;
3690}
3691
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003692void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003693{
3694 unsigned long flags;
3695 int i;
3696 spin_lock_irqsave(&rxq->lock, flags);
3697 INIT_LIST_HEAD(&rxq->rx_free);
3698 INIT_LIST_HEAD(&rxq->rx_used);
3699 /* Fill the rx_used queue with _all_ of the Rx buffers */
3700 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3701 /* In the reset function, these buffers may have been allocated
3702 * to an SKB, so we need to unmap and free potential storage */
3703 if (rxq->pool[i].skb != NULL) {
3704 pci_unmap_single(priv->pci_dev,
3705 rxq->pool[i].dma_addr,
3706 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3707 priv->alloc_rxb_skb--;
3708 dev_kfree_skb(rxq->pool[i].skb);
3709 rxq->pool[i].skb = NULL;
3710 }
3711 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3712 }
3713
3714 /* Set us so that we have processed and used all buffers, but have
3715 * not restocked the Rx queue with fresh buffers */
3716 rxq->read = rxq->write = 0;
3717 rxq->free_count = 0;
3718 spin_unlock_irqrestore(&rxq->lock, flags);
3719}
3720
3721/* Convert linear signal-to-noise ratio into dB */
3722static u8 ratio2dB[100] = {
3723/* 0 1 2 3 4 5 6 7 8 9 */
3724 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3725 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3726 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3727 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3728 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3729 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3730 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3731 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3732 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3733 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3734};
3735
3736/* Calculates a relative dB value from a ratio of linear
3737 * (i.e. not dB) signal levels.
3738 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003739int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003740{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003741 /* 1000:1 or higher just report as 60 dB */
3742 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003743 return 60;
3744
Adrian Bunk221c80c2008-02-02 23:19:01 +02003745 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003746 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003747 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003748 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003749
3750 /* We shouldn't see this */
3751 if (sig_ratio < 1)
3752 return 0;
3753
3754 /* Use table for ratios 1:1 - 99:1 */
3755 return (int)ratio2dB[sig_ratio];
3756}
3757
3758#define PERFECT_RSSI (-20) /* dBm */
3759#define WORST_RSSI (-95) /* dBm */
3760#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3761
3762/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3763 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3764 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003765int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003766{
3767 int sig_qual;
3768 int degradation = PERFECT_RSSI - rssi_dbm;
3769
3770 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3771 * as indicator; formula is (signal dbm - noise dbm).
3772 * SNR at or above 40 is a great signal (100%).
3773 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3774 * Weakest usable signal is usually 10 - 15 dB SNR. */
3775 if (noise_dbm) {
3776 if (rssi_dbm - noise_dbm >= 40)
3777 return 100;
3778 else if (rssi_dbm < noise_dbm)
3779 return 0;
3780 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3781
3782 /* Else use just the signal level.
3783 * This formula is a least squares fit of data points collected and
3784 * compared with a reference system that had a percentage (%) display
3785 * for signal quality. */
3786 } else
3787 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3788 (15 * RSSI_RANGE + 62 * degradation)) /
3789 (RSSI_RANGE * RSSI_RANGE);
3790
3791 if (sig_qual > 100)
3792 sig_qual = 100;
3793 else if (sig_qual < 1)
3794 sig_qual = 0;
3795
3796 return sig_qual;
3797}
3798
3799/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003800 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003801 *
3802 * Uses the priv->rx_handlers callback function array to invoke
3803 * the appropriate handlers, including command responses,
3804 * frame-received notifications, and other notifications.
3805 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003806static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003807{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003808 struct iwl3945_rx_mem_buffer *rxb;
3809 struct iwl3945_rx_packet *pkt;
3810 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003811 u32 r, i;
3812 int reclaim;
3813 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003814 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003815 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003816
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003817 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3818 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003819 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003820 i = rxq->read;
3821
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003822 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3823 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003824 /* Rx interrupt, but nothing sent from uCode */
3825 if (i == r)
3826 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3827
3828 while (i != r) {
3829 rxb = rxq->queue[i];
3830
Ben Cahill9fbab512007-11-29 11:09:47 +08003831 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003832 * then a bug has been introduced in the queue refilling
3833 * routines -- catch it here */
3834 BUG_ON(rxb == NULL);
3835
3836 rxq->queue[i] = NULL;
3837
3838 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
3839 IWL_RX_BUF_SIZE,
3840 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003841 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003842
3843 /* Reclaim a command buffer only if this packet is a response
3844 * to a (driver-originated) command.
3845 * If the packet (e.g. Rx frame) originated from uCode,
3846 * there is no command buffer to reclaim.
3847 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3848 * but apparently a few don't get set; catch them here. */
3849 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3850 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3851 (pkt->hdr.cmd != REPLY_TX);
3852
3853 /* Based on type of command response or notification,
3854 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003855 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003856 if (priv->rx_handlers[pkt->hdr.cmd]) {
3857 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3858 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3859 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3860 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3861 } else {
3862 /* No handling needed */
3863 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3864 "r %d i %d No handler needed for %s, 0x%02x\n",
3865 r, i, get_cmd_string(pkt->hdr.cmd),
3866 pkt->hdr.cmd);
3867 }
3868
3869 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003870 /* Invoke any callbacks, transfer the skb to caller, and
3871 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003872 * as we reclaim the driver command queue */
3873 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003874 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003875 else
3876 IWL_WARNING("Claim null rxb?\n");
3877 }
3878
3879 /* For now we just don't re-use anything. We can tweak this
3880 * later to try and re-use notification packets and SKBs that
3881 * fail to Rx correctly */
3882 if (rxb->skb != NULL) {
3883 priv->alloc_rxb_skb--;
3884 dev_kfree_skb_any(rxb->skb);
3885 rxb->skb = NULL;
3886 }
3887
3888 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
3889 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3890 spin_lock_irqsave(&rxq->lock, flags);
3891 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3892 spin_unlock_irqrestore(&rxq->lock, flags);
3893 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003894 /* If there are a lot of unused frames,
3895 * restock the Rx queue so ucode won't assert. */
3896 if (fill_rx) {
3897 count++;
3898 if (count >= 8) {
3899 priv->rxq.read = i;
3900 __iwl3945_rx_replenish(priv);
3901 count = 0;
3902 }
3903 }
Zhu Yib481de92007-09-25 17:54:57 -07003904 }
3905
3906 /* Backtrack one entry */
3907 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003908 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003909}
3910
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003911/**
3912 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3913 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003914static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
3915 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003916{
3917 u32 reg = 0;
3918 int rc = 0;
3919 int txq_id = txq->q.id;
3920
3921 if (txq->need_update == 0)
3922 return rc;
3923
3924 /* if we're trying to save power */
3925 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3926 /* wake up nic if it's powered down ...
3927 * uCode will wake up, and interrupt us again, so next
3928 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003929 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003930
3931 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3932 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003933 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003934 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3935 return rc;
3936 }
3937
3938 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003939 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003940 if (rc)
3941 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003942 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003943 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003944 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003945
3946 /* else not in power-save mode, uCode will never sleep when we're
3947 * trying to tx (during RFKILL, we're not trying to tx). */
3948 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003949 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003950 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003951
3952 txq->need_update = 0;
3953
3954 return rc;
3955}
3956
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003957#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003958static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003959{
3960 IWL_DEBUG_RADIO("RX CONFIG:\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003961 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003962 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3963 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3964 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3965 le32_to_cpu(rxon->filter_flags));
3966 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3967 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3968 rxon->ofdm_basic_rates);
3969 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003970 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3971 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003972 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3973}
3974#endif
3975
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003976static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003977{
3978 IWL_DEBUG_ISR("Enabling interrupts\n");
3979 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003980 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003981}
3982
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003983
3984/* call this function to flush any scheduled tasklet */
3985static inline void iwl_synchronize_irq(struct iwl3945_priv *priv)
3986{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003987 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003988 synchronize_irq(priv->pci_dev->irq);
3989 tasklet_kill(&priv->irq_tasklet);
3990}
3991
3992
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003993static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003994{
3995 clear_bit(STATUS_INT_ENABLED, &priv->status);
3996
3997 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003998 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003999
4000 /* acknowledge/clear/reset any interrupts still pending
4001 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004002 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4003 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004004 IWL_DEBUG_ISR("Disabled interrupts\n");
4005}
4006
4007static const char *desc_lookup(int i)
4008{
4009 switch (i) {
4010 case 1:
4011 return "FAIL";
4012 case 2:
4013 return "BAD_PARAM";
4014 case 3:
4015 return "BAD_CHECKSUM";
4016 case 4:
4017 return "NMI_INTERRUPT";
4018 case 5:
4019 return "SYSASSERT";
4020 case 6:
4021 return "FATAL_ERROR";
4022 }
4023
4024 return "UNKNOWN";
4025}
4026
4027#define ERROR_START_OFFSET (1 * sizeof(u32))
4028#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4029
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004030static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004031{
4032 u32 i;
4033 u32 desc, time, count, base, data1;
4034 u32 blink1, blink2, ilink1, ilink2;
4035 int rc;
4036
4037 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4038
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004039 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004040 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4041 return;
4042 }
4043
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004044 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004045 if (rc) {
4046 IWL_WARNING("Can not read from adapter at this time.\n");
4047 return;
4048 }
4049
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004050 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004051
4052 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4053 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004054 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004055 }
4056
4057 IWL_ERROR("Desc Time asrtPC blink2 "
4058 "ilink1 nmiPC Line\n");
4059 for (i = ERROR_START_OFFSET;
4060 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4061 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004062 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004063 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004064 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004065 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004066 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004067 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004068 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004069 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004070 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004071 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004072 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004073 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004074 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004075
4076 IWL_ERROR
4077 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4078 desc_lookup(desc), desc, time, blink1, blink2,
4079 ilink1, ilink2, data1);
4080 }
4081
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004082 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004083
4084}
4085
Ben Cahillf58177b2007-11-29 11:09:43 +08004086#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004087
4088/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004089 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004090 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004091 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004092 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004093static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004094 u32 num_events, u32 mode)
4095{
4096 u32 i;
4097 u32 base; /* SRAM byte address of event log header */
4098 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4099 u32 ptr; /* SRAM byte address of log data */
4100 u32 ev, time, data; /* event log data */
4101
4102 if (num_events == 0)
4103 return;
4104
4105 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4106
4107 if (mode == 0)
4108 event_size = 2 * sizeof(u32);
4109 else
4110 event_size = 3 * sizeof(u32);
4111
4112 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4113
4114 /* "time" is actually "data" for mode 0 (no timestamp).
4115 * place event id # at far right for easier visual parsing. */
4116 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004117 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004118 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004119 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004120 ptr += sizeof(u32);
4121 if (mode == 0)
4122 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4123 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004124 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004125 ptr += sizeof(u32);
4126 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4127 }
4128 }
4129}
4130
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004131static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004132{
4133 int rc;
4134 u32 base; /* SRAM byte address of event log header */
4135 u32 capacity; /* event log capacity in # entries */
4136 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4137 u32 num_wraps; /* # times uCode wrapped to top of log */
4138 u32 next_entry; /* index of next entry to be written by uCode */
4139 u32 size; /* # entries that we'll print */
4140
4141 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004142 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004143 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4144 return;
4145 }
4146
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004147 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004148 if (rc) {
4149 IWL_WARNING("Can not read from adapter at this time.\n");
4150 return;
4151 }
4152
4153 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004154 capacity = iwl3945_read_targ_mem(priv, base);
4155 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4156 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4157 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004158
4159 size = num_wraps ? capacity : next_entry;
4160
4161 /* bail out if nothing in log */
4162 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004163 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004164 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004165 return;
4166 }
4167
Zhu Yi583fab32007-09-27 11:27:30 +08004168 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004169 size, num_wraps);
4170
4171 /* if uCode has wrapped back to top of log, start at the oldest entry,
4172 * i.e the next one that uCode would fill. */
4173 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004174 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004175 capacity - next_entry, mode);
4176
4177 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004178 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004179
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004180 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004181}
4182
4183/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004184 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004185 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004186static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004187{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004188 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004189 set_bit(STATUS_FW_ERROR, &priv->status);
4190
4191 /* Cancel currently queued command. */
4192 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4193
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004194#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004195 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4196 iwl3945_dump_nic_error_log(priv);
4197 iwl3945_dump_nic_event_log(priv);
4198 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004199 }
4200#endif
4201
4202 wake_up_interruptible(&priv->wait_command_queue);
4203
4204 /* Keep the restart process from trying to send host
4205 * commands by clearing the INIT status bit */
4206 clear_bit(STATUS_READY, &priv->status);
4207
4208 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4209 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4210 "Restarting adapter due to uCode error.\n");
4211
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004212 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004213 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4214 sizeof(priv->recovery_rxon));
4215 priv->error_recovering = 1;
4216 }
4217 queue_work(priv->workqueue, &priv->restart);
4218 }
4219}
4220
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004221static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004222{
4223 unsigned long flags;
4224
4225 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4226 sizeof(priv->staging_rxon));
4227 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004228 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004229
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004230 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004231
4232 spin_lock_irqsave(&priv->lock, flags);
4233 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4234 priv->error_recovering = 0;
4235 spin_unlock_irqrestore(&priv->lock, flags);
4236}
4237
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004238static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004239{
4240 u32 inta, handled = 0;
4241 u32 inta_fh;
4242 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004243#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004244 u32 inta_mask;
4245#endif
4246
4247 spin_lock_irqsave(&priv->lock, flags);
4248
4249 /* Ack/clear/reset pending uCode interrupts.
4250 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4251 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004252 inta = iwl3945_read32(priv, CSR_INT);
4253 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004254
4255 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4256 * Any new interrupts that happen after this, either while we're
4257 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004258 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4259 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004260
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004261#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004262 if (iwl3945_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004263 /* just for debug */
4264 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004265 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4266 inta, inta_mask, inta_fh);
4267 }
4268#endif
4269
4270 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4271 * atomic, make sure that inta covers all the interrupts that
4272 * we've discovered, even if FH interrupt came in just after
4273 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004274 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004275 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004276 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004277 inta |= CSR_INT_BIT_FH_TX;
4278
4279 /* Now service all interrupt bits discovered above. */
4280 if (inta & CSR_INT_BIT_HW_ERR) {
4281 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4282
4283 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004284 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004285
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004286 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004287
4288 handled |= CSR_INT_BIT_HW_ERR;
4289
4290 spin_unlock_irqrestore(&priv->lock, flags);
4291
4292 return;
4293 }
4294
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004295#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004296 if (iwl3945_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004297 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004298 if (inta & CSR_INT_BIT_SCD)
4299 IWL_DEBUG_ISR("Scheduler finished to transmit "
4300 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004301
4302 /* Alive notification via Rx interrupt will do the real work */
4303 if (inta & CSR_INT_BIT_ALIVE)
4304 IWL_DEBUG_ISR("Alive interrupt\n");
4305 }
4306#endif
4307 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004308 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004309
Zhu Yib481de92007-09-25 17:54:57 -07004310 /* Error detected by uCode */
4311 if (inta & CSR_INT_BIT_SW_ERR) {
4312 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4313 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004314 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004315 handled |= CSR_INT_BIT_SW_ERR;
4316 }
4317
4318 /* uCode wakes up after power-down sleep */
4319 if (inta & CSR_INT_BIT_WAKEUP) {
4320 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004321 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4322 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4323 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4324 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4325 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4326 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4327 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004328
4329 handled |= CSR_INT_BIT_WAKEUP;
4330 }
4331
4332 /* All uCode command responses, including Tx command responses,
4333 * Rx "responses" (frame-received notification), and other
4334 * notifications from uCode come through here*/
4335 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004336 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004337 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4338 }
4339
4340 if (inta & CSR_INT_BIT_FH_TX) {
4341 IWL_DEBUG_ISR("Tx interrupt\n");
4342
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004343 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4344 if (!iwl3945_grab_nic_access(priv)) {
Tomas Winklerbddadf82008-12-19 10:37:01 +08004345 iwl3945_write_direct32(priv, FH39_TCSR_CREDIT
4346 (FH39_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004347 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004348 }
4349 handled |= CSR_INT_BIT_FH_TX;
4350 }
4351
4352 if (inta & ~handled)
4353 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4354
4355 if (inta & ~CSR_INI_SET_MASK) {
4356 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4357 inta & ~CSR_INI_SET_MASK);
4358 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4359 }
4360
4361 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004362 /* only Re-enable if disabled by irq */
4363 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4364 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004365
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004366#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004367 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4368 inta = iwl3945_read32(priv, CSR_INT);
4369 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4370 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004371 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4372 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4373 }
4374#endif
4375 spin_unlock_irqrestore(&priv->lock, flags);
4376}
4377
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004378static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004379{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004380 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004381 u32 inta, inta_mask;
4382 u32 inta_fh;
4383 if (!priv)
4384 return IRQ_NONE;
4385
4386 spin_lock(&priv->lock);
4387
4388 /* Disable (but don't clear!) interrupts here to avoid
4389 * back-to-back ISRs and sporadic interrupts from our NIC.
4390 * If we have something to service, the tasklet will re-enable ints.
4391 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004392 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4393 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004394
4395 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004396 inta = iwl3945_read32(priv, CSR_INT);
4397 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004398
4399 /* Ignore interrupt if there's nothing in NIC to service.
4400 * This may be due to IRQ shared with another device,
4401 * or due to sporadic interrupts thrown from our NIC. */
4402 if (!inta && !inta_fh) {
4403 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4404 goto none;
4405 }
4406
4407 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4408 /* Hardware disappeared */
Zhu Yi99df6302008-12-02 12:13:58 -08004409 IWL_WARNING("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004410 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004411 }
4412
4413 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4414 inta, inta_mask, inta_fh);
4415
Joonwoo Park25c03d82008-01-23 10:15:20 -08004416 inta &= ~CSR_INT_BIT_SCD;
4417
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004418 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004419 if (likely(inta || inta_fh))
4420 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004421unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004422 spin_unlock(&priv->lock);
4423
4424 return IRQ_HANDLED;
4425
4426 none:
4427 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004428 /* only Re-enable if disabled by irq */
4429 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4430 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004431 spin_unlock(&priv->lock);
4432 return IRQ_NONE;
4433}
4434
4435/************************** EEPROM BANDS ****************************
4436 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004437 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004438 * EEPROM contents to the specific channel number supported for each
4439 * band.
4440 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004441 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004442 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4443 * The specific geography and calibration information for that channel
4444 * is contained in the eeprom map itself.
4445 *
4446 * During init, we copy the eeprom information and channel map
4447 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4448 *
4449 * channel_map_24/52 provides the index in the channel_info array for a
4450 * given channel. We have to have two separate maps as there is channel
4451 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4452 * band_2
4453 *
4454 * A value of 0xff stored in the channel_map indicates that the channel
4455 * is not supported by the hardware at all.
4456 *
4457 * A value of 0xfe in the channel_map indicates that the channel is not
4458 * valid for Tx with the current hardware. This means that
4459 * while the system can tune and receive on a given channel, it may not
4460 * be able to associate or transmit any frames on that
4461 * channel. There is no corresponding channel information for that
4462 * entry.
4463 *
4464 *********************************************************************/
4465
4466/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004467static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004468 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4469};
4470
4471/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004472static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004473 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4474};
4475
Ben Cahill9fbab512007-11-29 11:09:47 +08004476static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004477 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4478};
4479
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004480static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004481 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4482};
4483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004484static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004485 145, 149, 153, 157, 161, 165
4486};
4487
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004488static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004489 int *eeprom_ch_count,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004490 const struct iwl3945_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004491 **eeprom_ch_info,
4492 const u8 **eeprom_ch_index)
4493{
4494 switch (band) {
4495 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004496 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004497 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004498 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004499 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004500 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004501 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004502 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004503 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004504 break;
4505 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004506 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004507 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004508 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004509 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004510 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004511 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004512 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004513 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004514 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004515 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004516 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004517 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004518 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004519 break;
4520 default:
4521 BUG();
4522 return;
4523 }
4524}
4525
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004526/**
4527 * iwl3945_get_channel_info - Find driver's private channel info
4528 *
4529 * Based on band and channel number.
4530 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004531const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004532 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004533{
4534 int i;
4535
Johannes Berg8318d782008-01-24 19:38:38 +01004536 switch (band) {
4537 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004538 for (i = 14; i < priv->channel_count; i++) {
4539 if (priv->channel_info[i].channel == channel)
4540 return &priv->channel_info[i];
4541 }
4542 break;
4543
Johannes Berg8318d782008-01-24 19:38:38 +01004544 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004545 if (channel >= 1 && channel <= 14)
4546 return &priv->channel_info[channel - 1];
4547 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004548 case IEEE80211_NUM_BANDS:
4549 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004550 }
4551
4552 return NULL;
4553}
4554
4555#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4556 ? # x " " : "")
4557
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004558/**
4559 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4560 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004561static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004562{
4563 int eeprom_ch_count = 0;
4564 const u8 *eeprom_ch_index = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004565 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004566 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004567 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004568
4569 if (priv->channel_count) {
4570 IWL_DEBUG_INFO("Channel map already initialized.\n");
4571 return 0;
4572 }
4573
4574 if (priv->eeprom.version < 0x2f) {
4575 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
4576 priv->eeprom.version);
4577 return -EINVAL;
4578 }
4579
4580 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4581
4582 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004583 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4584 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4585 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4586 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4587 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004588
4589 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4590
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004591 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004592 priv->channel_count, GFP_KERNEL);
4593 if (!priv->channel_info) {
4594 IWL_ERROR("Could not allocate channel_info\n");
4595 priv->channel_count = 0;
4596 return -ENOMEM;
4597 }
4598
4599 ch_info = priv->channel_info;
4600
4601 /* Loop through the 5 EEPROM bands adding them in order to the
4602 * channel map we maintain (that contains additional information than
4603 * what just in the EEPROM) */
4604 for (band = 1; band <= 5; band++) {
4605
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004606 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004607 &eeprom_ch_info, &eeprom_ch_index);
4608
4609 /* Loop through each band adding each of the channels */
4610 for (ch = 0; ch < eeprom_ch_count; ch++) {
4611 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004612 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4613 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004614
4615 /* permanently store EEPROM's channel regulatory flags
4616 * and max power in channel info database. */
4617 ch_info->eeprom = eeprom_ch_info[ch];
4618
4619 /* Copy the run-time flags so they are there even on
4620 * invalid channels */
4621 ch_info->flags = eeprom_ch_info[ch].flags;
4622
4623 if (!(is_channel_valid(ch_info))) {
4624 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4625 "No traffic\n",
4626 ch_info->channel,
4627 ch_info->flags,
4628 is_channel_a_band(ch_info) ?
4629 "5.2" : "2.4");
4630 ch_info++;
4631 continue;
4632 }
4633
4634 /* Initialize regulatory-based run-time data */
4635 ch_info->max_power_avg = ch_info->curr_txpow =
4636 eeprom_ch_info[ch].max_power_avg;
4637 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4638 ch_info->min_power = 0;
4639
Guy Cohenfe7c4042008-04-21 15:41:56 -07004640 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004641 " %ddBm): Ad-Hoc %ssupported\n",
4642 ch_info->channel,
4643 is_channel_a_band(ch_info) ?
4644 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004645 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004646 CHECK_AND_PRINT(IBSS),
4647 CHECK_AND_PRINT(ACTIVE),
4648 CHECK_AND_PRINT(RADAR),
4649 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004650 CHECK_AND_PRINT(DFS),
4651 eeprom_ch_info[ch].flags,
4652 eeprom_ch_info[ch].max_power_avg,
4653 ((eeprom_ch_info[ch].
4654 flags & EEPROM_CHANNEL_IBSS)
4655 && !(eeprom_ch_info[ch].
4656 flags & EEPROM_CHANNEL_RADAR))
4657 ? "" : "not ");
4658
4659 /* Set the user_txpower_limit to the highest power
4660 * supported by any channel */
4661 if (eeprom_ch_info[ch].max_power_avg >
4662 priv->user_txpower_limit)
4663 priv->user_txpower_limit =
4664 eeprom_ch_info[ch].max_power_avg;
4665
4666 ch_info++;
4667 }
4668 }
4669
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004670 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004671 if (iwl3945_txpower_set_from_eeprom(priv))
4672 return -EIO;
4673
4674 return 0;
4675}
4676
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004677/*
4678 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4679 */
4680static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
4681{
4682 kfree(priv->channel_info);
4683 priv->channel_count = 0;
4684}
4685
Zhu Yib481de92007-09-25 17:54:57 -07004686/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4687 * sending probe req. This should be set long enough to hear probe responses
4688 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004689#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4690#define IWL_ACTIVE_DWELL_TIME_52 (20)
4691
4692#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4693#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004694
4695/* For faster active scanning, scan will move to the next channel if fewer than
4696 * PLCP_QUIET_THRESH packets are heard on this channel within
4697 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4698 * time if it's a quiet channel (nothing responded to our probe, and there's
4699 * no other traffic).
4700 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4701#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004702#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004703
4704/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4705 * Must be set longer than active dwell time.
4706 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4707#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4708#define IWL_PASSIVE_DWELL_TIME_52 (10)
4709#define IWL_PASSIVE_DWELL_BASE (100)
4710#define IWL_CHANNEL_TUNE_TIME 5
4711
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004712#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004713
Johannes Berg8318d782008-01-24 19:38:38 +01004714static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004715 enum ieee80211_band band,
4716 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004717{
Johannes Berg8318d782008-01-24 19:38:38 +01004718 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004719 return IWL_ACTIVE_DWELL_TIME_52 +
4720 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004721 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004722 return IWL_ACTIVE_DWELL_TIME_24 +
4723 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004724}
4725
Johannes Berg8318d782008-01-24 19:38:38 +01004726static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
4727 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004728{
Johannes Berg8318d782008-01-24 19:38:38 +01004729 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004730 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4731 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4732
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004733 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004734 /* If we're associated, we clamp the maximum passive
4735 * dwell time to be 98% of the beacon interval (minus
4736 * 2 * channel tune time) */
4737 passive = priv->beacon_int;
4738 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4739 passive = IWL_PASSIVE_DWELL_BASE;
4740 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4741 }
4742
Zhu Yib481de92007-09-25 17:54:57 -07004743 return passive;
4744}
4745
Johannes Berg8318d782008-01-24 19:38:38 +01004746static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
4747 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004748 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004749 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004750{
4751 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004752 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004753 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004754 u16 passive_dwell = 0;
4755 u16 active_dwell = 0;
4756 int added, i;
4757
Johannes Berg8318d782008-01-24 19:38:38 +01004758 sband = iwl3945_get_band(priv, band);
4759 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004760 return 0;
4761
Johannes Berg8318d782008-01-24 19:38:38 +01004762 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004763
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004764 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004765 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004766
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004767 if (passive_dwell <= active_dwell)
4768 passive_dwell = active_dwell + 1;
4769
Johannes Berg8318d782008-01-24 19:38:38 +01004770 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004771 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4772 continue;
4773
Johannes Berg8318d782008-01-24 19:38:38 +01004774 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004775
Johannes Berg8318d782008-01-24 19:38:38 +01004776 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004777 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004778 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004779 scan_ch->channel);
4780 continue;
4781 }
4782
Zhu Yib481de92007-09-25 17:54:57 -07004783 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4784 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004785 /* If passive , set up for auto-switch
4786 * and use long active_dwell time.
4787 */
4788 if (!is_active || is_channel_passive(ch_info) ||
4789 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4790 scan_ch->type = 0; /* passive */
4791 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4792 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4793 } else {
4794 scan_ch->type = 1; /* active */
4795 }
4796
4797 /* Set direct probe bits. These may be used both for active
4798 * scan channels (probes gets sent right away),
4799 * or for passive channels (probes get se sent only after
4800 * hearing clear Rx packet).*/
4801 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4802 if (n_probes)
4803 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4804 } else {
4805 /* uCode v1 does not allow setting direct probe bits on
4806 * passive channel. */
4807 if ((scan_ch->type & 1) && n_probes)
4808 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4809 }
Zhu Yib481de92007-09-25 17:54:57 -07004810
Ben Cahill9fbab512007-11-29 11:09:47 +08004811 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004812 scan_ch->tpc.dsp_atten = 110;
4813 /* scan_pwr_info->tpc.dsp_atten; */
4814
4815 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004816 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004817 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4818 else {
4819 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4820 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004821 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004822 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004823 */
4824 }
4825
4826 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4827 scan_ch->channel,
4828 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4829 (scan_ch->type & 1) ?
4830 active_dwell : passive_dwell);
4831
4832 scan_ch++;
4833 added++;
4834 }
4835
4836 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4837 return added;
4838}
4839
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004840static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004841 struct ieee80211_rate *rates)
4842{
4843 int i;
4844
4845 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004846 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4847 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4848 rates[i].hw_value_short = i;
4849 rates[i].flags = 0;
4850 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004851 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004852 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004853 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004854 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004855 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004856 }
Zhu Yib481de92007-09-25 17:54:57 -07004857 }
4858}
4859
4860/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004861 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004862 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004863static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004864{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004865 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004866 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004867 struct ieee80211_channel *channels;
4868 struct ieee80211_channel *geo_ch;
4869 struct ieee80211_rate *rates;
4870 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004871
Johannes Berg8318d782008-01-24 19:38:38 +01004872 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4873 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004874 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4875 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4876 return 0;
4877 }
4878
Zhu Yib481de92007-09-25 17:54:57 -07004879 channels = kzalloc(sizeof(struct ieee80211_channel) *
4880 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004881 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004882 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004883
Tomas Winkler8211ef72008-03-02 01:36:04 +02004884 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004885 GFP_KERNEL);
4886 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004887 kfree(channels);
4888 return -ENOMEM;
4889 }
4890
Zhu Yib481de92007-09-25 17:54:57 -07004891 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004892 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4893 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4894 /* just OFDM */
4895 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4896 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004897
Tomas Winkler8211ef72008-03-02 01:36:04 +02004898 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4899 sband->channels = channels;
4900 /* OFDM & CCK */
4901 sband->bitrates = rates;
4902 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004903
4904 priv->ieee_channels = channels;
4905 priv->ieee_rates = rates;
4906
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004907 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004908
Tomas Winkler8211ef72008-03-02 01:36:04 +02004909 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004910 ch = &priv->channel_info[i];
4911
Tomas Winkler8211ef72008-03-02 01:36:04 +02004912 /* FIXME: might be removed if scan is OK*/
4913 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004914 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004915
4916 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004917 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004918 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004919 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004920
Tomas Winkler8211ef72008-03-02 01:36:04 +02004921 geo_ch = &sband->channels[sband->n_channels++];
4922
4923 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004924 geo_ch->max_power = ch->max_power_avg;
4925 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004926 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004927
4928 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004929 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4930 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004931
Johannes Berg8318d782008-01-24 19:38:38 +01004932 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4933 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004934
4935 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004936 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004937
4938 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4939 priv->max_channel_txpower_limit =
4940 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004941 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004942 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004943 }
4944
4945 /* Save flags for reg domain usage */
4946 geo_ch->orig_flags = geo_ch->flags;
4947
4948 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4949 ch->channel, geo_ch->center_freq,
4950 is_channel_a_band(ch) ? "5.2" : "2.4",
4951 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4952 "restricted" : "valid",
4953 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004954 }
4955
Tomas Winkler82b9a122008-03-04 18:09:30 -08004956 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4957 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004958 printk(KERN_INFO DRV_NAME
4959 ": Incorrectly detected BG card as ABG. Please send "
4960 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4961 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004962 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004963 }
4964
4965 printk(KERN_INFO DRV_NAME
4966 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004967 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4968 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004969
John W. Linvillee0e0a672008-03-25 15:58:40 -04004970 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4971 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4972 &priv->bands[IEEE80211_BAND_2GHZ];
4973 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4974 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4975 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004976
Zhu Yib481de92007-09-25 17:54:57 -07004977 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4978
4979 return 0;
4980}
4981
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004982/*
4983 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4984 */
4985static void iwl3945_free_geos(struct iwl3945_priv *priv)
4986{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004987 kfree(priv->ieee_channels);
4988 kfree(priv->ieee_rates);
4989 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4990}
4991
Zhu Yib481de92007-09-25 17:54:57 -07004992/******************************************************************************
4993 *
4994 * uCode download functions
4995 *
4996 ******************************************************************************/
4997
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004998static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004999{
Tomas Winkler98c92212008-01-14 17:46:20 -08005000 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
5001 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
5002 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
5003 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5004 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5005 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005006}
5007
5008/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005009 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005010 * looking at all data.
5011 */
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005012static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005013{
5014 u32 val;
5015 u32 save_len = len;
5016 int rc = 0;
5017 u32 errcnt;
5018
5019 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5020
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005021 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005022 if (rc)
5023 return rc;
5024
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005025 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005026
5027 errcnt = 0;
5028 for (; len > 0; len -= sizeof(u32), image++) {
5029 /* read data comes through single port, auto-incr addr */
5030 /* NOTE: Use the debugless read so we don't flood kernel log
5031 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005032 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005033 if (val != le32_to_cpu(*image)) {
5034 IWL_ERROR("uCode INST section is invalid at "
5035 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5036 save_len - len, val, le32_to_cpu(*image));
5037 rc = -EIO;
5038 errcnt++;
5039 if (errcnt >= 20)
5040 break;
5041 }
5042 }
5043
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005044 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005045
5046 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005047 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005048
5049 return rc;
5050}
5051
5052
5053/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005054 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005055 * using sample data 100 bytes apart. If these sample points are good,
5056 * it's a pretty good bet that everything between them is good, too.
5057 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005058static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005059{
5060 u32 val;
5061 int rc = 0;
5062 u32 errcnt = 0;
5063 u32 i;
5064
5065 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5066
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005067 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005068 if (rc)
5069 return rc;
5070
5071 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5072 /* read data comes through single port, auto-incr addr */
5073 /* NOTE: Use the debugless read so we don't flood kernel log
5074 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005075 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005076 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005077 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005078 if (val != le32_to_cpu(*image)) {
5079#if 0 /* Enable this if you want to see details */
5080 IWL_ERROR("uCode INST section is invalid at "
5081 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5082 i, val, *image);
5083#endif
5084 rc = -EIO;
5085 errcnt++;
5086 if (errcnt >= 3)
5087 break;
5088 }
5089 }
5090
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005091 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005092
5093 return rc;
5094}
5095
5096
5097/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005098 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005099 * and verify its contents
5100 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005101static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005102{
5103 __le32 *image;
5104 u32 len;
5105 int rc = 0;
5106
5107 /* Try bootstrap */
5108 image = (__le32 *)priv->ucode_boot.v_addr;
5109 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005110 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005111 if (rc == 0) {
5112 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5113 return 0;
5114 }
5115
5116 /* Try initialize */
5117 image = (__le32 *)priv->ucode_init.v_addr;
5118 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005119 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005120 if (rc == 0) {
5121 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5122 return 0;
5123 }
5124
5125 /* Try runtime/protocol */
5126 image = (__le32 *)priv->ucode_code.v_addr;
5127 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005128 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005129 if (rc == 0) {
5130 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5131 return 0;
5132 }
5133
5134 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5135
Ben Cahill9fbab512007-11-29 11:09:47 +08005136 /* Since nothing seems to match, show first several data entries in
5137 * instruction SRAM, so maybe visual inspection will give a clue.
5138 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005139 image = (__le32 *)priv->ucode_boot.v_addr;
5140 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005141 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005142
5143 return rc;
5144}
5145
5146
5147/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005148static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005149{
5150 __le32 *image = priv->ucode_boot.v_addr;
5151 u32 len = priv->ucode_boot.len;
5152 u32 reg;
5153 u32 val;
5154
5155 IWL_DEBUG_INFO("Begin verify bsm\n");
5156
5157 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005158 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005159 for (reg = BSM_SRAM_LOWER_BOUND;
5160 reg < BSM_SRAM_LOWER_BOUND + len;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005161 reg += sizeof(u32), image++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005162 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005163 if (val != le32_to_cpu(*image)) {
5164 IWL_ERROR("BSM uCode verification failed at "
5165 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5166 BSM_SRAM_LOWER_BOUND,
5167 reg - BSM_SRAM_LOWER_BOUND, len,
5168 val, le32_to_cpu(*image));
5169 return -EIO;
5170 }
5171 }
5172
5173 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5174
5175 return 0;
5176}
5177
5178/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005179 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005180 *
5181 * BSM operation:
5182 *
5183 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5184 * in special SRAM that does not power down during RFKILL. When powering back
5185 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5186 * the bootstrap program into the on-board processor, and starts it.
5187 *
5188 * The bootstrap program loads (via DMA) instructions and data for a new
5189 * program from host DRAM locations indicated by the host driver in the
5190 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5191 * automatically.
5192 *
5193 * When initializing the NIC, the host driver points the BSM to the
5194 * "initialize" uCode image. This uCode sets up some internal data, then
5195 * notifies host via "initialize alive" that it is complete.
5196 *
5197 * The host then replaces the BSM_DRAM_* pointer values to point to the
5198 * normal runtime uCode instructions and a backup uCode data cache buffer
5199 * (filled initially with starting data values for the on-board processor),
5200 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5201 * which begins normal operation.
5202 *
5203 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5204 * the backup data cache in DRAM before SRAM is powered down.
5205 *
5206 * When powering back up, the BSM loads the bootstrap program. This reloads
5207 * the runtime uCode instructions and the backup data cache into SRAM,
5208 * and re-launches the runtime uCode from where it left off.
5209 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005210static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005211{
5212 __le32 *image = priv->ucode_boot.v_addr;
5213 u32 len = priv->ucode_boot.len;
5214 dma_addr_t pinst;
5215 dma_addr_t pdata;
5216 u32 inst_len;
5217 u32 data_len;
5218 int rc;
5219 int i;
5220 u32 done;
5221 u32 reg_offset;
5222
5223 IWL_DEBUG_INFO("Begin load bsm\n");
5224
5225 /* make sure bootstrap program is no larger than BSM's SRAM size */
5226 if (len > IWL_MAX_BSM_SIZE)
5227 return -EINVAL;
5228
5229 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005230 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005231 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005232 * after the "initialize" uCode has run, to point to
5233 * runtime/protocol instructions and backup data cache. */
5234 pinst = priv->ucode_init.p_addr;
5235 pdata = priv->ucode_init_data.p_addr;
5236 inst_len = priv->ucode_init.len;
5237 data_len = priv->ucode_init_data.len;
5238
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005239 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005240 if (rc)
5241 return rc;
5242
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005243 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5244 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5245 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5246 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005247
5248 /* Fill BSM memory with bootstrap instructions */
5249 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5250 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5251 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005252 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005253 le32_to_cpu(*image));
5254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005255 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005256 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005257 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005258 return rc;
5259 }
5260
5261 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005262 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5263 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005264 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005265 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005266
5267 /* Load bootstrap code into instruction SRAM now,
5268 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005269 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005270 BSM_WR_CTRL_REG_BIT_START);
5271
5272 /* Wait for load of bootstrap uCode to finish */
5273 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005274 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005275 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5276 break;
5277 udelay(10);
5278 }
5279 if (i < 100)
5280 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5281 else {
5282 IWL_ERROR("BSM write did not complete!\n");
5283 return -EIO;
5284 }
5285
5286 /* Enable future boot loads whenever power management unit triggers it
5287 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005288 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005289 BSM_WR_CTRL_REG_BIT_START_EN);
5290
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005291 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005292
5293 return 0;
5294}
5295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005296static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005297{
5298 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005299 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005300}
5301
5302/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005303 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005304 *
5305 * Copy into buffers for card to fetch via bus-mastering
5306 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005307static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005308{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005309 struct iwl3945_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005310 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07005311 const struct firmware *ucode_raw;
5312 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005313 const char *name_pre = priv->cfg->fw_name_pre;
5314 const unsigned int api_max = priv->cfg->ucode_api_max;
5315 const unsigned int api_min = priv->cfg->ucode_api_min;
5316 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07005317 u8 *src;
5318 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005319 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07005320
5321 /* Ask kernel firmware_class module to get the boot firmware off disk.
5322 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005323 for (index = api_max; index >= api_min; index--) {
5324 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
5325 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
5326 if (ret < 0) {
5327 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5328 buf, ret);
5329 if (ret == -ENOENT)
5330 continue;
5331 else
5332 goto error;
5333 } else {
5334 if (index < api_max)
5335 IWL_ERROR("Loaded firmware %s, which is deprecated. Please use API v%u instead.\n",
5336 buf, api_max);
5337 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5338 buf, ucode_raw->size);
5339 break;
5340 }
Zhu Yib481de92007-09-25 17:54:57 -07005341 }
5342
Reinette Chatrea0987a82008-12-02 12:14:06 -08005343 if (ret < 0)
5344 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07005345
5346 /* Make sure that we got at least our header! */
5347 if (ucode_raw->size < sizeof(*ucode)) {
5348 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005349 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005350 goto err_release;
5351 }
5352
5353 /* Data from ucode file: header followed by uCode images */
5354 ucode = (void *)ucode_raw->data;
5355
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005356 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08005357 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07005358 inst_size = le32_to_cpu(ucode->inst_size);
5359 data_size = le32_to_cpu(ucode->data_size);
5360 init_size = le32_to_cpu(ucode->init_size);
5361 init_data_size = le32_to_cpu(ucode->init_data_size);
5362 boot_size = le32_to_cpu(ucode->boot_size);
5363
Reinette Chatrea0987a82008-12-02 12:14:06 -08005364 /* api_ver should match the api version forming part of the
5365 * firmware filename ... but we don't check for that and only rely
5366 * on the API version read from firware header from here on forward */
5367
5368 if (api_ver < api_min || api_ver > api_max) {
5369 IWL_ERROR("Driver unable to support your firmware API. "
5370 "Driver supports v%u, firmware is v%u.\n",
5371 api_max, api_ver);
5372 priv->ucode_ver = 0;
5373 ret = -EINVAL;
5374 goto err_release;
5375 }
5376 if (api_ver != api_max)
5377 IWL_ERROR("Firmware has old API version. Expected %u, "
5378 "got %u. New firmware can be obtained "
5379 "from http://www.intellinuxwireless.org.\n",
5380 api_max, api_ver);
5381
5382 printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n",
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005383 IWL_UCODE_MAJOR(priv->ucode_ver),
5384 IWL_UCODE_MINOR(priv->ucode_ver),
5385 IWL_UCODE_API(priv->ucode_ver),
5386 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08005387 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
5388 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005389 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5390 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5391 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5392 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5393 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005394
Reinette Chatrea0987a82008-12-02 12:14:06 -08005395
Zhu Yib481de92007-09-25 17:54:57 -07005396 /* Verify size of file vs. image size info in file's header */
5397 if (ucode_raw->size < sizeof(*ucode) +
5398 inst_size + data_size + init_size +
5399 init_data_size + boot_size) {
5400
5401 IWL_DEBUG_INFO("uCode file size %d too small\n",
5402 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005403 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005404 goto err_release;
5405 }
5406
5407 /* Verify that uCode images will fit in card's SRAM */
5408 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005409 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5410 inst_size);
5411 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005412 goto err_release;
5413 }
5414
5415 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005416 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5417 data_size);
5418 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005419 goto err_release;
5420 }
5421 if (init_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005422 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5423 init_size);
5424 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005425 goto err_release;
5426 }
5427 if (init_data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005428 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5429 init_data_size);
5430 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005431 goto err_release;
5432 }
5433 if (boot_size > IWL_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005434 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5435 boot_size);
5436 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005437 goto err_release;
5438 }
5439
5440 /* Allocate ucode buffers for card's bus-master loading ... */
5441
5442 /* Runtime instructions and 2 copies of data:
5443 * 1) unmodified from disk
5444 * 2) backup cache for save/restore during power-downs */
5445 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005446 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005447
5448 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005449 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005450
5451 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005452 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005453
5454 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005455 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005456 goto err_pci_alloc;
5457
Tomas Winkler90e759d2007-11-29 11:09:41 +08005458 /* Initialization instructions and data */
5459 if (init_size && init_data_size) {
5460 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005461 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005462
5463 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005464 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005465
5466 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5467 goto err_pci_alloc;
5468 }
5469
5470 /* Bootstrap (instructions only, no data) */
5471 if (boot_size) {
5472 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005473 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005474
5475 if (!priv->ucode_boot.v_addr)
5476 goto err_pci_alloc;
5477 }
5478
Zhu Yib481de92007-09-25 17:54:57 -07005479 /* Copy images into buffers for card's bus-master reads ... */
5480
5481 /* Runtime instructions (first block of data in file) */
5482 src = &ucode->data[0];
5483 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005484 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005485 memcpy(priv->ucode_code.v_addr, src, len);
5486 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5487 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5488
5489 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005490 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005491 src = &ucode->data[inst_size];
5492 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005493 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005494 memcpy(priv->ucode_data.v_addr, src, len);
5495 memcpy(priv->ucode_data_backup.v_addr, src, len);
5496
5497 /* Initialization instructions (3rd block) */
5498 if (init_size) {
5499 src = &ucode->data[inst_size + data_size];
5500 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005501 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5502 len);
Zhu Yib481de92007-09-25 17:54:57 -07005503 memcpy(priv->ucode_init.v_addr, src, len);
5504 }
5505
5506 /* Initialization data (4th block) */
5507 if (init_data_size) {
5508 src = &ucode->data[inst_size + data_size + init_size];
5509 len = priv->ucode_init_data.len;
5510 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5511 (int)len);
5512 memcpy(priv->ucode_init_data.v_addr, src, len);
5513 }
5514
5515 /* Bootstrap instructions (5th block) */
5516 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5517 len = priv->ucode_boot.len;
5518 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5519 (int)len);
5520 memcpy(priv->ucode_boot.v_addr, src, len);
5521
5522 /* We have our copies now, allow OS release its copies */
5523 release_firmware(ucode_raw);
5524 return 0;
5525
5526 err_pci_alloc:
5527 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005528 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005529 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005530
5531 err_release:
5532 release_firmware(ucode_raw);
5533
5534 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005535 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005536}
5537
5538
5539/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005540 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005541 *
5542 * Tell initialization uCode where to find runtime uCode.
5543 *
5544 * BSM registers initially contain pointers to initialization uCode.
5545 * We need to replace them to load runtime uCode inst and data,
5546 * and to save runtime data when powering down.
5547 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005548static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005549{
5550 dma_addr_t pinst;
5551 dma_addr_t pdata;
5552 int rc = 0;
5553 unsigned long flags;
5554
5555 /* bits 31:0 for 3945 */
5556 pinst = priv->ucode_code.p_addr;
5557 pdata = priv->ucode_data_backup.p_addr;
5558
5559 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005560 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005561 if (rc) {
5562 spin_unlock_irqrestore(&priv->lock, flags);
5563 return rc;
5564 }
5565
5566 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005567 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5568 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5569 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005570 priv->ucode_data.len);
5571
Tomas Winklera96a27f2008-10-23 23:48:56 -07005572 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005573 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005574 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005575 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5576
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005577 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005578
5579 spin_unlock_irqrestore(&priv->lock, flags);
5580
5581 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5582
5583 return rc;
5584}
5585
5586/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005587 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005588 *
5589 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5590 *
Zhu Yib481de92007-09-25 17:54:57 -07005591 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005592 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005593static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005594{
5595 /* Check alive response for "valid" sign from uCode */
5596 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5597 /* We had an error bringing up the hardware, so take it
5598 * all the way back down so we can try again */
5599 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5600 goto restart;
5601 }
5602
5603 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5604 * This is a paranoid check, because we would not have gotten the
5605 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005606 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005607 /* Runtime instruction load was bad;
5608 * take it all the way back down so we can try again */
5609 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5610 goto restart;
5611 }
5612
5613 /* Send pointers to protocol/runtime uCode image ... init code will
5614 * load and launch runtime uCode, which will send us another "Alive"
5615 * notification. */
5616 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005617 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005618 /* Runtime instruction load won't happen;
5619 * take it all the way back down so we can try again */
5620 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5621 goto restart;
5622 }
5623 return;
5624
5625 restart:
5626 queue_work(priv->workqueue, &priv->restart);
5627}
5628
5629
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005630/* temporary */
5631static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5632 struct sk_buff *skb);
5633
Zhu Yib481de92007-09-25 17:54:57 -07005634/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005635 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005636 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005637 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005638 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005639static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005640{
5641 int rc = 0;
5642 int thermal_spin = 0;
5643 u32 rfkill;
5644
5645 IWL_DEBUG_INFO("Runtime Alive received.\n");
5646
5647 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5648 /* We had an error bringing up the hardware, so take it
5649 * all the way back down so we can try again */
5650 IWL_DEBUG_INFO("Alive failed.\n");
5651 goto restart;
5652 }
5653
5654 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5655 * This is a paranoid check, because we would not have gotten the
5656 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005657 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005658 /* Runtime instruction load was bad;
5659 * take it all the way back down so we can try again */
5660 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5661 goto restart;
5662 }
5663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005664 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005665
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005666 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005667 if (rc) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005668 IWL_WARNING("Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005669 return;
5670 }
5671
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005672 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005673 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005674 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005675
5676 if (rfkill & 0x1) {
5677 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005678 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005679 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005680 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005681 thermal_spin++;
5682 udelay(10);
5683 }
5684
5685 if (thermal_spin)
5686 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5687 thermal_spin * 10);
5688 } else
5689 set_bit(STATUS_RF_KILL_HW, &priv->status);
5690
Ben Cahill9fbab512007-11-29 11:09:47 +08005691 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005692 set_bit(STATUS_ALIVE, &priv->status);
5693
5694 /* Clear out the uCode error bit if it is set */
5695 clear_bit(STATUS_FW_ERROR, &priv->status);
5696
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005697 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005698 return;
5699
Johannes Berg36d68252008-05-15 12:55:26 +02005700 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005701
5702 priv->active_rate = priv->rates_mask;
5703 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5704
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005705 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005706
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005707 if (iwl3945_is_associated(priv)) {
5708 struct iwl3945_rxon_cmd *active_rxon =
5709 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005710
5711 memcpy(&priv->staging_rxon, &priv->active_rxon,
5712 sizeof(priv->staging_rxon));
5713 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5714 } else {
5715 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005716 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005717 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5718 }
5719
Ben Cahill9fbab512007-11-29 11:09:47 +08005720 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005721 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005722
5723 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005724 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005725
Zhu Yib481de92007-09-25 17:54:57 -07005726 iwl3945_reg_txpower_periodic(priv);
5727
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005728 iwl3945_led_register(priv);
5729
Zhu Yib481de92007-09-25 17:54:57 -07005730 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005731 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08005732 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005733
5734 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005735 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005736
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005737 /* reassociate for ADHOC mode */
5738 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5739 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5740 priv->vif);
5741 if (beacon)
5742 iwl3945_mac_beacon_update(priv->hw, beacon);
5743 }
5744
Zhu Yib481de92007-09-25 17:54:57 -07005745 return;
5746
5747 restart:
5748 queue_work(priv->workqueue, &priv->restart);
5749}
5750
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005751static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005752
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005753static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005754{
5755 unsigned long flags;
5756 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5757 struct ieee80211_conf *conf = NULL;
5758
5759 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5760
5761 conf = ieee80211_get_hw_conf(priv->hw);
5762
5763 if (!exit_pending)
5764 set_bit(STATUS_EXIT_PENDING, &priv->status);
5765
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005766 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005767 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005768
5769 /* Unblock any waiting calls */
5770 wake_up_interruptible_all(&priv->wait_command_queue);
5771
Zhu Yib481de92007-09-25 17:54:57 -07005772 /* Wipe out the EXIT_PENDING status bit if we are not actually
5773 * exiting the module */
5774 if (!exit_pending)
5775 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5776
5777 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005778 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005779
5780 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005781 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005782 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005783 spin_unlock_irqrestore(&priv->lock, flags);
5784 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005785
5786 if (priv->mac80211_registered)
5787 ieee80211_stop_queues(priv->hw);
5788
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005789 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005790 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005791 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005792 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5793 STATUS_RF_KILL_HW |
5794 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5795 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005796 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5797 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005798 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005799 STATUS_IN_SUSPEND |
5800 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5801 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005802 goto exit;
5803 }
5804
5805 /* ...otherwise clear out all the status bits but the RF Kill and
5806 * SUSPEND bits and continue taking the NIC down. */
5807 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5808 STATUS_RF_KILL_HW |
5809 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5810 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005811 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5812 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005813 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5814 STATUS_IN_SUSPEND |
5815 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005816 STATUS_FW_ERROR |
5817 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5818 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005819
5820 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005821 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005822 spin_unlock_irqrestore(&priv->lock, flags);
5823
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005824 iwl3945_hw_txq_ctx_stop(priv);
5825 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005826
5827 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005828 if (!iwl3945_grab_nic_access(priv)) {
5829 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005830 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005831 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005832 }
5833 spin_unlock_irqrestore(&priv->lock, flags);
5834
5835 udelay(5);
5836
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005837 iwl3945_hw_nic_stop_master(priv);
5838 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5839 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005840
5841 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005842 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005843
5844 if (priv->ibss_beacon)
5845 dev_kfree_skb(priv->ibss_beacon);
5846 priv->ibss_beacon = NULL;
5847
5848 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005849 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005850}
5851
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005852static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005853{
5854 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005855 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005856 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005857
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005858 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005859}
5860
5861#define MAX_HW_RESTARTS 5
5862
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005863static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005864{
5865 int rc, i;
5866
5867 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5868 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5869 return -EIO;
5870 }
5871
5872 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5873 IWL_WARNING("Radio disabled by SW RF kill (module "
5874 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005875 return -ENODEV;
5876 }
5877
Reinette Chatree903fbd2008-01-30 22:05:15 -08005878 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005879 IWL_ERROR("ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005880 return -EIO;
5881 }
5882
Zhu Yie655b9f2008-01-24 02:19:38 -08005883 /* If platform's RF_KILL switch is NOT set to KILL */
5884 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
5885 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5886 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5887 else {
5888 set_bit(STATUS_RF_KILL_HW, &priv->status);
5889 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5890 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5891 return -ENODEV;
5892 }
Zhu Yib481de92007-09-25 17:54:57 -07005893 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005894
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005895 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005896
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005897 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005898 if (rc) {
5899 IWL_ERROR("Unable to int nic\n");
5900 return rc;
5901 }
5902
5903 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005904 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5905 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005906 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5907
5908 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005909 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
5910 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005911
5912 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005913 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5914 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005915
5916 /* Copy original ucode data image from disk into backup cache.
5917 * This will be used to initialize the on-board processor's
5918 * data SRAM for a clean start when the runtime program first loads. */
5919 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08005920 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005921
Zhu Yie655b9f2008-01-24 02:19:38 -08005922 /* We return success when we resume from suspend and rf_kill is on. */
5923 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5924 return 0;
5925
Zhu Yib481de92007-09-25 17:54:57 -07005926 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5927
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005928 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005929
5930 /* load bootstrap state machine,
5931 * load bootstrap program into processor's memory,
5932 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005933 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005934
5935 if (rc) {
5936 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5937 continue;
5938 }
5939
5940 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005941 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005942
Zhu Yib481de92007-09-25 17:54:57 -07005943 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5944
5945 return 0;
5946 }
5947
5948 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005949 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005950 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005951
5952 /* tried to restart and config the device for as long as our
5953 * patience could withstand */
5954 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5955 return -EIO;
5956}
5957
5958
5959/*****************************************************************************
5960 *
5961 * Workqueue callbacks
5962 *
5963 *****************************************************************************/
5964
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005965static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005966{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005967 struct iwl3945_priv *priv =
5968 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005969
5970 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5971 return;
5972
5973 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005974 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005975 mutex_unlock(&priv->mutex);
5976}
5977
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005978static void iwl3945_bg_alive_start(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, alive_start.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);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005987 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005988 mutex_unlock(&priv->mutex);
5989}
5990
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005991static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005992{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005993 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005994
5995 wake_up_interruptible(&priv->wait_command_queue);
5996
5997 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5998 return;
5999
6000 mutex_lock(&priv->mutex);
6001
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006002 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006003 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
6004 "HW and/or SW RF Kill no longer active, restarting "
6005 "device\n");
6006 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
6007 queue_work(priv->workqueue, &priv->restart);
6008 } else {
6009
6010 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
6011 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6012 "disabled by SW switch\n");
6013 else
6014 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6015 "Kill switch must be turned off for "
6016 "wireless networking to work.\n");
6017 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08006018
Zhu Yib481de92007-09-25 17:54:57 -07006019 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006020 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006021}
6022
6023#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6024
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006025static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006026{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006027 struct iwl3945_priv *priv =
6028 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07006029
6030 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6031 return;
6032
6033 mutex_lock(&priv->mutex);
6034 if (test_bit(STATUS_SCANNING, &priv->status) ||
6035 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6036 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6037 "Scan completion watchdog resetting adapter (%dms)\n",
6038 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006039
Zhu Yib481de92007-09-25 17:54:57 -07006040 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006041 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006042 }
6043 mutex_unlock(&priv->mutex);
6044}
6045
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006046static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006047{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006048 struct iwl3945_priv *priv =
6049 container_of(data, struct iwl3945_priv, request_scan);
6050 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006051 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006052 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006053 .meta.flags = CMD_SIZE_HUGE,
6054 };
6055 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006056 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006057 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006058 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01006059 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04006060 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07006061
6062 conf = ieee80211_get_hw_conf(priv->hw);
6063
6064 mutex_lock(&priv->mutex);
6065
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006066 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006067 IWL_WARNING("request scan called when driver not ready.\n");
6068 goto done;
6069 }
6070
Tomas Winklera96a27f2008-10-23 23:48:56 -07006071 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07006072 * was given the chance to run... */
6073 if (!test_bit(STATUS_SCANNING, &priv->status))
6074 goto done;
6075
6076 /* This should never be called or scheduled if there is currently
6077 * a scan active in the hardware. */
6078 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6079 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6080 "Ignoring second request.\n");
6081 rc = -EIO;
6082 goto done;
6083 }
6084
6085 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6086 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6087 goto done;
6088 }
6089
6090 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6091 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6092 goto done;
6093 }
6094
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006095 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006096 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6097 goto done;
6098 }
6099
6100 if (!test_bit(STATUS_READY, &priv->status)) {
6101 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6102 goto done;
6103 }
6104
6105 if (!priv->scan_bands) {
6106 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6107 goto done;
6108 }
6109
6110 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006111 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006112 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6113 if (!priv->scan) {
6114 rc = -ENOMEM;
6115 goto done;
6116 }
6117 }
6118 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006119 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006120
6121 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6122 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006124 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006125 u16 interval = 0;
6126 u32 extra;
6127 u32 suspend_time = 100;
6128 u32 scan_suspend_time = 100;
6129 unsigned long flags;
6130
6131 IWL_DEBUG_INFO("Scanning while associated...\n");
6132
6133 spin_lock_irqsave(&priv->lock, flags);
6134 interval = priv->beacon_int;
6135 spin_unlock_irqrestore(&priv->lock, flags);
6136
6137 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006138 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006139 if (!interval)
6140 interval = suspend_time;
6141 /*
6142 * suspend time format:
6143 * 0-19: beacon interval in usec (time before exec.)
6144 * 20-23: 0
6145 * 24-31: number of beacons (suspend between channels)
6146 */
6147
6148 extra = (suspend_time / interval) << 24;
6149 scan_suspend_time = 0xFF0FFFFF &
6150 (extra | ((suspend_time % interval) * 1024));
6151
6152 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6153 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6154 scan_suspend_time, interval);
6155 }
6156
6157 /* We should add the ability for user to lock to PASSIVE ONLY */
6158 if (priv->one_direct_scan) {
6159 IWL_DEBUG_SCAN
6160 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006161 print_ssid(ssid, priv->direct_ssid,
6162 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006163 scan->direct_scan[0].id = WLAN_EID_SSID;
6164 scan->direct_scan[0].len = priv->direct_ssid_len;
6165 memcpy(scan->direct_scan[0].ssid,
6166 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006167 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006168 } else
Bill Moss786b4552008-04-17 16:03:40 -07006169 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006170
6171 /* We don't build a direct scan probe request; the uCode will do
6172 * that based on the direct_mask added to each channel entry */
6173 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006174 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01006175 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07006176 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6177 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6178 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6179
6180 /* flags + rate selection */
6181
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006182 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006183 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6184 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6185 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006186 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006187 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006188 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6189 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006190 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006191 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006192 IWL_WARNING("Invalid scan band count\n");
6193 goto done;
6194 }
6195
6196 /* select Rx antennas */
6197 scan->flags |= iwl3945_get_antenna_flags(priv);
6198
Johannes Berg05c914f2008-09-11 00:01:58 +02006199 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07006200 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6201
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006202 scan->channel_count =
6203 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
6204 n_probes,
6205 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07006206
Reinette Chatre14b54332008-11-04 12:21:35 -08006207 if (scan->channel_count == 0) {
6208 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
6209 goto done;
6210 }
6211
Zhu Yib481de92007-09-25 17:54:57 -07006212 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006213 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006214 cmd.data = scan;
6215 scan->len = cpu_to_le16(cmd.len);
6216
6217 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006218 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006219 if (rc)
6220 goto done;
6221
6222 queue_delayed_work(priv->workqueue, &priv->scan_check,
6223 IWL_SCAN_CHECK_WATCHDOG);
6224
6225 mutex_unlock(&priv->mutex);
6226 return;
6227
6228 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08006229 /* can not perform scan make sure we clear scanning
6230 * bits from status so next scan request can be performed.
6231 * if we dont clear scanning status bit here all next scan
6232 * will fail
6233 */
6234 clear_bit(STATUS_SCAN_HW, &priv->status);
6235 clear_bit(STATUS_SCANNING, &priv->status);
6236
Ian Schram01ebd062007-10-25 17:15:22 +08006237 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006238 queue_work(priv->workqueue, &priv->scan_completed);
6239 mutex_unlock(&priv->mutex);
6240}
6241
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006242static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006243{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006244 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006245
6246 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6247 return;
6248
6249 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006250 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006251 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006252 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006253}
6254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006255static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006256{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006257 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006258
6259 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6260 return;
6261
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006262 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006263 queue_work(priv->workqueue, &priv->up);
6264}
6265
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006266static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006267{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006268 struct iwl3945_priv *priv =
6269 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006270
6271 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6272 return;
6273
6274 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006275 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006276 mutex_unlock(&priv->mutex);
6277}
6278
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006279#define IWL_DELAY_NEXT_SCAN (HZ*2)
6280
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006281static void iwl3945_post_associate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006282{
Zhu Yib481de92007-09-25 17:54:57 -07006283 int rc = 0;
6284 struct ieee80211_conf *conf = NULL;
6285
Johannes Berg05c914f2008-09-11 00:01:58 +02006286 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006287 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07006288 return;
6289 }
6290
6291
Johannes Berge1749612008-10-27 15:59:26 -07006292 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
6293 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07006294
6295 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6296 return;
6297
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006298 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006299 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006300
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006301 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006302
Zhu Yib481de92007-09-25 17:54:57 -07006303 conf = ieee80211_get_hw_conf(priv->hw);
6304
6305 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006306 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006307
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006308 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6309 iwl3945_setup_rxon_timing(priv);
6310 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006311 sizeof(priv->rxon_timing), &priv->rxon_timing);
6312 if (rc)
6313 IWL_WARNING("REPLY_RXON_TIMING failed - "
6314 "Attempting to continue.\n");
6315
6316 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6317
6318 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6319
6320 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6321 priv->assoc_id, priv->beacon_int);
6322
6323 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6324 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6325 else
6326 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6327
6328 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6329 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6330 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6331 else
6332 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6333
Johannes Berg05c914f2008-09-11 00:01:58 +02006334 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006335 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6336
6337 }
6338
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006339 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006340
6341 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02006342 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006343 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006344 break;
6345
Johannes Berg05c914f2008-09-11 00:01:58 +02006346 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07006347
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08006348 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006349 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006350 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006351 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006352 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6353 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006354 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6355 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006356
6357 break;
6358
6359 default:
6360 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006361 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006362 break;
6363 }
6364
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006365 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006366
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006367 /* we have just associated, don't start scan too early */
6368 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006369}
6370
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006371static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006372{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006373 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006374
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006375 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006376 return;
6377
6378 mutex_lock(&priv->mutex);
6379
6380 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006381 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006382
6383 mutex_unlock(&priv->mutex);
6384}
6385
Johannes Berge8975582008-10-09 12:18:51 +02006386static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006387
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006388static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006389{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006390 struct iwl3945_priv *priv =
6391 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006392
6393 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6394
6395 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6396 return;
6397
Zhu Yia0646472007-12-20 14:10:01 +08006398 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006399 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006400
Zhu Yib481de92007-09-25 17:54:57 -07006401 ieee80211_scan_completed(priv->hw);
6402
6403 /* Since setting the TXPOWER may have been deferred while
6404 * performing the scan, fire one off */
6405 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006406 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006407 mutex_unlock(&priv->mutex);
6408}
6409
6410/*****************************************************************************
6411 *
6412 * mac80211 entry point functions
6413 *
6414 *****************************************************************************/
6415
Zhu Yi5a669262008-01-14 17:46:18 -08006416#define UCODE_READY_TIMEOUT (2 * HZ)
6417
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006418static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006419{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006420 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08006421 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006422
6423 IWL_DEBUG_MAC80211("enter\n");
6424
Zhu Yi5a669262008-01-14 17:46:18 -08006425 if (pci_enable_device(priv->pci_dev)) {
6426 IWL_ERROR("Fail to pci_enable_device\n");
6427 return -ENODEV;
6428 }
6429 pci_restore_state(priv->pci_dev);
6430 pci_enable_msi(priv->pci_dev);
6431
6432 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6433 DRV_NAME, priv);
6434 if (ret) {
6435 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6436 goto out_disable_msi;
6437 }
6438
Zhu Yib481de92007-09-25 17:54:57 -07006439 /* we should be verifying the device is ready to be opened */
6440 mutex_lock(&priv->mutex);
6441
Zhu Yi5a669262008-01-14 17:46:18 -08006442 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6443 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6444 * ucode filename and max sizes are card-specific. */
6445
6446 if (!priv->ucode_code.len) {
6447 ret = iwl3945_read_ucode(priv);
6448 if (ret) {
6449 IWL_ERROR("Could not read microcode: %d\n", ret);
6450 mutex_unlock(&priv->mutex);
6451 goto out_release_irq;
6452 }
6453 }
6454
Zhu Yie655b9f2008-01-24 02:19:38 -08006455 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08006456
Zhu Yib481de92007-09-25 17:54:57 -07006457 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08006458
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006459 iwl3945_rfkill_set_hw_state(priv);
6460
Zhu Yie655b9f2008-01-24 02:19:38 -08006461 if (ret)
6462 goto out_release_irq;
6463
6464 IWL_DEBUG_INFO("Start UP work.\n");
6465
6466 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6467 return 0;
6468
Zhu Yi5a669262008-01-14 17:46:18 -08006469 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6470 * mac80211 will not be run successfully. */
6471 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6472 test_bit(STATUS_READY, &priv->status),
6473 UCODE_READY_TIMEOUT);
6474 if (!ret) {
6475 if (!test_bit(STATUS_READY, &priv->status)) {
6476 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6477 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6478 ret = -ETIMEDOUT;
6479 goto out_release_irq;
6480 }
6481 }
6482
Zhu Yie655b9f2008-01-24 02:19:38 -08006483 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006484 IWL_DEBUG_MAC80211("leave\n");
6485 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006486
6487out_release_irq:
6488 free_irq(priv->pci_dev->irq, priv);
6489out_disable_msi:
6490 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006491 pci_disable_device(priv->pci_dev);
6492 priv->is_open = 0;
6493 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006494 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006495}
6496
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006497static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006498{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006499 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006500
6501 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006502
Zhu Yie655b9f2008-01-24 02:19:38 -08006503 if (!priv->is_open) {
6504 IWL_DEBUG_MAC80211("leave - skip\n");
6505 return;
6506 }
6507
Zhu Yib481de92007-09-25 17:54:57 -07006508 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006509
6510 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006511 /* stop mac, cancel any scan request and clear
6512 * RXON_FILTER_ASSOC_MSK BIT
6513 */
Zhu Yi5a669262008-01-14 17:46:18 -08006514 mutex_lock(&priv->mutex);
6515 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006516 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006517 }
6518
Zhu Yi5a669262008-01-14 17:46:18 -08006519 iwl3945_down(priv);
6520
6521 flush_workqueue(priv->workqueue);
6522 free_irq(priv->pci_dev->irq, priv);
6523 pci_disable_msi(priv->pci_dev);
6524 pci_save_state(priv->pci_dev);
6525 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006526
Zhu Yib481de92007-09-25 17:54:57 -07006527 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006528}
6529
Johannes Berge039fa42008-05-15 12:55:29 +02006530static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006531{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006532 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006533
6534 IWL_DEBUG_MAC80211("enter\n");
6535
Zhu Yib481de92007-09-25 17:54:57 -07006536 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006537 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006538
Johannes Berge039fa42008-05-15 12:55:29 +02006539 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006540 dev_kfree_skb_any(skb);
6541
6542 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006543 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006544}
6545
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006546static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006547 struct ieee80211_if_init_conf *conf)
6548{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006549 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006550 unsigned long flags;
6551
Johannes Berg32bfd352007-12-19 01:31:26 +01006552 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006553
Johannes Berg32bfd352007-12-19 01:31:26 +01006554 if (priv->vif) {
6555 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006556 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006557 }
6558
6559 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006560 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006561 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006562
6563 spin_unlock_irqrestore(&priv->lock, flags);
6564
6565 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006566
6567 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006568 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006569 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6570 }
6571
Zhu Yi5a669262008-01-14 17:46:18 -08006572 if (iwl3945_is_ready(priv))
6573 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006574
Zhu Yib481de92007-09-25 17:54:57 -07006575 mutex_unlock(&priv->mutex);
6576
Zhu Yi5a669262008-01-14 17:46:18 -08006577 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006578 return 0;
6579}
6580
6581/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006582 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006583 *
6584 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6585 * be set inappropriately and the driver currently sets the hardware up to
6586 * use it whenever needed.
6587 */
Johannes Berge8975582008-10-09 12:18:51 +02006588static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006589{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006590 struct iwl3945_priv *priv = hw->priv;
6591 const struct iwl3945_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006592 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006593 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006594 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006595
6596 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006597 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006598
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006599 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006600 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006601 ret = -EIO;
6602 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006603 }
6604
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006605 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006606 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006607 IWL_DEBUG_MAC80211("leave - scanning\n");
6608 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006609 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006610 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006611 }
6612
6613 spin_lock_irqsave(&priv->lock, flags);
6614
Johannes Berg8318d782008-01-24 19:38:38 +01006615 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6616 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006617 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006618 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006619 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006620 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6621 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006622 ret = -EINVAL;
6623 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006624 }
6625
Johannes Berg8318d782008-01-24 19:38:38 +01006626 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006627
Johannes Berg8318d782008-01-24 19:38:38 +01006628 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006629
6630 /* The list of supported rates and rate mask can be different
6631 * for each phymode; since the phymode may have changed, reset
6632 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006633 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006634
6635 spin_unlock_irqrestore(&priv->lock, flags);
6636
6637#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6638 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006639 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006640 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006641 }
6642#endif
6643
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006644 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006645
6646 if (!conf->radio_enabled) {
6647 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006648 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006649 }
6650
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006651 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006652 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006653 ret = -EIO;
6654 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006655 }
6656
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006657 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006658
6659 if (memcmp(&priv->active_rxon,
6660 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006661 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006662 else
6663 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6664
6665 IWL_DEBUG_MAC80211("leave\n");
6666
Zhu Yi76bb77e2007-11-22 10:53:22 +08006667out:
Zhu Yia0646472007-12-20 14:10:01 +08006668 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006669 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006670 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006671}
6672
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006673static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006674{
6675 int rc = 0;
6676
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006677 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006678 return;
6679
6680 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006681 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006682
6683 /* RXON - unassoc (to set timing command) */
6684 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006685 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006686
6687 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006688 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6689 iwl3945_setup_rxon_timing(priv);
6690 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006691 sizeof(priv->rxon_timing), &priv->rxon_timing);
6692 if (rc)
6693 IWL_WARNING("REPLY_RXON_TIMING failed - "
6694 "Attempting to continue.\n");
6695
6696 /* FIXME: what should be the assoc_id for AP? */
6697 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6698 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6699 priv->staging_rxon.flags |=
6700 RXON_FLG_SHORT_PREAMBLE_MSK;
6701 else
6702 priv->staging_rxon.flags &=
6703 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6704
6705 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6706 if (priv->assoc_capability &
6707 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6708 priv->staging_rxon.flags |=
6709 RXON_FLG_SHORT_SLOT_MSK;
6710 else
6711 priv->staging_rxon.flags &=
6712 ~RXON_FLG_SHORT_SLOT_MSK;
6713
Johannes Berg05c914f2008-09-11 00:01:58 +02006714 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006715 priv->staging_rxon.flags &=
6716 ~RXON_FLG_SHORT_SLOT_MSK;
6717 }
6718 /* restore RXON assoc */
6719 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006720 iwl3945_commit_rxon(priv);
6721 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006722 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006723 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006724
6725 /* FIXME - we need to add code here to detect a totally new
6726 * configuration, reset the AP, unassoc, rxon timing, assoc,
6727 * clear sta table, add BCAST sta... */
6728}
6729
Johannes Berg32bfd352007-12-19 01:31:26 +01006730static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6731 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006732 struct ieee80211_if_conf *conf)
6733{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006734 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006735 int rc;
6736
6737 if (conf == NULL)
6738 return -EIO;
6739
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006740 if (priv->vif != vif) {
6741 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006742 return 0;
6743 }
6744
Johannes Berg9d139c82008-07-09 14:40:37 +02006745 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006746 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006747 conf->changed & IEEE80211_IFCC_BEACON) {
6748 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6749 if (!beacon)
6750 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006751 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006752 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006753 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006754 if (rc)
6755 return rc;
6756 }
6757
Zhu Yi5a669262008-01-14 17:46:18 -08006758 if (!iwl3945_is_alive(priv))
6759 return -EAGAIN;
6760
Zhu Yib481de92007-09-25 17:54:57 -07006761 mutex_lock(&priv->mutex);
6762
Zhu Yib481de92007-09-25 17:54:57 -07006763 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006764 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006765
Johannes Berg4150c572007-09-17 01:29:23 -04006766/*
6767 * very dubious code was here; the probe filtering flag is never set:
6768 *
Zhu Yib481de92007-09-25 17:54:57 -07006769 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6770 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006771 */
Zhu Yib481de92007-09-25 17:54:57 -07006772
Johannes Berg05c914f2008-09-11 00:01:58 +02006773 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006774 if (!conf->bssid) {
6775 conf->bssid = priv->mac_addr;
6776 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006777 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6778 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006779 }
6780 if (priv->ibss_beacon)
6781 dev_kfree_skb(priv->ibss_beacon);
6782
Johannes Berg9d139c82008-07-09 14:40:37 +02006783 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006784 }
6785
Mohamed Abbasfde35712007-11-29 11:10:15 +08006786 if (iwl3945_is_rfkill(priv))
6787 goto done;
6788
Zhu Yib481de92007-09-25 17:54:57 -07006789 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6790 !is_multicast_ether_addr(conf->bssid)) {
6791 /* If there is currently a HW scan going on in the background
6792 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006793 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006794 IWL_WARNING("Aborted scan still in progress "
6795 "after 100ms\n");
6796 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6797 mutex_unlock(&priv->mutex);
6798 return -EAGAIN;
6799 }
6800 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6801
6802 /* TODO: Audit driver for usage of these members and see
6803 * if mac80211 deprecates them (priv->bssid looks like it
6804 * shouldn't be there, but I haven't scanned the IBSS code
6805 * to verify) - jpk */
6806 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6807
Johannes Berg05c914f2008-09-11 00:01:58 +02006808 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006809 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006810 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006811 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006812 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006813 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08006814 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006815 }
6816
6817 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006818 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006819 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006820 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006821 }
6822
Mohamed Abbasfde35712007-11-29 11:10:15 +08006823 done:
Zhu Yib481de92007-09-25 17:54:57 -07006824 IWL_DEBUG_MAC80211("leave\n");
6825 mutex_unlock(&priv->mutex);
6826
6827 return 0;
6828}
6829
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006830static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006831 unsigned int changed_flags,
6832 unsigned int *total_flags,
6833 int mc_count, struct dev_addr_list *mc_list)
6834{
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006835 struct iwl3945_priv *priv = hw->priv;
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006836 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006837
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006838 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6839 changed_flags, *total_flags);
6840
6841 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6842 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6843 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6844 else
6845 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006846 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006847 if (changed_flags & FIF_ALLMULTI) {
6848 if (*total_flags & FIF_ALLMULTI)
6849 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6850 else
6851 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6852 }
6853 if (changed_flags & FIF_CONTROL) {
6854 if (*total_flags & FIF_CONTROL)
6855 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6856 else
6857 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6858 }
6859 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6860 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6861 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6862 else
6863 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6864 }
6865
6866 /* We avoid iwl_commit_rxon here to commit the new filter flags
6867 * since mac80211 will call ieee80211_hw_config immediately.
6868 * (mc_list is not supported at this time). Otherwise, we need to
6869 * queue a background iwl_commit_rxon work.
6870 */
6871
6872 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006873 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006874}
6875
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006876static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006877 struct ieee80211_if_init_conf *conf)
6878{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006879 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006880
6881 IWL_DEBUG_MAC80211("enter\n");
6882
6883 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006884
Mohamed Abbasfde35712007-11-29 11:10:15 +08006885 if (iwl3945_is_ready_rf(priv)) {
6886 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006887 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6888 iwl3945_commit_rxon(priv);
6889 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006890 if (priv->vif == conf->vif) {
6891 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006892 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006893 }
6894 mutex_unlock(&priv->mutex);
6895
6896 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006897}
6898
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006899#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6900
6901static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6902 struct ieee80211_vif *vif,
6903 struct ieee80211_bss_conf *bss_conf,
6904 u32 changes)
6905{
6906 struct iwl3945_priv *priv = hw->priv;
6907
6908 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6909
6910 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6911 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6912 bss_conf->use_short_preamble);
6913 if (bss_conf->use_short_preamble)
6914 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6915 else
6916 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6917 }
6918
6919 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6920 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6921 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6922 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6923 else
6924 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6925 }
6926
6927 if (changes & BSS_CHANGED_ASSOC) {
6928 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6929 /* This should never happen as this function should
6930 * never be called from interrupt context. */
6931 if (WARN_ON_ONCE(in_interrupt()))
6932 return;
6933 if (bss_conf->assoc) {
6934 priv->assoc_id = bss_conf->aid;
6935 priv->beacon_int = bss_conf->beacon_int;
6936 priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF;
6937 priv->timestamp1 = (bss_conf->timestamp >> 32) &
6938 0xFFFFFFFF;
6939 priv->assoc_capability = bss_conf->assoc_capability;
6940 priv->next_scan_jiffies = jiffies +
6941 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6942 mutex_lock(&priv->mutex);
6943 iwl3945_post_associate(priv);
6944 mutex_unlock(&priv->mutex);
6945 } else {
6946 priv->assoc_id = 0;
6947 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6948 }
6949 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6950 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6951 iwl3945_send_rxon_assoc(priv);
6952 }
6953
6954}
6955
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006956static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006957{
6958 int rc = 0;
6959 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006960 struct iwl3945_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006961 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006962
6963 IWL_DEBUG_MAC80211("enter\n");
6964
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006965 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006966 spin_lock_irqsave(&priv->lock, flags);
6967
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006968 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006969 rc = -EIO;
6970 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6971 goto out_unlock;
6972 }
6973
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006974 /* we don't schedule scan within next_scan_jiffies period */
6975 if (priv->next_scan_jiffies &&
6976 time_after(priv->next_scan_jiffies, jiffies)) {
6977 rc = -EAGAIN;
6978 goto out_unlock;
6979 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006980 /* if we just finished scan ask for delay for a broadcast scan */
6981 if ((len == 0) && priv->last_scan_jiffies &&
6982 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6983 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006984 rc = -EAGAIN;
6985 goto out_unlock;
6986 }
6987 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006988 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006989 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006990
6991 priv->one_direct_scan = 1;
6992 priv->direct_ssid_len = (u8)
6993 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6994 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006995 } else
6996 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006997
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006998 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006999
7000 IWL_DEBUG_MAC80211("leave\n");
7001
7002out_unlock:
7003 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007004 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007005
7006 return rc;
7007}
7008
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007009static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007010 const u8 *local_addr, const u8 *addr,
7011 struct ieee80211_key_conf *key)
7012{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007013 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007014 int rc = 0;
7015 u8 sta_id;
7016
7017 IWL_DEBUG_MAC80211("enter\n");
7018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007019 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007020 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7021 return -EOPNOTSUPP;
7022 }
7023
7024 if (is_zero_ether_addr(addr))
7025 /* only support pairwise keys */
7026 return -EOPNOTSUPP;
7027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007028 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07007029 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07007030 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
7031 addr);
Zhu Yib481de92007-09-25 17:54:57 -07007032 return -EINVAL;
7033 }
7034
7035 mutex_lock(&priv->mutex);
7036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007037 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007038
Zhu Yib481de92007-09-25 17:54:57 -07007039 switch (cmd) {
7040 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007041 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007042 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007043 iwl3945_set_rxon_hwcrypto(priv, 1);
7044 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007045 key->hw_key_idx = sta_id;
7046 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7047 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7048 }
7049 break;
7050 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007051 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007052 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007053 iwl3945_set_rxon_hwcrypto(priv, 0);
7054 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007055 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7056 }
7057 break;
7058 default:
7059 rc = -EINVAL;
7060 }
7061
7062 IWL_DEBUG_MAC80211("leave\n");
7063 mutex_unlock(&priv->mutex);
7064
7065 return rc;
7066}
7067
Johannes Berge100bb62008-04-30 18:51:21 +02007068static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07007069 const struct ieee80211_tx_queue_params *params)
7070{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007071 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007072 unsigned long flags;
7073 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007074
7075 IWL_DEBUG_MAC80211("enter\n");
7076
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007077 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007078 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7079 return -EIO;
7080 }
7081
7082 if (queue >= AC_NUM) {
7083 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7084 return 0;
7085 }
7086
Zhu Yib481de92007-09-25 17:54:57 -07007087 q = AC_NUM - 1 - queue;
7088
7089 spin_lock_irqsave(&priv->lock, flags);
7090
7091 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7092 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7093 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7094 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01007095 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007096
7097 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7098 priv->qos_data.qos_active = 1;
7099
7100 spin_unlock_irqrestore(&priv->lock, flags);
7101
7102 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02007103 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007104 iwl3945_activate_qos(priv, 1);
7105 else if (priv->assoc_id && iwl3945_is_associated(priv))
7106 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007107
7108 mutex_unlock(&priv->mutex);
7109
Zhu Yib481de92007-09-25 17:54:57 -07007110 IWL_DEBUG_MAC80211("leave\n");
7111 return 0;
7112}
7113
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007114static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007115 struct ieee80211_tx_queue_stats *stats)
7116{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007117 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007118 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007119 struct iwl3945_tx_queue *txq;
7120 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007121 unsigned long flags;
7122
7123 IWL_DEBUG_MAC80211("enter\n");
7124
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007125 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007126 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7127 return -EIO;
7128 }
7129
7130 spin_lock_irqsave(&priv->lock, flags);
7131
7132 for (i = 0; i < AC_NUM; i++) {
7133 txq = &priv->txq[i];
7134 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007135 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007136
Johannes Berg57ffc582008-04-29 17:18:59 +02007137 stats[i].len = q->n_window - avail;
7138 stats[i].limit = q->n_window - q->high_mark;
7139 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07007140
7141 }
7142 spin_unlock_irqrestore(&priv->lock, flags);
7143
7144 IWL_DEBUG_MAC80211("leave\n");
7145
7146 return 0;
7147}
7148
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007149static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007150 struct ieee80211_low_level_stats *stats)
7151{
7152 IWL_DEBUG_MAC80211("enter\n");
7153 IWL_DEBUG_MAC80211("leave\n");
7154
7155 return 0;
7156}
7157
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007158static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007159{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007160 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007161 unsigned long flags;
7162
7163 mutex_lock(&priv->mutex);
7164 IWL_DEBUG_MAC80211("enter\n");
7165
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007166 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007167
Zhu Yib481de92007-09-25 17:54:57 -07007168 spin_lock_irqsave(&priv->lock, flags);
7169 priv->assoc_id = 0;
7170 priv->assoc_capability = 0;
7171 priv->call_post_assoc_from_beacon = 0;
7172
7173 /* new association get rid of ibss beacon skb */
7174 if (priv->ibss_beacon)
7175 dev_kfree_skb(priv->ibss_beacon);
7176
7177 priv->ibss_beacon = NULL;
7178
7179 priv->beacon_int = priv->hw->conf.beacon_int;
7180 priv->timestamp1 = 0;
7181 priv->timestamp0 = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02007182 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07007183 priv->beacon_int = 0;
7184
7185 spin_unlock_irqrestore(&priv->lock, flags);
7186
Mohamed Abbasfde35712007-11-29 11:10:15 +08007187 if (!iwl3945_is_ready_rf(priv)) {
7188 IWL_DEBUG_MAC80211("leave - not ready\n");
7189 mutex_unlock(&priv->mutex);
7190 return;
7191 }
7192
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007193 /* we are restarting association process
7194 * clear RXON_FILTER_ASSOC_MSK bit
7195 */
Johannes Berg05c914f2008-09-11 00:01:58 +02007196 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007197 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007198 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007199 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007200 }
7201
Zhu Yib481de92007-09-25 17:54:57 -07007202 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02007203 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007204
Zhu Yib481de92007-09-25 17:54:57 -07007205 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7206 mutex_unlock(&priv->mutex);
7207 return;
7208 }
7209
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007210 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007211
7212 mutex_unlock(&priv->mutex);
7213
7214 IWL_DEBUG_MAC80211("leave\n");
7215
7216}
7217
Johannes Berge039fa42008-05-15 12:55:29 +02007218static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07007219{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007220 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007221 unsigned long flags;
7222
Zhu Yib481de92007-09-25 17:54:57 -07007223 IWL_DEBUG_MAC80211("enter\n");
7224
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007225 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007226 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07007227 return -EIO;
7228 }
7229
Johannes Berg05c914f2008-09-11 00:01:58 +02007230 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07007231 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07007232 return -EIO;
7233 }
7234
7235 spin_lock_irqsave(&priv->lock, flags);
7236
7237 if (priv->ibss_beacon)
7238 dev_kfree_skb(priv->ibss_beacon);
7239
7240 priv->ibss_beacon = skb;
7241
7242 priv->assoc_id = 0;
7243
7244 IWL_DEBUG_MAC80211("leave\n");
7245 spin_unlock_irqrestore(&priv->lock, flags);
7246
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007247 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007248
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08007249 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007250
Zhu Yib481de92007-09-25 17:54:57 -07007251
7252 return 0;
7253}
7254
7255/*****************************************************************************
7256 *
7257 * sysfs attributes
7258 *
7259 *****************************************************************************/
7260
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007261#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007262
7263/*
7264 * The following adds a new attribute to the sysfs representation
7265 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7266 * used for controlling the debug level.
7267 *
7268 * See the level definitions in iwl for details.
7269 */
7270
7271static ssize_t show_debug_level(struct device_driver *d, char *buf)
7272{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007273 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007274}
7275static ssize_t store_debug_level(struct device_driver *d,
7276 const char *buf, size_t count)
7277{
7278 char *p = (char *)buf;
7279 u32 val;
7280
7281 val = simple_strtoul(p, &p, 0);
7282 if (p == buf)
7283 printk(KERN_INFO DRV_NAME
7284 ": %s is not in hex or decimal form.\n", buf);
7285 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007286 iwl3945_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007287
7288 return strnlen(buf, count);
7289}
7290
7291static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7292 show_debug_level, store_debug_level);
7293
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007294#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007295
Zhu Yib481de92007-09-25 17:54:57 -07007296static ssize_t show_temperature(struct device *d,
7297 struct device_attribute *attr, char *buf)
7298{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007299 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007300
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007301 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007302 return -EAGAIN;
7303
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007304 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007305}
7306
7307static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7308
Zhu Yib481de92007-09-25 17:54:57 -07007309static ssize_t show_tx_power(struct device *d,
7310 struct device_attribute *attr, char *buf)
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 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7314}
7315
7316static ssize_t store_tx_power(struct device *d,
7317 struct device_attribute *attr,
7318 const char *buf, size_t count)
7319{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007320 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007321 char *p = (char *)buf;
7322 u32 val;
7323
7324 val = simple_strtoul(p, &p, 10);
7325 if (p == buf)
7326 printk(KERN_INFO DRV_NAME
7327 ": %s is not in decimal form.\n", buf);
7328 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007329 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007330
7331 return count;
7332}
7333
7334static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7335
7336static ssize_t show_flags(struct device *d,
7337 struct device_attribute *attr, char *buf)
7338{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007339 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007340
7341 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7342}
7343
7344static ssize_t store_flags(struct device *d,
7345 struct device_attribute *attr,
7346 const char *buf, size_t count)
7347{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007348 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007349 u32 flags = simple_strtoul(buf, NULL, 0);
7350
7351 mutex_lock(&priv->mutex);
7352 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7353 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007354 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007355 IWL_WARNING("Could not cancel scan.\n");
7356 else {
7357 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7358 flags);
7359 priv->staging_rxon.flags = cpu_to_le32(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(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7369
7370static ssize_t show_filter_flags(struct device *d,
7371 struct device_attribute *attr, char *buf)
7372{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007373 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007374
7375 return sprintf(buf, "0x%04X\n",
7376 le32_to_cpu(priv->active_rxon.filter_flags));
7377}
7378
7379static ssize_t store_filter_flags(struct device *d,
7380 struct device_attribute *attr,
7381 const char *buf, size_t count)
7382{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007383 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007384 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7385
7386 mutex_lock(&priv->mutex);
7387 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7388 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007389 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007390 IWL_WARNING("Could not cancel scan.\n");
7391 else {
7392 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7393 "0x%04X\n", filter_flags);
7394 priv->staging_rxon.filter_flags =
7395 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007396 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007397 }
7398 }
7399 mutex_unlock(&priv->mutex);
7400
7401 return count;
7402}
7403
7404static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7405 store_filter_flags);
7406
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007407#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007408
7409static ssize_t show_measurement(struct device *d,
7410 struct device_attribute *attr, char *buf)
7411{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007412 struct iwl3945_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08007413 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007414 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007415 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007416 unsigned long flags;
7417
7418 spin_lock_irqsave(&priv->lock, flags);
7419 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7420 spin_unlock_irqrestore(&priv->lock, flags);
7421 return 0;
7422 }
7423 memcpy(&measure_report, &priv->measure_report, size);
7424 priv->measurement_status = 0;
7425 spin_unlock_irqrestore(&priv->lock, flags);
7426
7427 while (size && (PAGE_SIZE - len)) {
7428 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7429 PAGE_SIZE - len, 1);
7430 len = strlen(buf);
7431 if (PAGE_SIZE - len)
7432 buf[len++] = '\n';
7433
7434 ofs += 16;
7435 size -= min(size, 16U);
7436 }
7437
7438 return len;
7439}
7440
7441static ssize_t store_measurement(struct device *d,
7442 struct device_attribute *attr,
7443 const char *buf, size_t count)
7444{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007445 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007446 struct ieee80211_measurement_params params = {
7447 .channel = le16_to_cpu(priv->active_rxon.channel),
7448 .start_time = cpu_to_le64(priv->last_tsf),
7449 .duration = cpu_to_le16(1),
7450 };
7451 u8 type = IWL_MEASURE_BASIC;
7452 u8 buffer[32];
7453 u8 channel;
7454
7455 if (count) {
7456 char *p = buffer;
7457 strncpy(buffer, buf, min(sizeof(buffer), count));
7458 channel = simple_strtoul(p, NULL, 0);
7459 if (channel)
7460 params.channel = channel;
7461
7462 p = buffer;
7463 while (*p && *p != ' ')
7464 p++;
7465 if (*p)
7466 type = simple_strtoul(p + 1, NULL, 0);
7467 }
7468
7469 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7470 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007471 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007472
7473 return count;
7474}
7475
7476static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7477 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007478#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007479
Zhu Yib481de92007-09-25 17:54:57 -07007480static ssize_t store_retry_rate(struct device *d,
7481 struct device_attribute *attr,
7482 const char *buf, size_t count)
7483{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007484 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007485
7486 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7487 if (priv->retry_rate <= 0)
7488 priv->retry_rate = 1;
7489
7490 return count;
7491}
7492
7493static ssize_t show_retry_rate(struct device *d,
7494 struct device_attribute *attr, char *buf)
7495{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007496 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007497 return sprintf(buf, "%d", priv->retry_rate);
7498}
7499
7500static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7501 store_retry_rate);
7502
7503static ssize_t store_power_level(struct device *d,
7504 struct device_attribute *attr,
7505 const char *buf, size_t count)
7506{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007507 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007508 int rc;
7509 int mode;
7510
7511 mode = simple_strtoul(buf, NULL, 0);
7512 mutex_lock(&priv->mutex);
7513
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007514 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007515 rc = -EAGAIN;
7516 goto out;
7517 }
7518
7519 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7520 mode = IWL_POWER_AC;
7521 else
7522 mode |= IWL_POWER_ENABLED;
7523
7524 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007525 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007526 if (rc) {
7527 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7528 goto out;
7529 }
7530 priv->power_mode = mode;
7531 }
7532
7533 rc = count;
7534
7535 out:
7536 mutex_unlock(&priv->mutex);
7537 return rc;
7538}
7539
7540#define MAX_WX_STRING 80
7541
7542/* Values are in microsecond */
7543static const s32 timeout_duration[] = {
7544 350000,
7545 250000,
7546 75000,
7547 37000,
7548 25000,
7549};
7550static const s32 period_duration[] = {
7551 400000,
7552 700000,
7553 1000000,
7554 1000000,
7555 1000000
7556};
7557
7558static ssize_t show_power_level(struct device *d,
7559 struct device_attribute *attr, char *buf)
7560{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007561 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007562 int level = IWL_POWER_LEVEL(priv->power_mode);
7563 char *p = buf;
7564
7565 p += sprintf(p, "%d ", level);
7566 switch (level) {
7567 case IWL_POWER_MODE_CAM:
7568 case IWL_POWER_AC:
7569 p += sprintf(p, "(AC)");
7570 break;
7571 case IWL_POWER_BATTERY:
7572 p += sprintf(p, "(BATTERY)");
7573 break;
7574 default:
7575 p += sprintf(p,
7576 "(Timeout %dms, Period %dms)",
7577 timeout_duration[level - 1] / 1000,
7578 period_duration[level - 1] / 1000);
7579 }
7580
7581 if (!(priv->power_mode & IWL_POWER_ENABLED))
7582 p += sprintf(p, " OFF\n");
7583 else
7584 p += sprintf(p, " \n");
7585
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007586 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007587
7588}
7589
7590static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7591 store_power_level);
7592
7593static ssize_t show_channels(struct device *d,
7594 struct device_attribute *attr, char *buf)
7595{
Johannes Berg8318d782008-01-24 19:38:38 +01007596 /* all this shit doesn't belong into sysfs anyway */
7597 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007598}
7599
7600static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7601
7602static ssize_t show_statistics(struct device *d,
7603 struct device_attribute *attr, char *buf)
7604{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007605 struct iwl3945_priv *priv = dev_get_drvdata(d);
7606 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007607 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007608 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07007609 int rc = 0;
7610
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007611 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007612 return -EAGAIN;
7613
7614 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007615 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007616 mutex_unlock(&priv->mutex);
7617
7618 if (rc) {
7619 len = sprintf(buf,
7620 "Error sending statistics request: 0x%08X\n", rc);
7621 return len;
7622 }
7623
7624 while (size && (PAGE_SIZE - len)) {
7625 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7626 PAGE_SIZE - len, 1);
7627 len = strlen(buf);
7628 if (PAGE_SIZE - len)
7629 buf[len++] = '\n';
7630
7631 ofs += 16;
7632 size -= min(size, 16U);
7633 }
7634
7635 return len;
7636}
7637
7638static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7639
7640static ssize_t show_antenna(struct device *d,
7641 struct device_attribute *attr, char *buf)
7642{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007643 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007644
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007645 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007646 return -EAGAIN;
7647
7648 return sprintf(buf, "%d\n", priv->antenna);
7649}
7650
7651static ssize_t store_antenna(struct device *d,
7652 struct device_attribute *attr,
7653 const char *buf, size_t count)
7654{
7655 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007656 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007657
7658 if (count == 0)
7659 return 0;
7660
7661 if (sscanf(buf, "%1i", &ant) != 1) {
7662 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7663 return count;
7664 }
7665
7666 if ((ant >= 0) && (ant <= 2)) {
7667 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007668 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007669 } else
7670 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7671
7672
7673 return count;
7674}
7675
7676static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7677
7678static ssize_t show_status(struct device *d,
7679 struct device_attribute *attr, char *buf)
7680{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007681 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
7682 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007683 return -EAGAIN;
7684 return sprintf(buf, "0x%08x\n", (int)priv->status);
7685}
7686
7687static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7688
7689static ssize_t dump_error_log(struct device *d,
7690 struct device_attribute *attr,
7691 const char *buf, size_t count)
7692{
7693 char *p = (char *)buf;
7694
7695 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007696 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007697
7698 return strnlen(buf, count);
7699}
7700
7701static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7702
7703static ssize_t dump_event_log(struct device *d,
7704 struct device_attribute *attr,
7705 const char *buf, size_t count)
7706{
7707 char *p = (char *)buf;
7708
7709 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007710 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007711
7712 return strnlen(buf, count);
7713}
7714
7715static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7716
7717/*****************************************************************************
7718 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007719 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007720 *
7721 *****************************************************************************/
7722
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007723static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007724{
7725 priv->workqueue = create_workqueue(DRV_NAME);
7726
7727 init_waitqueue_head(&priv->wait_command_queue);
7728
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007729 INIT_WORK(&priv->up, iwl3945_bg_up);
7730 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7731 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7732 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7733 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7734 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7735 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7736 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007737 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7738 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7739 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007740
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007741 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007742
7743 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007744 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007745}
7746
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007747static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007748{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007749 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007750
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007751 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007752 cancel_delayed_work(&priv->scan_check);
7753 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007754 cancel_work_sync(&priv->beacon_update);
7755}
7756
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007757static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007758 &dev_attr_antenna.attr,
7759 &dev_attr_channels.attr,
7760 &dev_attr_dump_errors.attr,
7761 &dev_attr_dump_events.attr,
7762 &dev_attr_flags.attr,
7763 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007764#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007765 &dev_attr_measurement.attr,
7766#endif
7767 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007768 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007769 &dev_attr_statistics.attr,
7770 &dev_attr_status.attr,
7771 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007772 &dev_attr_tx_power.attr,
7773
7774 NULL
7775};
7776
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007777static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007778 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007779 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007780};
7781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007782static struct ieee80211_ops iwl3945_hw_ops = {
7783 .tx = iwl3945_mac_tx,
7784 .start = iwl3945_mac_start,
7785 .stop = iwl3945_mac_stop,
7786 .add_interface = iwl3945_mac_add_interface,
7787 .remove_interface = iwl3945_mac_remove_interface,
7788 .config = iwl3945_mac_config,
7789 .config_interface = iwl3945_mac_config_interface,
7790 .configure_filter = iwl3945_configure_filter,
7791 .set_key = iwl3945_mac_set_key,
7792 .get_stats = iwl3945_mac_get_stats,
7793 .get_tx_stats = iwl3945_mac_get_tx_stats,
7794 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007795 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007796 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007797 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007798};
7799
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007800static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007801{
7802 int err = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007803 struct iwl3945_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007804 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007805 struct iwl_3945_cfg *cfg = (struct iwl_3945_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007806 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007807
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007808 /***********************
7809 * 1. Allocating HW data
7810 * ********************/
7811
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007812 /* Disabling hardware scan means that mac80211 will perform scans
7813 * "the hard way", rather than using device's scan. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007814 if (iwl3945_param_disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07007815 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007816 iwl3945_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07007817 }
7818
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007819 if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) ||
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007820 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
Zhu Yib481de92007-09-25 17:54:57 -07007821 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007822 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Zhu Yib481de92007-09-25 17:54:57 -07007823 err = -EINVAL;
7824 goto out;
7825 }
7826
7827 /* mac80211 allocates memory for this device instance, including
7828 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007829 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007830 if (hw == NULL) {
7831 IWL_ERROR("Can not allocate network device\n");
7832 err = -ENOMEM;
7833 goto out;
7834 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007835
Zhu Yib481de92007-09-25 17:54:57 -07007836 SET_IEEE80211_DEV(hw, &pdev->dev);
7837
Zhu Yib481de92007-09-25 17:54:57 -07007838 priv = hw->priv;
7839 priv->hw = hw;
Zhu Yib481de92007-09-25 17:54:57 -07007840 priv->pci_dev = pdev;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007841 priv->cfg = cfg;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007842
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007843 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
7844 hw->rate_control_algorithm = "iwl-3945-rs";
7845 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7846
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007847 /* Select antenna (may be helpful if only one antenna is connected) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007848 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007849#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007850 iwl3945_debug_level = iwl3945_param_debug;
Zhu Yib481de92007-09-25 17:54:57 -07007851 atomic_set(&priv->restrict_refcnt, 0);
7852#endif
Zhu Yib481de92007-09-25 17:54:57 -07007853
Bruno Randolf566bfe52008-05-08 19:15:40 +02007854 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007855 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007856 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007857
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007858 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007859 BIT(NL80211_IFTYPE_STATION) |
7860 BIT(NL80211_IFTYPE_ADHOC);
7861
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007862 hw->wiphy->fw_handles_regulatory = true;
7863
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007864 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007865 hw->queues = 4;
7866
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007867 /***************************
7868 * 2. Initializing PCI bus
7869 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007870 if (pci_enable_device(pdev)) {
7871 err = -ENODEV;
7872 goto out_ieee80211_free_hw;
7873 }
7874
7875 pci_set_master(pdev);
7876
Zhu Yib481de92007-09-25 17:54:57 -07007877 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7878 if (!err)
7879 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7880 if (err) {
7881 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
7882 goto out_pci_disable_device;
7883 }
7884
7885 pci_set_drvdata(pdev, priv);
7886 err = pci_request_regions(pdev, DRV_NAME);
7887 if (err)
7888 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007889
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007890 /***********************
7891 * 3. Read REV Register
7892 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007893 priv->hw_base = pci_iomap(pdev, 0, 0);
7894 if (!priv->hw_base) {
7895 err = -ENODEV;
7896 goto out_pci_release_regions;
7897 }
7898
7899 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7900 (unsigned long long) pci_resource_len(pdev, 0));
7901 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7902
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007903 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7904 * PCI Tx retries from interfering with C3 CPU state */
7905 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007906
Zhu Yi5a669262008-01-14 17:46:18 -08007907 /* nic init */
7908 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007909 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Zhu Yi5a669262008-01-14 17:46:18 -08007910
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007911 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Zhu, Yi73d7b5a2008-12-05 07:58:40 -08007912 err = iwl3945_poll_direct_bit(priv, CSR_GP_CNTRL,
7913 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007914 if (err < 0) {
7915 IWL_DEBUG_INFO("Failed to init the card\n");
Zhu Yi5a669262008-01-14 17:46:18 -08007916 goto out_remove_sysfs;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007917 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007918
7919 /***********************
7920 * 4. Read EEPROM
7921 * ********************/
Zhu Yi5a669262008-01-14 17:46:18 -08007922 /* Read the EEPROM */
7923 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007924 if (err) {
Zhu Yi5a669262008-01-14 17:46:18 -08007925 IWL_ERROR("Unable to init EEPROM\n");
7926 goto out_remove_sysfs;
7927 }
7928 /* MAC Address location in EEPROM same for 3945/4965 */
7929 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007930 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08007931 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7932
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007933 /***********************
7934 * 5. Setup HW Constants
7935 * ********************/
7936 /* Device-specific setup */
7937 if (iwl3945_hw_set_hw_setting(priv)) {
7938 IWL_ERROR("failed to set hw settings\n");
7939 goto out_iounmap;
7940 }
7941
7942 /***********************
7943 * 6. Setup priv
7944 * ********************/
7945 priv->retry_rate = 1;
7946 priv->ibss_beacon = NULL;
7947
7948 spin_lock_init(&priv->lock);
7949 spin_lock_init(&priv->power_data.lock);
7950 spin_lock_init(&priv->sta_lock);
7951 spin_lock_init(&priv->hcmd_lock);
7952
7953 INIT_LIST_HEAD(&priv->free_frames);
7954 mutex_init(&priv->mutex);
7955
7956 /* Clear the driver's (not device's) station table */
7957 iwl3945_clear_stations_table(priv);
7958
7959 priv->data_retry_limit = -1;
7960 priv->ieee_channels = NULL;
7961 priv->ieee_rates = NULL;
7962 priv->band = IEEE80211_BAND_2GHZ;
7963
7964 priv->iw_mode = NL80211_IFTYPE_STATION;
7965
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007966 iwl3945_reset_qos(priv);
7967
7968 priv->qos_data.qos_active = 0;
7969 priv->qos_data.qos_cap.val = 0;
7970
7971
7972 priv->rates_mask = IWL_RATES_MASK;
7973 /* If power management is turned on, default to AC mode */
7974 priv->power_mode = IWL_POWER_AC;
7975 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7976
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007977 err = iwl3945_init_channel_map(priv);
7978 if (err) {
7979 IWL_ERROR("initializing regulatory failed: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007980 goto out_release_irq;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007981 }
7982
7983 err = iwl3945_init_geos(priv);
7984 if (err) {
7985 IWL_ERROR("initializing geos failed: %d\n", err);
7986 goto out_free_channel_map;
7987 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007988
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007989 printk(KERN_INFO DRV_NAME
7990 ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name);
7991
7992 /***********************************
7993 * 7. Initialize Module Parameters
7994 * **********************************/
7995
7996 /* Initialize module parameter values here */
7997 /* Disable radio (SW RF KILL) via parameter when loading driver */
7998 if (iwl3945_param_disable) {
7999 set_bit(STATUS_RF_KILL_SW, &priv->status);
8000 IWL_DEBUG_INFO("Radio disabled.\n");
8001 }
8002
8003
8004 /***********************
8005 * 8. Setup Services
8006 * ********************/
8007
8008 spin_lock_irqsave(&priv->lock, flags);
8009 iwl3945_disable_interrupts(priv);
8010 spin_unlock_irqrestore(&priv->lock, flags);
8011
8012 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
8013 if (err) {
8014 IWL_ERROR("failed to create sysfs device attributes\n");
8015 goto out_free_geos;
8016 }
8017
8018 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
8019 iwl3945_setup_deferred_work(priv);
8020 iwl3945_setup_rx_handlers(priv);
8021
8022 /***********************
8023 * 9. Conclude
8024 * ********************/
8025 pci_save_state(pdev);
8026 pci_disable_device(pdev);
8027
8028 /*********************************
8029 * 10. Setup and Register mac80211
8030 * *******************************/
8031
Zhu Yi5a669262008-01-14 17:46:18 -08008032 err = ieee80211_register_hw(priv->hw);
8033 if (err) {
8034 IWL_ERROR("Failed to register network device (error %d)\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008035 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07008036 }
8037
Zhu Yi5a669262008-01-14 17:46:18 -08008038 priv->hw->conf.beacon_int = 100;
8039 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008040
Zhu Yib481de92007-09-25 17:54:57 -07008041
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008042 err = iwl3945_rfkill_init(priv);
8043 if (err)
8044 IWL_ERROR("Unable to initialize RFKILL system. "
8045 "Ignoring error: %d\n", err);
8046
Zhu Yib481de92007-09-25 17:54:57 -07008047 return 0;
8048
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008049 out_remove_sysfs:
8050 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008051 out_free_geos:
8052 iwl3945_free_geos(priv);
8053 out_free_channel_map:
8054 iwl3945_free_channel_map(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008055
Zhu Yib481de92007-09-25 17:54:57 -07008056
8057 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07008058 destroy_workqueue(priv->workqueue);
8059 priv->workqueue = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008060 iwl3945_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008061
8062 out_iounmap:
8063 pci_iounmap(pdev, priv->hw_base);
8064 out_pci_release_regions:
8065 pci_release_regions(pdev);
8066 out_pci_disable_device:
8067 pci_disable_device(pdev);
8068 pci_set_drvdata(pdev, NULL);
8069 out_ieee80211_free_hw:
8070 ieee80211_free_hw(priv->hw);
8071 out:
8072 return err;
8073}
8074
Reinette Chatrec83dbf62008-03-21 13:53:41 -07008075static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008076{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008077 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008078 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07008079
8080 if (!priv)
8081 return;
8082
8083 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8084
Zhu Yib481de92007-09-25 17:54:57 -07008085 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008086
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008087 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008088
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008089 /* make sure we flush any pending irq or
8090 * tasklet for the driver
8091 */
8092 spin_lock_irqsave(&priv->lock, flags);
8093 iwl3945_disable_interrupts(priv);
8094 spin_unlock_irqrestore(&priv->lock, flags);
8095
8096 iwl_synchronize_irq(priv);
8097
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008098 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008099
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008100 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008101 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008102
8103 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008104 iwl3945_rx_queue_free(priv, &priv->rxq);
8105 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008106
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008107 iwl3945_unset_hw_setting(priv);
8108 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008109
Tomas Winkler3ac7f142008-07-21 02:40:14 +03008110 if (priv->mac80211_registered)
Zhu Yib481de92007-09-25 17:54:57 -07008111 ieee80211_unregister_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008112
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08008113 /*netif_stop_queue(dev); */
8114 flush_workqueue(priv->workqueue);
8115
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008116 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008117 * priv->workqueue... so we can't take down the workqueue
8118 * until now... */
8119 destroy_workqueue(priv->workqueue);
8120 priv->workqueue = NULL;
8121
Zhu Yib481de92007-09-25 17:54:57 -07008122 pci_iounmap(pdev, priv->hw_base);
8123 pci_release_regions(pdev);
8124 pci_disable_device(pdev);
8125 pci_set_drvdata(pdev, NULL);
8126
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008127 iwl3945_free_channel_map(priv);
8128 iwl3945_free_geos(priv);
Emmanuel Grumbach261415f2008-05-29 16:35:25 +08008129 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07008130 if (priv->ibss_beacon)
8131 dev_kfree_skb(priv->ibss_beacon);
8132
8133 ieee80211_free_hw(priv->hw);
8134}
8135
8136#ifdef CONFIG_PM
8137
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008138static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008139{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008140 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008141
Zhu Yie655b9f2008-01-24 02:19:38 -08008142 if (priv->is_open) {
8143 set_bit(STATUS_IN_SUSPEND, &priv->status);
8144 iwl3945_mac_stop(priv->hw);
8145 priv->is_open = 1;
8146 }
Zhu Yib481de92007-09-25 17:54:57 -07008147
Zhu Yib481de92007-09-25 17:54:57 -07008148 pci_set_power_state(pdev, PCI_D3hot);
8149
Zhu Yib481de92007-09-25 17:54:57 -07008150 return 0;
8151}
8152
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008153static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008154{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008155 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008156
Zhu Yib481de92007-09-25 17:54:57 -07008157 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008158
Zhu Yie655b9f2008-01-24 02:19:38 -08008159 if (priv->is_open)
8160 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008161
Zhu Yie655b9f2008-01-24 02:19:38 -08008162 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008163 return 0;
8164}
8165
8166#endif /* CONFIG_PM */
8167
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008168/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008169#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008170/* software rf-kill from user */
8171static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
8172{
8173 struct iwl3945_priv *priv = data;
8174 int err = 0;
8175
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008176 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008177 return 0;
8178
8179 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
8180 return 0;
8181
Tomas Winklera96a27f2008-10-23 23:48:56 -07008182 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008183 mutex_lock(&priv->mutex);
8184
8185 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008186 case RFKILL_STATE_UNBLOCKED:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008187 if (iwl3945_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008188 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008189 goto out_unlock;
8190 }
8191 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008192 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008193 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008194 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008195 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008196 default:
Tomas Winklera96a27f2008-10-23 23:48:56 -07008197 IWL_WARNING("we received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008198 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008199 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008200out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008201 mutex_unlock(&priv->mutex);
8202
8203 return err;
8204}
8205
8206int iwl3945_rfkill_init(struct iwl3945_priv *priv)
8207{
8208 struct device *device = wiphy_dev(priv->hw->wiphy);
8209 int ret = 0;
8210
8211 BUG_ON(device == NULL);
8212
8213 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008214 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
8215 if (!priv->rfkill) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008216 IWL_ERROR("Unable to allocate rfkill device.\n");
8217 ret = -ENOMEM;
8218 goto error;
8219 }
8220
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008221 priv->rfkill->name = priv->cfg->name;
8222 priv->rfkill->data = priv;
8223 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
8224 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
8225 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008226
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008227 priv->rfkill->dev.class->suspend = NULL;
8228 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008229
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008230 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008231 if (ret) {
8232 IWL_ERROR("Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008233 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008234 }
8235
8236 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8237 return ret;
8238
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008239freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008240 if (priv->rfkill != NULL)
8241 rfkill_free(priv->rfkill);
8242 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008243
8244error:
8245 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8246 return ret;
8247}
8248
8249void iwl3945_rfkill_unregister(struct iwl3945_priv *priv)
8250{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008251 if (priv->rfkill)
8252 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008253
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008254 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008255}
8256
8257/* set rf-kill to the right state. */
8258void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv)
8259{
8260
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008261 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008262 return;
8263
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008264 if (iwl3945_is_rfkill_hw(priv)) {
8265 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
8266 return;
8267 }
8268
8269 if (!iwl3945_is_rfkill_sw(priv))
8270 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008271 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008272 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008273}
8274#endif
8275
Zhu Yib481de92007-09-25 17:54:57 -07008276/*****************************************************************************
8277 *
8278 * driver and module entry point
8279 *
8280 *****************************************************************************/
8281
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008282static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008283 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008284 .id_table = iwl3945_hw_card_ids,
8285 .probe = iwl3945_pci_probe,
8286 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008287#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008288 .suspend = iwl3945_pci_suspend,
8289 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008290#endif
8291};
8292
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008293static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008294{
8295
8296 int ret;
8297 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8298 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008299
8300 ret = iwl3945_rate_control_register();
8301 if (ret) {
8302 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
8303 return ret;
8304 }
8305
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008306 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008307 if (ret) {
8308 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008309 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07008310 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008311#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008312 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008313 if (ret) {
8314 IWL_ERROR("Unable to create driver sysfs file\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008315 goto error_debug;
Zhu Yib481de92007-09-25 17:54:57 -07008316 }
8317#endif
8318
8319 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008320
8321#ifdef CONFIG_IWL3945_DEBUG
8322error_debug:
8323 pci_unregister_driver(&iwl3945_driver);
8324#endif
8325error_register:
8326 iwl3945_rate_control_unregister();
8327 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07008328}
8329
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008330static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008331{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008332#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008333 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008334#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008335 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008336 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07008337}
8338
Reinette Chatrea0987a82008-12-02 12:14:06 -08008339MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08008340
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008341module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008342MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008343module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008344MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008345module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008346MODULE_PARM_DESC(hwcrypto,
8347 "using hardware crypto engine (default 0 [software])\n");
Wu, Fengguang95aa1942008-12-17 16:52:30 +08008348module_param_named(debug, iwl3945_param_debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008349MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008350module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008351MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8352
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008353module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008354MODULE_PARM_DESC(queues_num, "number of hw queues.");
8355
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008356module_exit(iwl3945_exit);
8357module_init(iwl3945_init);