blob: 0be3e7d971493a59ef99d24a7d885c4ea742d8a6 [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{
Tomas Winkler4c897252008-12-19 10:37:05 +08001142 struct iwl_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,
Tomas Winkler4c897252008-12-19 10:37:05 +08001151 sizeof(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));
Tomas Winkler4c897252008-12-19 10:37:05 +08001346 memset(&priv->stations[sta_id].sta.key, 0,
1347 sizeof(struct iwl4965_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001348 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1349 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1350 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1351 spin_unlock_irqrestore(&priv->sta_lock, flags);
1352
1353 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001354 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001355 return 0;
1356}
1357
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001358static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001359{
1360 struct list_head *element;
1361
1362 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1363 priv->frames_count);
1364
1365 while (!list_empty(&priv->free_frames)) {
1366 element = priv->free_frames.next;
1367 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001368 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001369 priv->frames_count--;
1370 }
1371
1372 if (priv->frames_count) {
1373 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1374 priv->frames_count);
1375 priv->frames_count = 0;
1376 }
1377}
1378
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001379static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001380{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001381 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001382 struct list_head *element;
1383 if (list_empty(&priv->free_frames)) {
1384 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1385 if (!frame) {
1386 IWL_ERROR("Could not allocate frame!\n");
1387 return NULL;
1388 }
1389
1390 priv->frames_count++;
1391 return frame;
1392 }
1393
1394 element = priv->free_frames.next;
1395 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001396 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001397}
1398
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001399static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001400{
1401 memset(frame, 0, sizeof(*frame));
1402 list_add(&frame->list, &priv->free_frames);
1403}
1404
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001405unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001406 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001407 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001408{
1409
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001410 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001411 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1412 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001413 return 0;
1414
1415 if (priv->ibss_beacon->len > left)
1416 return 0;
1417
1418 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1419
1420 return priv->ibss_beacon->len;
1421}
1422
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001423static u8 iwl3945_rate_get_lowest_plcp(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001424{
1425 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001426 int rate_mask;
1427
1428 /* Set rate mask*/
1429 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001430 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001431 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001432 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001433
1434 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001435 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001436 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001437 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001438 }
1439
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001440 /* No valid rate was found. Assign the lowest one */
1441 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1442 return IWL_RATE_1M_PLCP;
1443 else
1444 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001445}
1446
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001447static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001448{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001449 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001450 unsigned int frame_size;
1451 int rc;
1452 u8 rate;
1453
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001454 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001455
1456 if (!frame) {
1457 IWL_ERROR("Could not obtain free frame buffer for beacon "
1458 "command.\n");
1459 return -ENOMEM;
1460 }
1461
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001462 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001463
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001464 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001465
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001466 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001467 &frame->u.cmd[0]);
1468
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001469 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001470
1471 return rc;
1472}
1473
1474/******************************************************************************
1475 *
1476 * EEPROM related functions
1477 *
1478 ******************************************************************************/
1479
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001480static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001481{
1482 memcpy(mac, priv->eeprom.mac_address, 6);
1483}
1484
Reinette Chatre74a3a252008-01-23 10:15:19 -08001485/*
1486 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1487 * embedded controller) as EEPROM reader; each read is a series of pulses
1488 * to/from the EEPROM chip, not a single event, so even reads could conflict
1489 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1490 * simply claims ownership, which should be safe when this function is called
1491 * (i.e. before loading uCode!).
1492 */
1493static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1494{
1495 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1496 return 0;
1497}
1498
Zhu Yib481de92007-09-25 17:54:57 -07001499/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001500 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001501 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001502 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001503 *
1504 * NOTE: This routine uses the non-debug IO access functions.
1505 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001506int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001507{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001508 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001509 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001510 int sz = sizeof(priv->eeprom);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001511 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001512 u16 addr;
1513
1514 /* The EEPROM structure has several padding buffers within it
1515 * and when adding new EEPROM maps is subject to programmer errors
1516 * which may be very difficult to identify without explicitly
1517 * checking the resulting size of the eeprom map. */
1518 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1519
1520 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001521 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001522 return -ENOENT;
1523 }
1524
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001525 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001526 ret = iwl3945_eeprom_acquire_semaphore(priv);
1527 if (ret < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001528 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001529 return -ENOENT;
1530 }
1531
1532 /* eeprom is an array of 16bit values */
1533 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001534 u32 r;
1535
1536 _iwl3945_write32(priv, CSR_EEPROM_REG,
1537 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001538 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001539 ret = iwl3945_poll_direct_bit(priv, CSR_EEPROM_REG,
1540 CSR_EEPROM_REG_READ_VALID_MSK,
1541 IWL_EEPROM_ACCESS_TIMEOUT);
1542 if (ret < 0) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001543 IWL_ERROR("Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001544 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001545 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001546
1547 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001548 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001549 }
1550
1551 return 0;
1552}
1553
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001554static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001555{
1556 if (priv->hw_setting.shared_virt)
1557 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001558 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001559 priv->hw_setting.shared_virt,
1560 priv->hw_setting.shared_phys);
1561}
1562
1563/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001564 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001565 *
1566 * return : set the bit for each supported rate insert in ie
1567 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001568static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001569 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001570{
1571 u16 ret_rates = 0, bit;
1572 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001573 u8 *cnt = ie;
1574 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001575
1576 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1577 if (bit & supported_rate) {
1578 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001579 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001580 ((bit & basic_rate) ? 0x80 : 0x00);
1581 (*cnt)++;
1582 (*left)--;
1583 if ((*left <= 0) ||
1584 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001585 break;
1586 }
1587 }
1588
1589 return ret_rates;
1590}
1591
1592/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001593 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001594 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001595static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001596 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001597 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001598{
1599 int len = 0;
1600 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001601 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001602
1603 /* Make sure there is enough space for the probe request,
1604 * two mandatory IEs and the data */
1605 left -= 24;
1606 if (left < 0)
1607 return 0;
1608 len += 24;
1609
1610 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001611 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001612 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001613 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001614 frame->seq_ctrl = 0;
1615
1616 /* fill in our indirect SSID IE */
1617 /* ...next IE... */
1618
1619 left -= 2;
1620 if (left < 0)
1621 return 0;
1622 len += 2;
1623 pos = &(frame->u.probe_req.variable[0]);
1624 *pos++ = WLAN_EID_SSID;
1625 *pos++ = 0;
1626
Zhu Yib481de92007-09-25 17:54:57 -07001627 /* fill in supported rate */
1628 /* ...next IE... */
1629 left -= 2;
1630 if (left < 0)
1631 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001632
Zhu Yib481de92007-09-25 17:54:57 -07001633 /* ... fill it in... */
1634 *pos++ = WLAN_EID_SUPP_RATES;
1635 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001636
1637 priv->active_rate = priv->rates_mask;
1638 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001639 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1640
Tomas Winklerc7c46672007-10-18 02:04:15 +02001641 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001642 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001643 priv->active_rate_basic, &left);
1644 active_rates &= ~ret_rates;
1645
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001646 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001647 priv->active_rate_basic, &left);
1648 active_rates &= ~ret_rates;
1649
Zhu Yib481de92007-09-25 17:54:57 -07001650 len += 2 + *pos;
1651 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001652 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001653 goto fill_end;
1654
1655 /* fill in supported extended rate */
1656 /* ...next IE... */
1657 left -= 2;
1658 if (left < 0)
1659 return 0;
1660 /* ... fill it in... */
1661 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1662 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001663 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001664 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001665 if (*pos > 0)
1666 len += 2 + *pos;
1667
1668 fill_end:
1669 return (u16)len;
1670}
1671
1672/*
1673 * QoS support
1674*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001675static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
Tomas Winkler4c897252008-12-19 10:37:05 +08001676 struct iwl_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001677{
1678
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001679 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Tomas Winkler4c897252008-12-19 10:37:05 +08001680 sizeof(struct iwl_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001681}
1682
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001683static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001684{
1685 u16 cw_min = 15;
1686 u16 cw_max = 1023;
1687 u8 aifs = 2;
1688 u8 is_legacy = 0;
1689 unsigned long flags;
1690 int i;
1691
1692 spin_lock_irqsave(&priv->lock, flags);
1693 priv->qos_data.qos_active = 0;
1694
Winkler, Tomas6d1ef1a2008-12-09 11:29:00 -08001695 /* QoS always active in AP and ADHOC mode
1696 * In STA mode wait for association
1697 */
1698 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
1699 priv->iw_mode == NL80211_IFTYPE_AP)
1700 priv->qos_data.qos_active = 1;
1701 else
1702 priv->qos_data.qos_active = 0;
1703
1704
1705 /* check for legacy mode */
1706 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
1707 (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
1708 (priv->iw_mode == NL80211_IFTYPE_STATION &&
1709 (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001710 cw_min = 31;
1711 is_legacy = 1;
1712 }
1713
1714 if (priv->qos_data.qos_active)
1715 aifs = 3;
1716
1717 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1718 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1719 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1720 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1721 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1722
1723 if (priv->qos_data.qos_active) {
1724 i = 1;
1725 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1726 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1727 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1728 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1729 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1730
1731 i = 2;
1732 priv->qos_data.def_qos_parm.ac[i].cw_min =
1733 cpu_to_le16((cw_min + 1) / 2 - 1);
1734 priv->qos_data.def_qos_parm.ac[i].cw_max =
1735 cpu_to_le16(cw_max);
1736 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1737 if (is_legacy)
1738 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1739 cpu_to_le16(6016);
1740 else
1741 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1742 cpu_to_le16(3008);
1743 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1744
1745 i = 3;
1746 priv->qos_data.def_qos_parm.ac[i].cw_min =
1747 cpu_to_le16((cw_min + 1) / 4 - 1);
1748 priv->qos_data.def_qos_parm.ac[i].cw_max =
1749 cpu_to_le16((cw_max + 1) / 2 - 1);
1750 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1751 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1752 if (is_legacy)
1753 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1754 cpu_to_le16(3264);
1755 else
1756 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1757 cpu_to_le16(1504);
1758 } else {
1759 for (i = 1; i < 4; i++) {
1760 priv->qos_data.def_qos_parm.ac[i].cw_min =
1761 cpu_to_le16(cw_min);
1762 priv->qos_data.def_qos_parm.ac[i].cw_max =
1763 cpu_to_le16(cw_max);
1764 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1765 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1766 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1767 }
1768 }
1769 IWL_DEBUG_QOS("set QoS to default \n");
1770
1771 spin_unlock_irqrestore(&priv->lock, flags);
1772}
1773
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001774static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001775{
1776 unsigned long flags;
1777
Zhu Yib481de92007-09-25 17:54:57 -07001778 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1779 return;
1780
Zhu Yib481de92007-09-25 17:54:57 -07001781 spin_lock_irqsave(&priv->lock, flags);
1782 priv->qos_data.def_qos_parm.qos_flags = 0;
1783
1784 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1785 !priv->qos_data.qos_cap.q_AP.txop_request)
1786 priv->qos_data.def_qos_parm.qos_flags |=
1787 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1788
1789 if (priv->qos_data.qos_active)
1790 priv->qos_data.def_qos_parm.qos_flags |=
1791 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1792
1793 spin_unlock_irqrestore(&priv->lock, flags);
1794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001795 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001796 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001797 priv->qos_data.qos_active);
1798
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001799 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001800 &(priv->qos_data.def_qos_parm));
1801 }
1802}
1803
Zhu Yib481de92007-09-25 17:54:57 -07001804/*
1805 * Power management (not Tx power!) functions
1806 */
1807#define MSEC_TO_USEC 1024
1808
Tomas Winkler600c0e12008-12-19 10:37:04 +08001809
1810#define NOSLP __constant_cpu_to_le16(0), 0, 0
1811#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -07001812#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1813#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1814 __constant_cpu_to_le32(X1), \
1815 __constant_cpu_to_le32(X2), \
1816 __constant_cpu_to_le32(X3), \
1817 __constant_cpu_to_le32(X4)}
1818
Zhu Yib481de92007-09-25 17:54:57 -07001819/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001820/* for TIM 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001821static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001822 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1823 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1824 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1825 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1826 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1827 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1828};
1829
Tomas Winklera96a27f2008-10-23 23:48:56 -07001830/* for TIM > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001831static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001832 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1833 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1834 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1835 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1836 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1837 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1838 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1839 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1840 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1841 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1842};
1843
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001844int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001845{
1846 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001847 struct iwl3945_power_mgr *pow_data;
1848 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001849 u16 pci_pm;
1850
1851 IWL_DEBUG_POWER("Initialize power \n");
1852
1853 pow_data = &(priv->power_data);
1854
1855 memset(pow_data, 0, sizeof(*pow_data));
1856
1857 pow_data->active_index = IWL_POWER_RANGE_0;
1858 pow_data->dtim_val = 0xffff;
1859
1860 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1861 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1862
1863 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1864 if (rc != 0)
1865 return 0;
1866 else {
Tomas Winkler600c0e12008-12-19 10:37:04 +08001867 struct iwl_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001868
1869 IWL_DEBUG_POWER("adjust power command flags\n");
1870
1871 for (i = 0; i < IWL_POWER_AC; i++) {
1872 cmd = &pow_data->pwr_range_0[i].cmd;
1873
1874 if (pci_pm & 0x1)
1875 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1876 else
1877 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1878 }
1879 }
1880 return rc;
1881}
1882
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001883static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
Tomas Winkler600c0e12008-12-19 10:37:04 +08001884 struct iwl_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001885{
1886 int rc = 0, i;
1887 u8 skip;
1888 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001889 struct iwl3945_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001890 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001891 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001892
1893 if (mode > IWL_POWER_INDEX_5) {
1894 IWL_DEBUG_POWER("Error invalid power mode \n");
1895 return -1;
1896 }
1897 pow_data = &(priv->power_data);
1898
1899 if (pow_data->active_index == IWL_POWER_RANGE_0)
1900 range = &pow_data->pwr_range_0[0];
1901 else
1902 range = &pow_data->pwr_range_1[1];
1903
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001904 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001905
1906#ifdef IWL_MAC80211_DISABLE
1907 if (priv->assoc_network != NULL) {
1908 unsigned long flags;
1909
1910 period = priv->assoc_network->tim.tim_period;
1911 }
1912#endif /*IWL_MAC80211_DISABLE */
1913 skip = range[mode].no_dtim;
1914
1915 if (period == 0) {
1916 period = 1;
1917 skip = 0;
1918 }
1919
1920 if (skip == 0) {
1921 max_sleep = period;
1922 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1923 } else {
1924 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1925 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1926 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1927 }
1928
1929 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1930 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1931 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1932 }
1933
1934 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1935 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1936 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1937 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1938 le32_to_cpu(cmd->sleep_interval[0]),
1939 le32_to_cpu(cmd->sleep_interval[1]),
1940 le32_to_cpu(cmd->sleep_interval[2]),
1941 le32_to_cpu(cmd->sleep_interval[3]),
1942 le32_to_cpu(cmd->sleep_interval[4]));
1943
1944 return rc;
1945}
1946
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001947static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001948{
John W. Linville9a62f732007-11-15 16:27:36 -05001949 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001950 int rc;
Tomas Winkler600c0e12008-12-19 10:37:04 +08001951 struct iwl_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001952
1953 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001954 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001955 * else user level */
1956 switch (mode) {
1957 case IWL_POWER_BATTERY:
1958 final_mode = IWL_POWER_INDEX_3;
1959 break;
1960 case IWL_POWER_AC:
1961 final_mode = IWL_POWER_MODE_CAM;
1962 break;
1963 default:
1964 final_mode = mode;
1965 break;
1966 }
1967
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001968 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001969
Tomas Winkler600c0e12008-12-19 10:37:04 +08001970 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1971 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1972 sizeof(struct iwl3945_powertable_cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001973
1974 if (final_mode == IWL_POWER_MODE_CAM)
1975 clear_bit(STATUS_POWER_PMI, &priv->status);
1976 else
1977 set_bit(STATUS_POWER_PMI, &priv->status);
1978
1979 return rc;
1980}
1981
Zhu Yib481de92007-09-25 17:54:57 -07001982/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001983 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001984 *
1985 * NOTE: priv->mutex is not required before calling this function
1986 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001987static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001988{
1989 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1990 clear_bit(STATUS_SCANNING, &priv->status);
1991 return 0;
1992 }
1993
1994 if (test_bit(STATUS_SCANNING, &priv->status)) {
1995 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1996 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1997 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1998 queue_work(priv->workqueue, &priv->abort_scan);
1999
2000 } else
2001 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2002
2003 return test_bit(STATUS_SCANNING, &priv->status);
2004 }
2005
2006 return 0;
2007}
2008
2009/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002010 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002011 * @ms: amount of time to wait (in milliseconds) for scan to abort
2012 *
2013 * NOTE: priv->mutex must be held before calling this function
2014 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002015static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07002016{
2017 unsigned long now = jiffies;
2018 int ret;
2019
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002020 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002021 if (ret && ms) {
2022 mutex_unlock(&priv->mutex);
2023 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2024 test_bit(STATUS_SCANNING, &priv->status))
2025 msleep(1);
2026 mutex_lock(&priv->mutex);
2027
2028 return test_bit(STATUS_SCANNING, &priv->status);
2029 }
2030
2031 return ret;
2032}
2033
Zhu Yib481de92007-09-25 17:54:57 -07002034#define MAX_UCODE_BEACON_INTERVAL 1024
2035#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002037static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07002038{
2039 u16 new_val = 0;
2040 u16 beacon_factor = 0;
2041
2042 beacon_factor =
2043 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2044 / MAX_UCODE_BEACON_INTERVAL;
2045 new_val = beacon_val / beacon_factor;
2046
2047 return cpu_to_le16(new_val);
2048}
2049
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002050static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002051{
2052 u64 interval_tm_unit;
2053 u64 tsf, result;
2054 unsigned long flags;
2055 struct ieee80211_conf *conf = NULL;
2056 u16 beacon_int = 0;
2057
2058 conf = ieee80211_get_hw_conf(priv->hw);
2059
2060 spin_lock_irqsave(&priv->lock, flags);
2061 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2062 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2063
2064 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2065
2066 tsf = priv->timestamp1;
2067 tsf = ((tsf << 32) | priv->timestamp0);
2068
2069 beacon_int = priv->beacon_int;
2070 spin_unlock_irqrestore(&priv->lock, flags);
2071
Johannes Berg05c914f2008-09-11 00:01:58 +02002072 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07002073 if (beacon_int == 0) {
2074 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2075 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2076 } else {
2077 priv->rxon_timing.beacon_interval =
2078 cpu_to_le16(beacon_int);
2079 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002080 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002081 le16_to_cpu(priv->rxon_timing.beacon_interval));
2082 }
2083
2084 priv->rxon_timing.atim_window = 0;
2085 } else {
2086 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002087 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002088 /* TODO: we need to get atim_window from upper stack
2089 * for now we set to 0 */
2090 priv->rxon_timing.atim_window = 0;
2091 }
2092
2093 interval_tm_unit =
2094 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2095 result = do_div(tsf, interval_tm_unit);
2096 priv->rxon_timing.beacon_init_val =
2097 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2098
2099 IWL_DEBUG_ASSOC
2100 ("beacon interval %d beacon timer %d beacon tim %d\n",
2101 le16_to_cpu(priv->rxon_timing.beacon_interval),
2102 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2103 le16_to_cpu(priv->rxon_timing.atim_window));
2104}
2105
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002106static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002107{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002108 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002109 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2110 return -EIO;
2111 }
2112
2113 if (test_bit(STATUS_SCANNING, &priv->status)) {
2114 IWL_DEBUG_SCAN("Scan already in progress.\n");
2115 return -EAGAIN;
2116 }
2117
2118 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2119 IWL_DEBUG_SCAN("Scan request while abort pending. "
2120 "Queuing.\n");
2121 return -EAGAIN;
2122 }
2123
2124 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002125 if (priv->cfg->sku & IWL_SKU_G)
2126 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
2127 if (priv->cfg->sku & IWL_SKU_A)
2128 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002129 set_bit(STATUS_SCANNING, &priv->status);
2130 priv->scan_start = jiffies;
2131 priv->scan_pass_start = priv->scan_start;
2132
2133 queue_work(priv->workqueue, &priv->request_scan);
2134
2135 return 0;
2136}
2137
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002138static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002139{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002140 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002141
2142 if (hw_decrypt)
2143 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2144 else
2145 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2146
2147 return 0;
2148}
2149
Johannes Berg8318d782008-01-24 19:38:38 +01002150static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2151 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002152{
Johannes Berg8318d782008-01-24 19:38:38 +01002153 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002154 priv->staging_rxon.flags &=
2155 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2156 | RXON_FLG_CCK_MSK);
2157 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2158 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002159 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002160 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2161 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2162 else
2163 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2164
Johannes Berg05c914f2008-09-11 00:01:58 +02002165 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002166 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2167
2168 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2169 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2170 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2171 }
2172}
2173
2174/*
Ian Schram01ebd062007-10-25 17:15:22 +08002175 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002176 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002177static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv,
2178 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002179{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002180 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002181
2182 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2183
Zhu, Yi60294de2008-10-29 14:05:45 -07002184 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002185 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -07002186 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2187 break;
2188
Johannes Berg05c914f2008-09-11 00:01:58 +02002189 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002190 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2191 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2192 break;
2193
Johannes Berg05c914f2008-09-11 00:01:58 +02002194 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002195 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2196 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2197 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2198 RXON_FILTER_ACCEPT_GRP_MSK;
2199 break;
2200
Johannes Berg05c914f2008-09-11 00:01:58 +02002201 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -07002202 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2203 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2204 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2205 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002206 default:
Zhu, Yi60294de2008-10-29 14:05:45 -07002207 IWL_ERROR("Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002208 break;
Zhu Yib481de92007-09-25 17:54:57 -07002209 }
2210
2211#if 0
2212 /* TODO: Figure out when short_preamble would be set and cache from
2213 * that */
2214 if (!hw_to_local(priv->hw)->short_preamble)
2215 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2216 else
2217 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2218#endif
2219
Johannes Berg8318d782008-01-24 19:38:38 +01002220 ch_info = iwl3945_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +08002221 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002222
2223 if (!ch_info)
2224 ch_info = &priv->channel_info[0];
2225
2226 /*
2227 * in some case A channels are all non IBSS
2228 * in this case force B/G channel
2229 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002230 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07002231 ch_info = &priv->channel_info[0];
2232
2233 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2234 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002235 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002236 else
Johannes Berg8318d782008-01-24 19:38:38 +01002237 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002238
Johannes Berg8318d782008-01-24 19:38:38 +01002239 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002240
2241 priv->staging_rxon.ofdm_basic_rates =
2242 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2243 priv->staging_rxon.cck_basic_rates =
2244 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2245}
2246
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002247static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002248{
Johannes Berg05c914f2008-09-11 00:01:58 +02002249 if (mode == NL80211_IFTYPE_ADHOC) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002250 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002252 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002253 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002254 le16_to_cpu(priv->staging_rxon.channel));
2255
2256 if (!ch_info || !is_channel_ibss(ch_info)) {
2257 IWL_ERROR("channel %d not IBSS channel\n",
2258 le16_to_cpu(priv->staging_rxon.channel));
2259 return -EINVAL;
2260 }
2261 }
2262
Zhu, Yi60294de2008-10-29 14:05:45 -07002263 iwl3945_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -07002264 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2265
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002266 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002267
Tomas Winklera96a27f2008-10-23 23:48:56 -07002268 /* don't commit rxon if rf-kill is on*/
Mohamed Abbasfde35712007-11-29 11:10:15 +08002269 if (!iwl3945_is_ready_rf(priv))
2270 return -EAGAIN;
2271
2272 cancel_delayed_work(&priv->scan_check);
2273 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2274 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2275 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2276 return -EAGAIN;
2277 }
2278
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002279 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002280
2281 return 0;
2282}
2283
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002284static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002285 struct ieee80211_tx_info *info,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002286 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002287 struct sk_buff *skb_frag,
2288 int last_frag)
2289{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002290 struct iwl3945_hw_key *keyinfo =
Johannes Berge039fa42008-05-15 12:55:29 +02002291 &priv->stations[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002292
2293 switch (keyinfo->alg) {
2294 case ALG_CCMP:
2295 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2296 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002297 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002298 break;
2299
2300 case ALG_TKIP:
2301#if 0
2302 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2303
2304 if (last_frag)
2305 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2306 8);
2307 else
2308 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2309#endif
2310 break;
2311
2312 case ALG_WEP:
2313 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002314 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002315
2316 if (keyinfo->keylen == 13)
2317 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2318
2319 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2320
2321 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002322 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002323 break;
2324
Zhu Yib481de92007-09-25 17:54:57 -07002325 default:
2326 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2327 break;
2328 }
2329}
2330
2331/*
2332 * handle build REPLY_TX command notification.
2333 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002334static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2335 struct iwl3945_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002336 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002337 struct ieee80211_hdr *hdr,
2338 int is_unicast, u8 std_id)
2339{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002340 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002341 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002342 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002343
2344 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002345 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002346 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002347 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002348 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002349 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002350 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2351 tx_flags |= TX_CMD_FLG_TSF_MSK;
2352 } else {
2353 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2354 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2355 }
2356
2357 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002358 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002359 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2360
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002361 if (ieee80211_is_data_qos(fc)) {
2362 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002363 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002364 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002365 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002366 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002367 }
Zhu Yib481de92007-09-25 17:54:57 -07002368
Johannes Berge6a98542008-10-21 12:40:02 +02002369 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002370 tx_flags |= TX_CMD_FLG_RTS_MSK;
2371 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002372 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002373 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2374 tx_flags |= TX_CMD_FLG_CTS_MSK;
2375 }
2376
2377 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2378 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2379
2380 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002381 if (ieee80211_is_mgmt(fc)) {
2382 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002383 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002384 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002385 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002386 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002387 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002388#ifdef CONFIG_IWL3945_LEDS
2389 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2390#endif
2391 }
Zhu Yib481de92007-09-25 17:54:57 -07002392
2393 cmd->cmd.tx.driver_txop = 0;
2394 cmd->cmd.tx.tx_flags = tx_flags;
2395 cmd->cmd.tx.next_frame_len = 0;
2396}
2397
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002398/**
2399 * iwl3945_get_sta_id - Find station's index within station table
2400 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002401static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002402{
2403 int sta_id;
2404 u16 fc = le16_to_cpu(hdr->frame_control);
2405
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002406 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002407 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2408 is_multicast_ether_addr(hdr->addr1))
2409 return priv->hw_setting.bcast_sta_id;
2410
2411 switch (priv->iw_mode) {
2412
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002413 /* If we are a client station in a BSS network, use the special
2414 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002415 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002416 return IWL_AP_ID;
2417
2418 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002419 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002420 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002421 if (sta_id != IWL_INVALID_STATION)
2422 return sta_id;
2423 return priv->hw_setting.bcast_sta_id;
2424
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002425 /* If this frame is going out to an IBSS network, find the station,
2426 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002427 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002428 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002429 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002430 if (sta_id != IWL_INVALID_STATION)
2431 return sta_id;
2432
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002433 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002434
2435 if (sta_id != IWL_INVALID_STATION)
2436 return sta_id;
2437
Johannes Berge1749612008-10-27 15:59:26 -07002438 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002439 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002440 hdr->addr1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002441 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002442 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002443 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002444 /* If we are in monitor mode, use BCAST. This is required for
2445 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002446 case NL80211_IFTYPE_MONITOR:
Stefanik Gábor914233d2008-06-30 17:23:30 +08002447 return priv->hw_setting.bcast_sta_id;
2448
Zhu Yib481de92007-09-25 17:54:57 -07002449 default:
Jiri Slaby6f147922008-08-11 23:49:41 +02002450 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002451 return priv->hw_setting.bcast_sta_id;
2452 }
2453}
2454
2455/*
2456 * start REPLY_TX command process
2457 */
Johannes Berge039fa42008-05-15 12:55:29 +02002458static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002459{
2460 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002461 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002462 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002463 u32 *control_flags;
Johannes Berge2530082008-05-17 00:57:14 +02002464 int txq_id = skb_get_queue_mapping(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002465 struct iwl3945_tx_queue *txq = NULL;
2466 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002467 dma_addr_t phys_addr;
2468 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002469 struct iwl3945_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002470 u16 len, idx, len_org, hdr_len;
2471 u8 id;
2472 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002473 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002474 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002475 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002476 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002477 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002478 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002479 unsigned long flags;
2480 int rc;
2481
2482 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002483 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002484 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2485 goto drop_unlock;
2486 }
2487
Johannes Berge039fa42008-05-15 12:55:29 +02002488 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002489 IWL_ERROR("ERROR: No TX rate available.\n");
2490 goto drop_unlock;
2491 }
2492
2493 unicast = !is_multicast_ether_addr(hdr->addr1);
2494 id = 0;
2495
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002496 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002497
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002498#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002499 if (ieee80211_is_auth(fc))
2500 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002501 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002502 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002503 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002504 IWL_DEBUG_TX("Sending REASSOC frame\n");
2505#endif
2506
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002507 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002508 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002509 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002510 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002511 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002512 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002513 goto drop_unlock;
2514 }
2515
2516 spin_unlock_irqrestore(&priv->lock, flags);
2517
Harvey Harrison7294ec92008-07-15 18:43:59 -07002518 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002519
2520 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002521 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002522 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002523 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2524 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002525 goto drop;
2526 }
2527
2528 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2529
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002530 if (ieee80211_is_data_qos(fc)) {
2531 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002532 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002533 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2534 IEEE80211_SCTL_SEQ;
2535 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2536 (hdr->seq_ctrl &
2537 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2538 seq_number += 0x10;
2539 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002540
2541 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002542 txq = &priv->txq[txq_id];
2543 q = &txq->q;
2544
2545 spin_lock_irqsave(&priv->lock, flags);
2546
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002547 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002548 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002549 memset(tfd, 0, sizeof(*tfd));
2550 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002551 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002552
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002553 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002554 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002555 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002556
2557 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002558 out_cmd = &txq->cmd[idx];
2559 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2560 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002561
2562 /*
2563 * Set up the Tx-command (not MAC!) header.
2564 * Store the chosen Tx queue and TFD index within the sequence field;
2565 * after Tx, uCode's Tx response will return this value so driver can
2566 * locate the frame within the tx queue and do post-tx processing.
2567 */
Zhu Yib481de92007-09-25 17:54:57 -07002568 out_cmd->hdr.cmd = REPLY_TX;
2569 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002570 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002571
2572 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002573 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2574
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002575 /*
2576 * Use the first empty entry in this queue's command buffer array
2577 * to contain the Tx command and MAC header concatenated together
2578 * (payload data will be in another buffer).
2579 * Size of this varies, due to varying MAC header length.
2580 * If end is not dword aligned, we'll have 2 extra bytes at the end
2581 * of the MAC header (device reads on dword boundaries).
2582 * We'll tell device about this padding later.
2583 */
Zhu Yib481de92007-09-25 17:54:57 -07002584 len = priv->hw_setting.tx_cmd_len +
Tomas Winkler4c897252008-12-19 10:37:05 +08002585 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002586
2587 len_org = len;
2588 len = (len + 3) & ~3;
2589
2590 if (len_org != len)
2591 len_org = 1;
2592 else
2593 len_org = 0;
2594
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002595 /* Physical address of this Tx command's header (not MAC header!),
2596 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002597 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2598 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002599
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002600 /* Add buffer containing Tx command and MAC(!) header to TFD's
2601 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002602 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002603
Johannes Bergd0f09802008-07-29 11:32:07 +02002604 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002605 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002606
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002607 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2608 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002609 len = skb->len - hdr_len;
2610 if (len) {
2611 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2612 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002613 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002614 }
2615
Zhu Yib481de92007-09-25 17:54:57 -07002616 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002617 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002618 *control_flags = TFD_CTL_COUNT_SET(1);
2619 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002620 /* Else use 2 buffers.
2621 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002622 *control_flags = TFD_CTL_COUNT_SET(2) |
2623 TFD_CTL_PAD_SET(U32_PAD(len));
2624
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002625 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002626 len = (u16)skb->len;
2627 out_cmd->cmd.tx.len = cpu_to_le16(len);
2628
2629 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002630 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002631
2632 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002633 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002634
2635 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2636 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2637
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002638 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002639 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002640 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002641 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002642 } else {
2643 wait_write_ptr = 1;
2644 txq->need_update = 0;
2645 }
2646
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002647 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002648 sizeof(out_cmd->cmd.tx));
2649
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002650 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002651 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002652
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002653 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002654 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002655 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002656 spin_unlock_irqrestore(&priv->lock, flags);
2657
2658 if (rc)
2659 return rc;
2660
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002661 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002662 && priv->mac80211_registered) {
2663 if (wait_write_ptr) {
2664 spin_lock_irqsave(&priv->lock, flags);
2665 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002666 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002667 spin_unlock_irqrestore(&priv->lock, flags);
2668 }
2669
Johannes Berge2530082008-05-17 00:57:14 +02002670 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002671 }
2672
2673 return 0;
2674
2675drop_unlock:
2676 spin_unlock_irqrestore(&priv->lock, flags);
2677drop:
2678 return -1;
2679}
2680
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002681static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002682{
Johannes Berg8318d782008-01-24 19:38:38 +01002683 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002684 struct ieee80211_rate *rate;
2685 int i;
2686
Johannes Berg8318d782008-01-24 19:38:38 +01002687 sband = iwl3945_get_band(priv, priv->band);
2688 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002689 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2690 return;
2691 }
Zhu Yib481de92007-09-25 17:54:57 -07002692
2693 priv->active_rate = 0;
2694 priv->active_rate_basic = 0;
2695
Johannes Berg8318d782008-01-24 19:38:38 +01002696 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2697 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002698
Johannes Berg8318d782008-01-24 19:38:38 +01002699 for (i = 0; i < sband->n_bitrates; i++) {
2700 rate = &sband->bitrates[i];
2701 if ((rate->hw_value < IWL_RATE_COUNT) &&
2702 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2703 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2704 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2705 priv->active_rate |= (1 << rate->hw_value);
2706 }
Zhu Yib481de92007-09-25 17:54:57 -07002707 }
2708
2709 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2710 priv->active_rate, priv->active_rate_basic);
2711
2712 /*
2713 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2714 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2715 * OFDM
2716 */
2717 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2718 priv->staging_rxon.cck_basic_rates =
2719 ((priv->active_rate_basic &
2720 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2721 else
2722 priv->staging_rxon.cck_basic_rates =
2723 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2724
2725 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2726 priv->staging_rxon.ofdm_basic_rates =
2727 ((priv->active_rate_basic &
2728 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2729 IWL_FIRST_OFDM_RATE) & 0xFF;
2730 else
2731 priv->staging_rxon.ofdm_basic_rates =
2732 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2733}
2734
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002735static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002736{
2737 unsigned long flags;
2738
2739 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2740 return;
2741
2742 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2743 disable_radio ? "OFF" : "ON");
2744
2745 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002746 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002747 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002748 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002749 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002750 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002751 CSR_UCODE_SW_BIT_RFKILL);
2752 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002753 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002754 set_bit(STATUS_RF_KILL_SW, &priv->status);
2755 }
2756 return;
2757 }
2758
2759 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002760 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002761
2762 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2763 spin_unlock_irqrestore(&priv->lock, flags);
2764
2765 /* wake up ucode */
2766 msleep(10);
2767
2768 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002769 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
2770 if (!iwl3945_grab_nic_access(priv))
2771 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002772 spin_unlock_irqrestore(&priv->lock, flags);
2773
2774 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2775 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2776 "disabled by HW switch\n");
2777 return;
2778 }
2779
Zhu Yi808e72a2008-06-12 09:47:17 +08002780 if (priv->is_open)
2781 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002782 return;
2783}
2784
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002785void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002786 u32 decrypt_res, struct ieee80211_rx_status *stats)
2787{
2788 u16 fc =
2789 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2790
2791 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2792 return;
2793
2794 if (!(fc & IEEE80211_FCTL_PROTECTED))
2795 return;
2796
2797 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2798 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2799 case RX_RES_STATUS_SEC_TYPE_TKIP:
2800 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2801 RX_RES_STATUS_BAD_ICV_MIC)
2802 stats->flag |= RX_FLAG_MMIC_ERROR;
2803 case RX_RES_STATUS_SEC_TYPE_WEP:
2804 case RX_RES_STATUS_SEC_TYPE_CCMP:
2805 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2806 RX_RES_STATUS_DECRYPT_OK) {
2807 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2808 stats->flag |= RX_FLAG_DECRYPTED;
2809 }
2810 break;
2811
2812 default:
2813 break;
2814 }
2815}
2816
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002817#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002818
2819#include "iwl-spectrum.h"
2820
2821#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2822#define BEACON_TIME_MASK_HIGH 0xFF000000
2823#define TIME_UNIT 1024
2824
2825/*
2826 * extended beacon time format
2827 * time in usec will be changed into a 32-bit value in 8:24 format
2828 * the high 1 byte is the beacon counts
2829 * the lower 3 bytes is the time in usec within one beacon interval
2830 */
2831
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002832static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002833{
2834 u32 quot;
2835 u32 rem;
2836 u32 interval = beacon_interval * 1024;
2837
2838 if (!interval || !usec)
2839 return 0;
2840
2841 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2842 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2843
2844 return (quot << 24) + rem;
2845}
2846
2847/* base is usually what we get from ucode with each received frame,
2848 * the same as HW timer counter counting down
2849 */
2850
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002851static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002852{
2853 u32 base_low = base & BEACON_TIME_MASK_LOW;
2854 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2855 u32 interval = beacon_interval * TIME_UNIT;
2856 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2857 (addon & BEACON_TIME_MASK_HIGH);
2858
2859 if (base_low > addon_low)
2860 res += base_low - addon_low;
2861 else if (base_low < addon_low) {
2862 res += interval + base_low - addon_low;
2863 res += (1 << 24);
2864 } else
2865 res += (1 << 24);
2866
2867 return cpu_to_le32(res);
2868}
2869
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002870static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002871 struct ieee80211_measurement_params *params,
2872 u8 type)
2873{
Tomas Winkler600c0e12008-12-19 10:37:04 +08002874 struct iwl_spectrum_cmd spectrum;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002875 struct iwl3945_rx_packet *res;
2876 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002877 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2878 .data = (void *)&spectrum,
2879 .meta.flags = CMD_WANT_SKB,
2880 };
2881 u32 add_time = le64_to_cpu(params->start_time);
2882 int rc;
2883 int spectrum_resp_status;
2884 int duration = le16_to_cpu(params->duration);
2885
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002886 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002887 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002888 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002889 le64_to_cpu(params->start_time) - priv->last_tsf,
2890 le16_to_cpu(priv->rxon_timing.beacon_interval));
2891
2892 memset(&spectrum, 0, sizeof(spectrum));
2893
2894 spectrum.channel_count = cpu_to_le16(1);
2895 spectrum.flags =
2896 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2897 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2898 cmd.len = sizeof(spectrum);
2899 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2900
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002901 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002902 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002903 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002904 add_time,
2905 le16_to_cpu(priv->rxon_timing.beacon_interval));
2906 else
2907 spectrum.start_time = 0;
2908
2909 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2910 spectrum.channels[0].channel = params->channel;
2911 spectrum.channels[0].type = type;
2912 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2913 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2914 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2915
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002916 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002917 if (rc)
2918 return rc;
2919
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002920 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002921 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2922 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2923 rc = -EIO;
2924 }
2925
2926 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2927 switch (spectrum_resp_status) {
2928 case 0: /* Command will be handled */
2929 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002930 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2931 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002932 priv->measurement_status &= ~MEASUREMENT_READY;
2933 }
2934 priv->measurement_status |= MEASUREMENT_ACTIVE;
2935 rc = 0;
2936 break;
2937
2938 case 1: /* Command will not be handled */
2939 rc = -EAGAIN;
2940 break;
2941 }
2942
2943 dev_kfree_skb_any(cmd.meta.u.skb);
2944
2945 return rc;
2946}
2947#endif
2948
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002949static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
2950 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002951{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002952 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
2953 struct iwl3945_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002954 struct delayed_work *pwork;
2955
2956 palive = &pkt->u.alive_frame;
2957
2958 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2959 "0x%01X 0x%01X\n",
2960 palive->is_valid, palive->ver_type,
2961 palive->ver_subtype);
2962
2963 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2964 IWL_DEBUG_INFO("Initialization Alive received.\n");
2965 memcpy(&priv->card_alive_init,
2966 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002967 sizeof(struct iwl3945_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002968 pwork = &priv->init_alive_start;
2969 } else {
2970 IWL_DEBUG_INFO("Runtime Alive received.\n");
2971 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002972 sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002973 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002974 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002975 }
2976
2977 /* We delay the ALIVE response by 5ms to
2978 * give the HW RF Kill time to activate... */
2979 if (palive->is_valid == UCODE_VALID_OK)
2980 queue_delayed_work(priv->workqueue, pwork,
2981 msecs_to_jiffies(5));
2982 else
2983 IWL_WARNING("uCode did not respond OK.\n");
2984}
2985
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002986static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
2987 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002988{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002989 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002990
2991 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2992 return;
2993}
2994
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002995static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
2996 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002997{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002998 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002999
3000 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3001 "seq 0x%04X ser 0x%08X\n",
3002 le32_to_cpu(pkt->u.err_resp.error_type),
3003 get_cmd_string(pkt->u.err_resp.cmd_id),
3004 pkt->u.err_resp.cmd_id,
3005 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3006 le32_to_cpu(pkt->u.err_resp.error_info));
3007}
3008
3009#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3010
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003011static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003012{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003013 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3014 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003015 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003016 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3017 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3018 rxon->channel = csa->channel;
3019 priv->staging_rxon.channel = csa->channel;
3020}
3021
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003022static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3023 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003024{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003025#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003026 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003027 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003028
3029 if (!report->state) {
3030 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3031 "Spectrum Measure Notification: Start\n");
3032 return;
3033 }
3034
3035 memcpy(&priv->measure_report, report, sizeof(*report));
3036 priv->measurement_status |= MEASUREMENT_READY;
3037#endif
3038}
3039
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003040static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3041 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003042{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003043#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003044 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003045 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003046 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3047 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3048#endif
3049}
3050
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003051static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3052 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003053{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003054 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003055 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3056 "notification for %s:\n",
3057 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003058 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003059}
3060
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003061static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003062{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003063 struct iwl3945_priv *priv =
3064 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003065 struct sk_buff *beacon;
3066
3067 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02003068 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07003069
3070 if (!beacon) {
3071 IWL_ERROR("update beacon failed\n");
3072 return;
3073 }
3074
3075 mutex_lock(&priv->mutex);
3076 /* new beacon skb is allocated every time; dispose previous.*/
3077 if (priv->ibss_beacon)
3078 dev_kfree_skb(priv->ibss_beacon);
3079
3080 priv->ibss_beacon = beacon;
3081 mutex_unlock(&priv->mutex);
3082
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003083 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003084}
3085
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003086static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3087 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003088{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003089#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003090 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3091 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003092 u8 rate = beacon->beacon_notify_hdr.rate;
3093
3094 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3095 "tsf %d %d rate %d\n",
3096 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3097 beacon->beacon_notify_hdr.failure_frame,
3098 le32_to_cpu(beacon->ibss_mgr_status),
3099 le32_to_cpu(beacon->high_tsf),
3100 le32_to_cpu(beacon->low_tsf), rate);
3101#endif
3102
Johannes Berg05c914f2008-09-11 00:01:58 +02003103 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07003104 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3105 queue_work(priv->workqueue, &priv->beacon_update);
3106}
3107
3108/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003109static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3110 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003111{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003112#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003113 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003114 struct iwl_scanreq_notification *notif =
3115 (struct iwl_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003116
3117 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3118#endif
3119}
3120
3121/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003122static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3123 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003124{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003125 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003126 struct iwl_scanstart_notification *notif =
3127 (struct iwl_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003128 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3129 IWL_DEBUG_SCAN("Scan start: "
3130 "%d [802.11%s] "
3131 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3132 notif->channel,
3133 notif->band ? "bg" : "a",
3134 notif->tsf_high,
3135 notif->tsf_low, notif->status, notif->beacon_timer);
3136}
3137
3138/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003139static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3140 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003141{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003142 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003143 struct iwl_scanresults_notification *notif =
3144 (struct iwl_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003145
3146 IWL_DEBUG_SCAN("Scan ch.res: "
3147 "%d [802.11%s] "
3148 "(TSF: 0x%08X:%08X) - %d "
3149 "elapsed=%lu usec (%dms since last)\n",
3150 notif->channel,
3151 notif->band ? "bg" : "a",
3152 le32_to_cpu(notif->tsf_high),
3153 le32_to_cpu(notif->tsf_low),
3154 le32_to_cpu(notif->statistics[0]),
3155 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3156 jiffies_to_msecs(elapsed_jiffies
3157 (priv->last_scan_jiffies, jiffies)));
3158
3159 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003160 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003161}
3162
3163/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003164static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3165 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003166{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003167 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003168 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003169
3170 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3171 scan_notif->scanned_channels,
3172 scan_notif->tsf_low,
3173 scan_notif->tsf_high, scan_notif->status);
3174
3175 /* The HW is no longer scanning */
3176 clear_bit(STATUS_SCAN_HW, &priv->status);
3177
3178 /* The scan completion notification came in, so kill that timer... */
3179 cancel_delayed_work(&priv->scan_check);
3180
3181 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003182 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
3183 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07003184 jiffies_to_msecs(elapsed_jiffies
3185 (priv->scan_pass_start, jiffies)));
3186
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003187 /* Remove this scanned band from the list of pending
3188 * bands to scan, band G precedes A in order of scanning
3189 * as seen in iwl3945_bg_request_scan */
3190 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
3191 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
3192 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
3193 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07003194
3195 /* If a request to abort was given, or the scan did not succeed
3196 * then we reset the scan state machine and terminate,
3197 * re-queuing another scan if one has been requested */
3198 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3199 IWL_DEBUG_INFO("Aborted scan completed.\n");
3200 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3201 } else {
3202 /* If there are more bands on this scan pass reschedule */
3203 if (priv->scan_bands > 0)
3204 goto reschedule;
3205 }
3206
3207 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003208 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003209 IWL_DEBUG_INFO("Setting scan to off\n");
3210
3211 clear_bit(STATUS_SCANNING, &priv->status);
3212
3213 IWL_DEBUG_INFO("Scan took %dms\n",
3214 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3215
3216 queue_work(priv->workqueue, &priv->scan_completed);
3217
3218 return;
3219
3220reschedule:
3221 priv->scan_pass_start = jiffies;
3222 queue_work(priv->workqueue, &priv->request_scan);
3223}
3224
3225/* Handle notification from uCode that card's power state is changing
3226 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003227static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3228 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003229{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003230 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003231 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3232 unsigned long status = priv->status;
3233
3234 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3235 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3236 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3237
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003238 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003239 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3240
3241 if (flags & HW_CARD_DISABLED)
3242 set_bit(STATUS_RF_KILL_HW, &priv->status);
3243 else
3244 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3245
3246
3247 if (flags & SW_CARD_DISABLED)
3248 set_bit(STATUS_RF_KILL_SW, &priv->status);
3249 else
3250 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003252 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003253
3254 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3255 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3256 (test_bit(STATUS_RF_KILL_SW, &status) !=
3257 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3258 queue_work(priv->workqueue, &priv->rf_kill);
3259 else
3260 wake_up_interruptible(&priv->wait_command_queue);
3261}
3262
3263/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003264 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003265 *
3266 * Setup the RX handlers for each of the reply types sent from the uCode
3267 * to the host.
3268 *
3269 * This function chains into the hardware specific files for them to setup
3270 * any hardware specific handlers as well.
3271 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003272static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003273{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003274 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3275 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3276 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3277 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003278 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003279 iwl3945_rx_spectrum_measure_notif;
3280 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003281 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003282 iwl3945_rx_pm_debug_statistics_notif;
3283 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003284
Ben Cahill9fbab512007-11-29 11:09:47 +08003285 /*
3286 * The same handler is used for both the REPLY to a discrete
3287 * statistics request from the host as well as for the periodic
3288 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003289 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003290 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3291 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003292
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003293 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3294 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003295 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003296 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003297 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003298 iwl3945_rx_scan_complete_notif;
3299 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003300
Ben Cahill9fbab512007-11-29 11:09:47 +08003301 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003302 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003303}
3304
3305/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003306 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3307 * When FW advances 'R' index, all entries between old and new 'R' index
3308 * need to be reclaimed.
3309 */
3310static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv,
3311 int txq_id, int index)
3312{
3313 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3314 struct iwl3945_queue *q = &txq->q;
3315 int nfreed = 0;
3316
3317 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3318 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3319 "is out of range [0-%d] %d %d.\n", txq_id,
3320 index, q->n_bd, q->write_ptr, q->read_ptr);
3321 return;
3322 }
3323
3324 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3325 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3326 if (nfreed > 1) {
3327 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
3328 q->write_ptr, q->read_ptr);
3329 queue_work(priv->workqueue, &priv->restart);
3330 break;
3331 }
3332 nfreed++;
3333 }
3334}
3335
3336
3337/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003338 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003339 * @rxb: Rx buffer to reclaim
3340 *
3341 * If an Rx buffer has an async callback associated with it the callback
3342 * will be executed. The attached skb (if present) will only be freed
3343 * if the callback returns 1
3344 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003345static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3346 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003347{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003348 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003349 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3350 int txq_id = SEQ_TO_QUEUE(sequence);
3351 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003352 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07003353 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003354 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003355
Zhu Yib481de92007-09-25 17:54:57 -07003356 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3357
3358 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3359 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3360
3361 /* Input error checking is done when commands are added to queue. */
3362 if (cmd->meta.flags & CMD_WANT_SKB) {
3363 cmd->meta.source->u.skb = rxb->skb;
3364 rxb->skb = NULL;
3365 } else if (cmd->meta.u.callback &&
3366 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3367 rxb->skb = NULL;
3368
Tomas Winkler91c066f2008-03-06 17:36:55 -08003369 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003370
3371 if (!(cmd->meta.flags & CMD_ASYNC)) {
3372 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3373 wake_up_interruptible(&priv->wait_command_queue);
3374 }
3375}
3376
3377/************************** RX-FUNCTIONS ****************************/
3378/*
3379 * Rx theory of operation
3380 *
3381 * The host allocates 32 DMA target addresses and passes the host address
3382 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3383 * 0 to 31
3384 *
3385 * Rx Queue Indexes
3386 * The host/firmware share two index registers for managing the Rx buffers.
3387 *
3388 * The READ index maps to the first position that the firmware may be writing
3389 * to -- the driver can read up to (but not including) this position and get
3390 * good data.
3391 * The READ index is managed by the firmware once the card is enabled.
3392 *
3393 * The WRITE index maps to the last position the driver has read from -- the
3394 * position preceding WRITE is the last slot the firmware can place a packet.
3395 *
3396 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3397 * WRITE = READ.
3398 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003399 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003400 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3401 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003402 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003403 * and fire the RX interrupt. The driver can then query the READ index and
3404 * process as many packets as possible, moving the WRITE index forward as it
3405 * resets the Rx queue buffers with new memory.
3406 *
3407 * The management in the driver is as follows:
3408 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3409 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003410 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003411 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003412 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3413 * 'processed' and 'read' driver indexes as well)
3414 * + A received packet is processed and handed to the kernel network stack,
3415 * detached from the iwl->rxq. The driver 'processed' index is updated.
3416 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3417 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3418 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3419 * were enough free buffers and RX_STALLED is set it is cleared.
3420 *
3421 *
3422 * Driver sequence:
3423 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003424 * iwl3945_rx_queue_alloc() Allocates rx_free
3425 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003426 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003427 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003428 * queue, updates firmware pointers, and updates
3429 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003430 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003431 *
3432 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003433 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003434 * READ INDEX, detaching the SKB from the pool.
3435 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003436 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003437 * slots.
3438 * ...
3439 *
3440 */
3441
3442/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003443 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003444 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003445static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003446{
3447 int s = q->read - q->write;
3448 if (s <= 0)
3449 s += RX_QUEUE_SIZE;
3450 /* keep some buffer to not confuse full and empty queue */
3451 s -= 2;
3452 if (s < 0)
3453 s = 0;
3454 return s;
3455}
3456
3457/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003458 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003459 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003460int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003461{
3462 u32 reg = 0;
3463 int rc = 0;
3464 unsigned long flags;
3465
3466 spin_lock_irqsave(&q->lock, flags);
3467
3468 if (q->need_update == 0)
3469 goto exit_unlock;
3470
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003471 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003472 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003473 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003474
3475 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003476 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003477 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3478 goto exit_unlock;
3479 }
3480
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003481 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003482 if (rc)
3483 goto exit_unlock;
3484
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003485 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003486 iwl3945_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003487 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003488 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003489
3490 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003491 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003492 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003493 iwl3945_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003494
3495
3496 q->need_update = 0;
3497
3498 exit_unlock:
3499 spin_unlock_irqrestore(&q->lock, flags);
3500 return rc;
3501}
3502
3503/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003504 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003505 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003506static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003507 dma_addr_t dma_addr)
3508{
3509 return cpu_to_le32((u32)dma_addr);
3510}
3511
3512/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003513 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003514 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003515 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003516 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003517 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003518 *
3519 * This moves the 'write' index forward to catch up with 'processed', and
3520 * also updates the memory address in the firmware to reference the new
3521 * target buffer.
3522 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003523static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003524{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003525 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003526 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003527 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003528 unsigned long flags;
3529 int write, rc;
3530
3531 spin_lock_irqsave(&rxq->lock, flags);
3532 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003533 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003534 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003535 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003536 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003537 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003538
3539 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003540 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003541 rxq->queue[rxq->write] = rxb;
3542 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3543 rxq->free_count--;
3544 }
3545 spin_unlock_irqrestore(&rxq->lock, flags);
3546 /* If the pre-allocated buffer pool is dropping low, schedule to
3547 * refill it */
3548 if (rxq->free_count <= RX_LOW_WATERMARK)
3549 queue_work(priv->workqueue, &priv->rx_replenish);
3550
3551
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003552 /* If we've added more space for the firmware to place data, tell it.
3553 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003554 if ((write != (rxq->write & ~0x7))
3555 || (abs(rxq->write - rxq->read) > 7)) {
3556 spin_lock_irqsave(&rxq->lock, flags);
3557 rxq->need_update = 1;
3558 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003559 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003560 if (rc)
3561 return rc;
3562 }
3563
3564 return 0;
3565}
3566
3567/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003568 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003569 *
3570 * When moving to rx_free an SKB is allocated for the slot.
3571 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003572 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003573 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003574 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003575static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003576{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003577 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003578 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003579 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003580 unsigned long flags;
3581 spin_lock_irqsave(&rxq->lock, flags);
3582 while (!list_empty(&rxq->rx_used)) {
3583 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003584 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003585
3586 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003587 rxb->skb =
3588 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3589 if (!rxb->skb) {
3590 if (net_ratelimit())
3591 printk(KERN_CRIT DRV_NAME
3592 ": Can not allocate SKB buffers\n");
3593 /* We don't reschedule replenish work here -- we will
3594 * call the restock method and if it still needs
3595 * more buffers it will schedule replenish */
3596 break;
3597 }
Zhu Yi12342c42007-12-20 11:27:32 +08003598
3599 /* If radiotap head is required, reserve some headroom here.
3600 * The physical head count is a variable rx_stats->phy_count.
3601 * We reserve 4 bytes here. Plus these extra bytes, the
3602 * headroom of the physical head should be enough for the
3603 * radiotap head that iwl3945 supported. See iwl3945_rt.
3604 */
3605 skb_reserve(rxb->skb, 4);
3606
Zhu Yib481de92007-09-25 17:54:57 -07003607 priv->alloc_rxb_skb++;
3608 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003609
3610 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003611 rxb->dma_addr =
3612 pci_map_single(priv->pci_dev, rxb->skb->data,
3613 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3614 list_add_tail(&rxb->list, &rxq->rx_free);
3615 rxq->free_count++;
3616 }
3617 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003618}
3619
3620/*
3621 * this should be called while priv->lock is locked
3622 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003623static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003624{
3625 struct iwl3945_priv *priv = data;
3626
3627 iwl3945_rx_allocate(priv);
3628 iwl3945_rx_queue_restock(priv);
3629}
3630
3631
3632void iwl3945_rx_replenish(void *data)
3633{
3634 struct iwl3945_priv *priv = data;
3635 unsigned long flags;
3636
3637 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003638
3639 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003640 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003641 spin_unlock_irqrestore(&priv->lock, flags);
3642}
3643
3644/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003645 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003646 * This free routine walks the list of POOL entries and if SKB is set to
3647 * non NULL it is unmapped and freed
3648 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003649static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003650{
3651 int i;
3652 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3653 if (rxq->pool[i].skb != NULL) {
3654 pci_unmap_single(priv->pci_dev,
3655 rxq->pool[i].dma_addr,
3656 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3657 dev_kfree_skb(rxq->pool[i].skb);
3658 }
3659 }
3660
3661 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3662 rxq->dma_addr);
3663 rxq->bd = NULL;
3664}
3665
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003666int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003667{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003668 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003669 struct pci_dev *dev = priv->pci_dev;
3670 int i;
3671
3672 spin_lock_init(&rxq->lock);
3673 INIT_LIST_HEAD(&rxq->rx_free);
3674 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003675
3676 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003677 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3678 if (!rxq->bd)
3679 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003680
Zhu Yib481de92007-09-25 17:54:57 -07003681 /* Fill the rx_used queue with _all_ of the Rx buffers */
3682 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3683 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003684
Zhu Yib481de92007-09-25 17:54:57 -07003685 /* Set us so that we have processed and used all buffers, but have
3686 * not restocked the Rx queue with fresh buffers */
3687 rxq->read = rxq->write = 0;
3688 rxq->free_count = 0;
3689 rxq->need_update = 0;
3690 return 0;
3691}
3692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003693void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003694{
3695 unsigned long flags;
3696 int i;
3697 spin_lock_irqsave(&rxq->lock, flags);
3698 INIT_LIST_HEAD(&rxq->rx_free);
3699 INIT_LIST_HEAD(&rxq->rx_used);
3700 /* Fill the rx_used queue with _all_ of the Rx buffers */
3701 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3702 /* In the reset function, these buffers may have been allocated
3703 * to an SKB, so we need to unmap and free potential storage */
3704 if (rxq->pool[i].skb != NULL) {
3705 pci_unmap_single(priv->pci_dev,
3706 rxq->pool[i].dma_addr,
3707 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3708 priv->alloc_rxb_skb--;
3709 dev_kfree_skb(rxq->pool[i].skb);
3710 rxq->pool[i].skb = NULL;
3711 }
3712 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3713 }
3714
3715 /* Set us so that we have processed and used all buffers, but have
3716 * not restocked the Rx queue with fresh buffers */
3717 rxq->read = rxq->write = 0;
3718 rxq->free_count = 0;
3719 spin_unlock_irqrestore(&rxq->lock, flags);
3720}
3721
3722/* Convert linear signal-to-noise ratio into dB */
3723static u8 ratio2dB[100] = {
3724/* 0 1 2 3 4 5 6 7 8 9 */
3725 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3726 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3727 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3728 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3729 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3730 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3731 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3732 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3733 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3734 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3735};
3736
3737/* Calculates a relative dB value from a ratio of linear
3738 * (i.e. not dB) signal levels.
3739 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003740int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003741{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003742 /* 1000:1 or higher just report as 60 dB */
3743 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003744 return 60;
3745
Adrian Bunk221c80c2008-02-02 23:19:01 +02003746 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003747 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003748 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003749 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003750
3751 /* We shouldn't see this */
3752 if (sig_ratio < 1)
3753 return 0;
3754
3755 /* Use table for ratios 1:1 - 99:1 */
3756 return (int)ratio2dB[sig_ratio];
3757}
3758
3759#define PERFECT_RSSI (-20) /* dBm */
3760#define WORST_RSSI (-95) /* dBm */
3761#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3762
3763/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3764 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3765 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003766int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003767{
3768 int sig_qual;
3769 int degradation = PERFECT_RSSI - rssi_dbm;
3770
3771 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3772 * as indicator; formula is (signal dbm - noise dbm).
3773 * SNR at or above 40 is a great signal (100%).
3774 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3775 * Weakest usable signal is usually 10 - 15 dB SNR. */
3776 if (noise_dbm) {
3777 if (rssi_dbm - noise_dbm >= 40)
3778 return 100;
3779 else if (rssi_dbm < noise_dbm)
3780 return 0;
3781 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3782
3783 /* Else use just the signal level.
3784 * This formula is a least squares fit of data points collected and
3785 * compared with a reference system that had a percentage (%) display
3786 * for signal quality. */
3787 } else
3788 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3789 (15 * RSSI_RANGE + 62 * degradation)) /
3790 (RSSI_RANGE * RSSI_RANGE);
3791
3792 if (sig_qual > 100)
3793 sig_qual = 100;
3794 else if (sig_qual < 1)
3795 sig_qual = 0;
3796
3797 return sig_qual;
3798}
3799
3800/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003801 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003802 *
3803 * Uses the priv->rx_handlers callback function array to invoke
3804 * the appropriate handlers, including command responses,
3805 * frame-received notifications, and other notifications.
3806 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003807static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003808{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003809 struct iwl3945_rx_mem_buffer *rxb;
3810 struct iwl3945_rx_packet *pkt;
3811 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003812 u32 r, i;
3813 int reclaim;
3814 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003815 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003816 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003817
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003818 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3819 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003820 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003821 i = rxq->read;
3822
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003823 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3824 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003825 /* Rx interrupt, but nothing sent from uCode */
3826 if (i == r)
3827 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3828
3829 while (i != r) {
3830 rxb = rxq->queue[i];
3831
Ben Cahill9fbab512007-11-29 11:09:47 +08003832 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003833 * then a bug has been introduced in the queue refilling
3834 * routines -- catch it here */
3835 BUG_ON(rxb == NULL);
3836
3837 rxq->queue[i] = NULL;
3838
3839 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
3840 IWL_RX_BUF_SIZE,
3841 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003842 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003843
3844 /* Reclaim a command buffer only if this packet is a response
3845 * to a (driver-originated) command.
3846 * If the packet (e.g. Rx frame) originated from uCode,
3847 * there is no command buffer to reclaim.
3848 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3849 * but apparently a few don't get set; catch them here. */
3850 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3851 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3852 (pkt->hdr.cmd != REPLY_TX);
3853
3854 /* Based on type of command response or notification,
3855 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003856 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003857 if (priv->rx_handlers[pkt->hdr.cmd]) {
3858 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3859 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3860 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3861 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3862 } else {
3863 /* No handling needed */
3864 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3865 "r %d i %d No handler needed for %s, 0x%02x\n",
3866 r, i, get_cmd_string(pkt->hdr.cmd),
3867 pkt->hdr.cmd);
3868 }
3869
3870 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003871 /* Invoke any callbacks, transfer the skb to caller, and
3872 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003873 * as we reclaim the driver command queue */
3874 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003875 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003876 else
3877 IWL_WARNING("Claim null rxb?\n");
3878 }
3879
3880 /* For now we just don't re-use anything. We can tweak this
3881 * later to try and re-use notification packets and SKBs that
3882 * fail to Rx correctly */
3883 if (rxb->skb != NULL) {
3884 priv->alloc_rxb_skb--;
3885 dev_kfree_skb_any(rxb->skb);
3886 rxb->skb = NULL;
3887 }
3888
3889 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
3890 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3891 spin_lock_irqsave(&rxq->lock, flags);
3892 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3893 spin_unlock_irqrestore(&rxq->lock, flags);
3894 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003895 /* If there are a lot of unused frames,
3896 * restock the Rx queue so ucode won't assert. */
3897 if (fill_rx) {
3898 count++;
3899 if (count >= 8) {
3900 priv->rxq.read = i;
3901 __iwl3945_rx_replenish(priv);
3902 count = 0;
3903 }
3904 }
Zhu Yib481de92007-09-25 17:54:57 -07003905 }
3906
3907 /* Backtrack one entry */
3908 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003909 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003910}
3911
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003912/**
3913 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3914 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003915static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
3916 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003917{
3918 u32 reg = 0;
3919 int rc = 0;
3920 int txq_id = txq->q.id;
3921
3922 if (txq->need_update == 0)
3923 return rc;
3924
3925 /* if we're trying to save power */
3926 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3927 /* wake up nic if it's powered down ...
3928 * uCode will wake up, and interrupt us again, so next
3929 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003930 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003931
3932 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3933 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003934 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003935 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3936 return rc;
3937 }
3938
3939 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003940 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003941 if (rc)
3942 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003943 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003944 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003945 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003946
3947 /* else not in power-save mode, uCode will never sleep when we're
3948 * trying to tx (during RFKILL, we're not trying to tx). */
3949 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003950 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003951 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003952
3953 txq->need_update = 0;
3954
3955 return rc;
3956}
3957
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003958#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003959static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003960{
3961 IWL_DEBUG_RADIO("RX CONFIG:\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003962 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003963 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3964 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3965 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3966 le32_to_cpu(rxon->filter_flags));
3967 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3968 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3969 rxon->ofdm_basic_rates);
3970 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003971 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3972 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003973 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3974}
3975#endif
3976
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003977static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003978{
3979 IWL_DEBUG_ISR("Enabling interrupts\n");
3980 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003981 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003982}
3983
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003984
3985/* call this function to flush any scheduled tasklet */
3986static inline void iwl_synchronize_irq(struct iwl3945_priv *priv)
3987{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003988 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003989 synchronize_irq(priv->pci_dev->irq);
3990 tasklet_kill(&priv->irq_tasklet);
3991}
3992
3993
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003994static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003995{
3996 clear_bit(STATUS_INT_ENABLED, &priv->status);
3997
3998 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003999 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004000
4001 /* acknowledge/clear/reset any interrupts still pending
4002 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004003 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4004 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004005 IWL_DEBUG_ISR("Disabled interrupts\n");
4006}
4007
4008static const char *desc_lookup(int i)
4009{
4010 switch (i) {
4011 case 1:
4012 return "FAIL";
4013 case 2:
4014 return "BAD_PARAM";
4015 case 3:
4016 return "BAD_CHECKSUM";
4017 case 4:
4018 return "NMI_INTERRUPT";
4019 case 5:
4020 return "SYSASSERT";
4021 case 6:
4022 return "FATAL_ERROR";
4023 }
4024
4025 return "UNKNOWN";
4026}
4027
4028#define ERROR_START_OFFSET (1 * sizeof(u32))
4029#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4030
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004031static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004032{
4033 u32 i;
4034 u32 desc, time, count, base, data1;
4035 u32 blink1, blink2, ilink1, ilink2;
4036 int rc;
4037
4038 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4039
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004040 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004041 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4042 return;
4043 }
4044
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004045 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004046 if (rc) {
4047 IWL_WARNING("Can not read from adapter at this time.\n");
4048 return;
4049 }
4050
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004051 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004052
4053 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4054 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004055 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004056 }
4057
4058 IWL_ERROR("Desc Time asrtPC blink2 "
4059 "ilink1 nmiPC Line\n");
4060 for (i = ERROR_START_OFFSET;
4061 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4062 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004063 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004064 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004065 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004066 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004067 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004068 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004069 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004070 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004071 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004072 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004073 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004074 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004075 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004076
4077 IWL_ERROR
4078 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4079 desc_lookup(desc), desc, time, blink1, blink2,
4080 ilink1, ilink2, data1);
4081 }
4082
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004083 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004084
4085}
4086
Ben Cahillf58177b2007-11-29 11:09:43 +08004087#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004088
4089/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004090 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004091 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004092 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004093 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004094static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004095 u32 num_events, u32 mode)
4096{
4097 u32 i;
4098 u32 base; /* SRAM byte address of event log header */
4099 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4100 u32 ptr; /* SRAM byte address of log data */
4101 u32 ev, time, data; /* event log data */
4102
4103 if (num_events == 0)
4104 return;
4105
4106 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4107
4108 if (mode == 0)
4109 event_size = 2 * sizeof(u32);
4110 else
4111 event_size = 3 * sizeof(u32);
4112
4113 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4114
4115 /* "time" is actually "data" for mode 0 (no timestamp).
4116 * place event id # at far right for easier visual parsing. */
4117 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004118 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004119 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004120 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004121 ptr += sizeof(u32);
4122 if (mode == 0)
4123 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4124 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004125 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004126 ptr += sizeof(u32);
4127 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4128 }
4129 }
4130}
4131
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004132static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004133{
4134 int rc;
4135 u32 base; /* SRAM byte address of event log header */
4136 u32 capacity; /* event log capacity in # entries */
4137 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4138 u32 num_wraps; /* # times uCode wrapped to top of log */
4139 u32 next_entry; /* index of next entry to be written by uCode */
4140 u32 size; /* # entries that we'll print */
4141
4142 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004143 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004144 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4145 return;
4146 }
4147
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004148 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004149 if (rc) {
4150 IWL_WARNING("Can not read from adapter at this time.\n");
4151 return;
4152 }
4153
4154 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004155 capacity = iwl3945_read_targ_mem(priv, base);
4156 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4157 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4158 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004159
4160 size = num_wraps ? capacity : next_entry;
4161
4162 /* bail out if nothing in log */
4163 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004164 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004165 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004166 return;
4167 }
4168
Zhu Yi583fab32007-09-27 11:27:30 +08004169 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004170 size, num_wraps);
4171
4172 /* if uCode has wrapped back to top of log, start at the oldest entry,
4173 * i.e the next one that uCode would fill. */
4174 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004175 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004176 capacity - next_entry, mode);
4177
4178 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004179 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004180
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004181 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004182}
4183
4184/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004185 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004186 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004187static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004188{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004189 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004190 set_bit(STATUS_FW_ERROR, &priv->status);
4191
4192 /* Cancel currently queued command. */
4193 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4194
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004195#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004196 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4197 iwl3945_dump_nic_error_log(priv);
4198 iwl3945_dump_nic_event_log(priv);
4199 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004200 }
4201#endif
4202
4203 wake_up_interruptible(&priv->wait_command_queue);
4204
4205 /* Keep the restart process from trying to send host
4206 * commands by clearing the INIT status bit */
4207 clear_bit(STATUS_READY, &priv->status);
4208
4209 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4210 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4211 "Restarting adapter due to uCode error.\n");
4212
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004213 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004214 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4215 sizeof(priv->recovery_rxon));
4216 priv->error_recovering = 1;
4217 }
4218 queue_work(priv->workqueue, &priv->restart);
4219 }
4220}
4221
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004222static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004223{
4224 unsigned long flags;
4225
4226 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4227 sizeof(priv->staging_rxon));
4228 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004229 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004230
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004231 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004232
4233 spin_lock_irqsave(&priv->lock, flags);
4234 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4235 priv->error_recovering = 0;
4236 spin_unlock_irqrestore(&priv->lock, flags);
4237}
4238
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004239static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004240{
4241 u32 inta, handled = 0;
4242 u32 inta_fh;
4243 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004244#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004245 u32 inta_mask;
4246#endif
4247
4248 spin_lock_irqsave(&priv->lock, flags);
4249
4250 /* Ack/clear/reset pending uCode interrupts.
4251 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4252 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004253 inta = iwl3945_read32(priv, CSR_INT);
4254 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004255
4256 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4257 * Any new interrupts that happen after this, either while we're
4258 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004259 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4260 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004261
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004262#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004263 if (iwl3945_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004264 /* just for debug */
4265 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004266 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4267 inta, inta_mask, inta_fh);
4268 }
4269#endif
4270
4271 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4272 * atomic, make sure that inta covers all the interrupts that
4273 * we've discovered, even if FH interrupt came in just after
4274 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004275 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004276 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004277 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004278 inta |= CSR_INT_BIT_FH_TX;
4279
4280 /* Now service all interrupt bits discovered above. */
4281 if (inta & CSR_INT_BIT_HW_ERR) {
4282 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4283
4284 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004285 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004286
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004287 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004288
4289 handled |= CSR_INT_BIT_HW_ERR;
4290
4291 spin_unlock_irqrestore(&priv->lock, flags);
4292
4293 return;
4294 }
4295
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004296#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004297 if (iwl3945_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004298 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004299 if (inta & CSR_INT_BIT_SCD)
4300 IWL_DEBUG_ISR("Scheduler finished to transmit "
4301 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004302
4303 /* Alive notification via Rx interrupt will do the real work */
4304 if (inta & CSR_INT_BIT_ALIVE)
4305 IWL_DEBUG_ISR("Alive interrupt\n");
4306 }
4307#endif
4308 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004309 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004310
Zhu Yib481de92007-09-25 17:54:57 -07004311 /* Error detected by uCode */
4312 if (inta & CSR_INT_BIT_SW_ERR) {
4313 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4314 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004315 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004316 handled |= CSR_INT_BIT_SW_ERR;
4317 }
4318
4319 /* uCode wakes up after power-down sleep */
4320 if (inta & CSR_INT_BIT_WAKEUP) {
4321 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004322 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4323 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4324 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4325 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4326 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4327 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4328 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004329
4330 handled |= CSR_INT_BIT_WAKEUP;
4331 }
4332
4333 /* All uCode command responses, including Tx command responses,
4334 * Rx "responses" (frame-received notification), and other
4335 * notifications from uCode come through here*/
4336 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004337 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004338 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4339 }
4340
4341 if (inta & CSR_INT_BIT_FH_TX) {
4342 IWL_DEBUG_ISR("Tx interrupt\n");
4343
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004344 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4345 if (!iwl3945_grab_nic_access(priv)) {
Tomas Winklerbddadf82008-12-19 10:37:01 +08004346 iwl3945_write_direct32(priv, FH39_TCSR_CREDIT
4347 (FH39_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004348 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004349 }
4350 handled |= CSR_INT_BIT_FH_TX;
4351 }
4352
4353 if (inta & ~handled)
4354 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4355
4356 if (inta & ~CSR_INI_SET_MASK) {
4357 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4358 inta & ~CSR_INI_SET_MASK);
4359 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4360 }
4361
4362 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004363 /* only Re-enable if disabled by irq */
4364 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4365 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004366
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004367#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004368 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4369 inta = iwl3945_read32(priv, CSR_INT);
4370 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4371 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004372 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4373 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4374 }
4375#endif
4376 spin_unlock_irqrestore(&priv->lock, flags);
4377}
4378
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004379static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004380{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004381 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004382 u32 inta, inta_mask;
4383 u32 inta_fh;
4384 if (!priv)
4385 return IRQ_NONE;
4386
4387 spin_lock(&priv->lock);
4388
4389 /* Disable (but don't clear!) interrupts here to avoid
4390 * back-to-back ISRs and sporadic interrupts from our NIC.
4391 * If we have something to service, the tasklet will re-enable ints.
4392 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004393 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4394 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004395
4396 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004397 inta = iwl3945_read32(priv, CSR_INT);
4398 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004399
4400 /* Ignore interrupt if there's nothing in NIC to service.
4401 * This may be due to IRQ shared with another device,
4402 * or due to sporadic interrupts thrown from our NIC. */
4403 if (!inta && !inta_fh) {
4404 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4405 goto none;
4406 }
4407
4408 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4409 /* Hardware disappeared */
Zhu Yi99df6302008-12-02 12:13:58 -08004410 IWL_WARNING("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004411 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004412 }
4413
4414 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4415 inta, inta_mask, inta_fh);
4416
Joonwoo Park25c03d82008-01-23 10:15:20 -08004417 inta &= ~CSR_INT_BIT_SCD;
4418
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004419 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004420 if (likely(inta || inta_fh))
4421 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004422unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004423 spin_unlock(&priv->lock);
4424
4425 return IRQ_HANDLED;
4426
4427 none:
4428 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004429 /* only Re-enable if disabled by irq */
4430 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4431 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004432 spin_unlock(&priv->lock);
4433 return IRQ_NONE;
4434}
4435
4436/************************** EEPROM BANDS ****************************
4437 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004438 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004439 * EEPROM contents to the specific channel number supported for each
4440 * band.
4441 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004442 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004443 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4444 * The specific geography and calibration information for that channel
4445 * is contained in the eeprom map itself.
4446 *
4447 * During init, we copy the eeprom information and channel map
4448 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4449 *
4450 * channel_map_24/52 provides the index in the channel_info array for a
4451 * given channel. We have to have two separate maps as there is channel
4452 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4453 * band_2
4454 *
4455 * A value of 0xff stored in the channel_map indicates that the channel
4456 * is not supported by the hardware at all.
4457 *
4458 * A value of 0xfe in the channel_map indicates that the channel is not
4459 * valid for Tx with the current hardware. This means that
4460 * while the system can tune and receive on a given channel, it may not
4461 * be able to associate or transmit any frames on that
4462 * channel. There is no corresponding channel information for that
4463 * entry.
4464 *
4465 *********************************************************************/
4466
4467/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004468static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004469 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4470};
4471
4472/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004473static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004474 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4475};
4476
Ben Cahill9fbab512007-11-29 11:09:47 +08004477static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004478 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4479};
4480
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004481static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004482 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4483};
4484
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004485static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004486 145, 149, 153, 157, 161, 165
4487};
4488
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004489static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004490 int *eeprom_ch_count,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004491 const struct iwl3945_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004492 **eeprom_ch_info,
4493 const u8 **eeprom_ch_index)
4494{
4495 switch (band) {
4496 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004497 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004498 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004499 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004500 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004501 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004502 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004503 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004504 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004505 break;
4506 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004507 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004508 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004509 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004510 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004511 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004512 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004513 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004514 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004515 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004516 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004517 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004518 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004519 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004520 break;
4521 default:
4522 BUG();
4523 return;
4524 }
4525}
4526
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004527/**
4528 * iwl3945_get_channel_info - Find driver's private channel info
4529 *
4530 * Based on band and channel number.
4531 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004532const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004533 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004534{
4535 int i;
4536
Johannes Berg8318d782008-01-24 19:38:38 +01004537 switch (band) {
4538 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004539 for (i = 14; i < priv->channel_count; i++) {
4540 if (priv->channel_info[i].channel == channel)
4541 return &priv->channel_info[i];
4542 }
4543 break;
4544
Johannes Berg8318d782008-01-24 19:38:38 +01004545 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004546 if (channel >= 1 && channel <= 14)
4547 return &priv->channel_info[channel - 1];
4548 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004549 case IEEE80211_NUM_BANDS:
4550 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004551 }
4552
4553 return NULL;
4554}
4555
4556#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4557 ? # x " " : "")
4558
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004559/**
4560 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4561 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004562static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004563{
4564 int eeprom_ch_count = 0;
4565 const u8 *eeprom_ch_index = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004566 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004567 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004568 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004569
4570 if (priv->channel_count) {
4571 IWL_DEBUG_INFO("Channel map already initialized.\n");
4572 return 0;
4573 }
4574
4575 if (priv->eeprom.version < 0x2f) {
4576 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
4577 priv->eeprom.version);
4578 return -EINVAL;
4579 }
4580
4581 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4582
4583 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004584 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4585 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4586 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4587 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4588 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004589
4590 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4591
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004592 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004593 priv->channel_count, GFP_KERNEL);
4594 if (!priv->channel_info) {
4595 IWL_ERROR("Could not allocate channel_info\n");
4596 priv->channel_count = 0;
4597 return -ENOMEM;
4598 }
4599
4600 ch_info = priv->channel_info;
4601
4602 /* Loop through the 5 EEPROM bands adding them in order to the
4603 * channel map we maintain (that contains additional information than
4604 * what just in the EEPROM) */
4605 for (band = 1; band <= 5; band++) {
4606
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004607 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004608 &eeprom_ch_info, &eeprom_ch_index);
4609
4610 /* Loop through each band adding each of the channels */
4611 for (ch = 0; ch < eeprom_ch_count; ch++) {
4612 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004613 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4614 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004615
4616 /* permanently store EEPROM's channel regulatory flags
4617 * and max power in channel info database. */
4618 ch_info->eeprom = eeprom_ch_info[ch];
4619
4620 /* Copy the run-time flags so they are there even on
4621 * invalid channels */
4622 ch_info->flags = eeprom_ch_info[ch].flags;
4623
4624 if (!(is_channel_valid(ch_info))) {
4625 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4626 "No traffic\n",
4627 ch_info->channel,
4628 ch_info->flags,
4629 is_channel_a_band(ch_info) ?
4630 "5.2" : "2.4");
4631 ch_info++;
4632 continue;
4633 }
4634
4635 /* Initialize regulatory-based run-time data */
4636 ch_info->max_power_avg = ch_info->curr_txpow =
4637 eeprom_ch_info[ch].max_power_avg;
4638 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4639 ch_info->min_power = 0;
4640
Guy Cohenfe7c4042008-04-21 15:41:56 -07004641 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004642 " %ddBm): Ad-Hoc %ssupported\n",
4643 ch_info->channel,
4644 is_channel_a_band(ch_info) ?
4645 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004646 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004647 CHECK_AND_PRINT(IBSS),
4648 CHECK_AND_PRINT(ACTIVE),
4649 CHECK_AND_PRINT(RADAR),
4650 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004651 CHECK_AND_PRINT(DFS),
4652 eeprom_ch_info[ch].flags,
4653 eeprom_ch_info[ch].max_power_avg,
4654 ((eeprom_ch_info[ch].
4655 flags & EEPROM_CHANNEL_IBSS)
4656 && !(eeprom_ch_info[ch].
4657 flags & EEPROM_CHANNEL_RADAR))
4658 ? "" : "not ");
4659
4660 /* Set the user_txpower_limit to the highest power
4661 * supported by any channel */
4662 if (eeprom_ch_info[ch].max_power_avg >
4663 priv->user_txpower_limit)
4664 priv->user_txpower_limit =
4665 eeprom_ch_info[ch].max_power_avg;
4666
4667 ch_info++;
4668 }
4669 }
4670
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004671 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004672 if (iwl3945_txpower_set_from_eeprom(priv))
4673 return -EIO;
4674
4675 return 0;
4676}
4677
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004678/*
4679 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4680 */
4681static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
4682{
4683 kfree(priv->channel_info);
4684 priv->channel_count = 0;
4685}
4686
Zhu Yib481de92007-09-25 17:54:57 -07004687/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4688 * sending probe req. This should be set long enough to hear probe responses
4689 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004690#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4691#define IWL_ACTIVE_DWELL_TIME_52 (20)
4692
4693#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4694#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004695
4696/* For faster active scanning, scan will move to the next channel if fewer than
4697 * PLCP_QUIET_THRESH packets are heard on this channel within
4698 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4699 * time if it's a quiet channel (nothing responded to our probe, and there's
4700 * no other traffic).
4701 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4702#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004703#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004704
4705/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4706 * Must be set longer than active dwell time.
4707 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4708#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4709#define IWL_PASSIVE_DWELL_TIME_52 (10)
4710#define IWL_PASSIVE_DWELL_BASE (100)
4711#define IWL_CHANNEL_TUNE_TIME 5
4712
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004713#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004714
Johannes Berg8318d782008-01-24 19:38:38 +01004715static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004716 enum ieee80211_band band,
4717 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004718{
Johannes Berg8318d782008-01-24 19:38:38 +01004719 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004720 return IWL_ACTIVE_DWELL_TIME_52 +
4721 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004722 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004723 return IWL_ACTIVE_DWELL_TIME_24 +
4724 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004725}
4726
Johannes Berg8318d782008-01-24 19:38:38 +01004727static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
4728 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004729{
Johannes Berg8318d782008-01-24 19:38:38 +01004730 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004731 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4732 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4733
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004734 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004735 /* If we're associated, we clamp the maximum passive
4736 * dwell time to be 98% of the beacon interval (minus
4737 * 2 * channel tune time) */
4738 passive = priv->beacon_int;
4739 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4740 passive = IWL_PASSIVE_DWELL_BASE;
4741 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4742 }
4743
Zhu Yib481de92007-09-25 17:54:57 -07004744 return passive;
4745}
4746
Johannes Berg8318d782008-01-24 19:38:38 +01004747static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
4748 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004749 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004750 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004751{
4752 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004753 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004754 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004755 u16 passive_dwell = 0;
4756 u16 active_dwell = 0;
4757 int added, i;
4758
Johannes Berg8318d782008-01-24 19:38:38 +01004759 sband = iwl3945_get_band(priv, band);
4760 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004761 return 0;
4762
Johannes Berg8318d782008-01-24 19:38:38 +01004763 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004764
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004765 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004766 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004767
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004768 if (passive_dwell <= active_dwell)
4769 passive_dwell = active_dwell + 1;
4770
Johannes Berg8318d782008-01-24 19:38:38 +01004771 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004772 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4773 continue;
4774
Johannes Berg8318d782008-01-24 19:38:38 +01004775 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004776
Johannes Berg8318d782008-01-24 19:38:38 +01004777 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004778 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004779 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004780 scan_ch->channel);
4781 continue;
4782 }
4783
Zhu Yib481de92007-09-25 17:54:57 -07004784 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4785 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004786 /* If passive , set up for auto-switch
4787 * and use long active_dwell time.
4788 */
4789 if (!is_active || is_channel_passive(ch_info) ||
4790 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4791 scan_ch->type = 0; /* passive */
4792 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4793 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4794 } else {
4795 scan_ch->type = 1; /* active */
4796 }
4797
4798 /* Set direct probe bits. These may be used both for active
4799 * scan channels (probes gets sent right away),
4800 * or for passive channels (probes get se sent only after
4801 * hearing clear Rx packet).*/
4802 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4803 if (n_probes)
4804 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4805 } else {
4806 /* uCode v1 does not allow setting direct probe bits on
4807 * passive channel. */
4808 if ((scan_ch->type & 1) && n_probes)
4809 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4810 }
Zhu Yib481de92007-09-25 17:54:57 -07004811
Ben Cahill9fbab512007-11-29 11:09:47 +08004812 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004813 scan_ch->tpc.dsp_atten = 110;
4814 /* scan_pwr_info->tpc.dsp_atten; */
4815
4816 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004817 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004818 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4819 else {
4820 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4821 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004822 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004823 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004824 */
4825 }
4826
4827 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4828 scan_ch->channel,
4829 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4830 (scan_ch->type & 1) ?
4831 active_dwell : passive_dwell);
4832
4833 scan_ch++;
4834 added++;
4835 }
4836
4837 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4838 return added;
4839}
4840
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004841static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004842 struct ieee80211_rate *rates)
4843{
4844 int i;
4845
4846 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004847 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4848 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4849 rates[i].hw_value_short = i;
4850 rates[i].flags = 0;
4851 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004852 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004853 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004854 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004855 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004856 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004857 }
Zhu Yib481de92007-09-25 17:54:57 -07004858 }
4859}
4860
4861/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004862 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004863 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004864static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004865{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004866 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004867 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004868 struct ieee80211_channel *channels;
4869 struct ieee80211_channel *geo_ch;
4870 struct ieee80211_rate *rates;
4871 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004872
Johannes Berg8318d782008-01-24 19:38:38 +01004873 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4874 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004875 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4876 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4877 return 0;
4878 }
4879
Zhu Yib481de92007-09-25 17:54:57 -07004880 channels = kzalloc(sizeof(struct ieee80211_channel) *
4881 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004882 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004883 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004884
Tomas Winkler8211ef72008-03-02 01:36:04 +02004885 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004886 GFP_KERNEL);
4887 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004888 kfree(channels);
4889 return -ENOMEM;
4890 }
4891
Zhu Yib481de92007-09-25 17:54:57 -07004892 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004893 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4894 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4895 /* just OFDM */
4896 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4897 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004898
Tomas Winkler8211ef72008-03-02 01:36:04 +02004899 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4900 sband->channels = channels;
4901 /* OFDM & CCK */
4902 sband->bitrates = rates;
4903 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004904
4905 priv->ieee_channels = channels;
4906 priv->ieee_rates = rates;
4907
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004908 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004909
Tomas Winkler8211ef72008-03-02 01:36:04 +02004910 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004911 ch = &priv->channel_info[i];
4912
Tomas Winkler8211ef72008-03-02 01:36:04 +02004913 /* FIXME: might be removed if scan is OK*/
4914 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004915 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004916
4917 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004918 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004919 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004920 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004921
Tomas Winkler8211ef72008-03-02 01:36:04 +02004922 geo_ch = &sband->channels[sband->n_channels++];
4923
4924 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004925 geo_ch->max_power = ch->max_power_avg;
4926 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004927 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004928
4929 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004930 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4931 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004932
Johannes Berg8318d782008-01-24 19:38:38 +01004933 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4934 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004935
4936 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004937 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004938
4939 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4940 priv->max_channel_txpower_limit =
4941 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004942 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004943 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004944 }
4945
4946 /* Save flags for reg domain usage */
4947 geo_ch->orig_flags = geo_ch->flags;
4948
4949 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4950 ch->channel, geo_ch->center_freq,
4951 is_channel_a_band(ch) ? "5.2" : "2.4",
4952 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4953 "restricted" : "valid",
4954 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004955 }
4956
Tomas Winkler82b9a122008-03-04 18:09:30 -08004957 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4958 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004959 printk(KERN_INFO DRV_NAME
4960 ": Incorrectly detected BG card as ABG. Please send "
4961 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4962 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004963 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004964 }
4965
4966 printk(KERN_INFO DRV_NAME
4967 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004968 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4969 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004970
John W. Linvillee0e0a672008-03-25 15:58:40 -04004971 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4972 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4973 &priv->bands[IEEE80211_BAND_2GHZ];
4974 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4975 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4976 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004977
Zhu Yib481de92007-09-25 17:54:57 -07004978 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4979
4980 return 0;
4981}
4982
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004983/*
4984 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4985 */
4986static void iwl3945_free_geos(struct iwl3945_priv *priv)
4987{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004988 kfree(priv->ieee_channels);
4989 kfree(priv->ieee_rates);
4990 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4991}
4992
Zhu Yib481de92007-09-25 17:54:57 -07004993/******************************************************************************
4994 *
4995 * uCode download functions
4996 *
4997 ******************************************************************************/
4998
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004999static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005000{
Tomas Winkler98c92212008-01-14 17:46:20 -08005001 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
5002 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
5003 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
5004 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5005 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5006 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005007}
5008
5009/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005010 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005011 * looking at all data.
5012 */
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005013static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005014{
5015 u32 val;
5016 u32 save_len = len;
5017 int rc = 0;
5018 u32 errcnt;
5019
5020 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5021
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005022 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005023 if (rc)
5024 return rc;
5025
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005026 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005027
5028 errcnt = 0;
5029 for (; len > 0; len -= sizeof(u32), image++) {
5030 /* read data comes through single port, auto-incr addr */
5031 /* NOTE: Use the debugless read so we don't flood kernel log
5032 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005033 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005034 if (val != le32_to_cpu(*image)) {
5035 IWL_ERROR("uCode INST section is invalid at "
5036 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5037 save_len - len, val, le32_to_cpu(*image));
5038 rc = -EIO;
5039 errcnt++;
5040 if (errcnt >= 20)
5041 break;
5042 }
5043 }
5044
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005045 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005046
5047 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005048 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005049
5050 return rc;
5051}
5052
5053
5054/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005055 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005056 * using sample data 100 bytes apart. If these sample points are good,
5057 * it's a pretty good bet that everything between them is good, too.
5058 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005059static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005060{
5061 u32 val;
5062 int rc = 0;
5063 u32 errcnt = 0;
5064 u32 i;
5065
5066 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5067
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005068 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005069 if (rc)
5070 return rc;
5071
5072 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5073 /* read data comes through single port, auto-incr addr */
5074 /* NOTE: Use the debugless read so we don't flood kernel log
5075 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005076 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005077 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005078 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005079 if (val != le32_to_cpu(*image)) {
5080#if 0 /* Enable this if you want to see details */
5081 IWL_ERROR("uCode INST section is invalid at "
5082 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5083 i, val, *image);
5084#endif
5085 rc = -EIO;
5086 errcnt++;
5087 if (errcnt >= 3)
5088 break;
5089 }
5090 }
5091
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005092 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005093
5094 return rc;
5095}
5096
5097
5098/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005099 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005100 * and verify its contents
5101 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005102static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005103{
5104 __le32 *image;
5105 u32 len;
5106 int rc = 0;
5107
5108 /* Try bootstrap */
5109 image = (__le32 *)priv->ucode_boot.v_addr;
5110 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005111 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005112 if (rc == 0) {
5113 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5114 return 0;
5115 }
5116
5117 /* Try initialize */
5118 image = (__le32 *)priv->ucode_init.v_addr;
5119 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005120 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005121 if (rc == 0) {
5122 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5123 return 0;
5124 }
5125
5126 /* Try runtime/protocol */
5127 image = (__le32 *)priv->ucode_code.v_addr;
5128 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005129 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005130 if (rc == 0) {
5131 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5132 return 0;
5133 }
5134
5135 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5136
Ben Cahill9fbab512007-11-29 11:09:47 +08005137 /* Since nothing seems to match, show first several data entries in
5138 * instruction SRAM, so maybe visual inspection will give a clue.
5139 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005140 image = (__le32 *)priv->ucode_boot.v_addr;
5141 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005142 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005143
5144 return rc;
5145}
5146
5147
5148/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005149static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005150{
5151 __le32 *image = priv->ucode_boot.v_addr;
5152 u32 len = priv->ucode_boot.len;
5153 u32 reg;
5154 u32 val;
5155
5156 IWL_DEBUG_INFO("Begin verify bsm\n");
5157
5158 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005159 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005160 for (reg = BSM_SRAM_LOWER_BOUND;
5161 reg < BSM_SRAM_LOWER_BOUND + len;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005162 reg += sizeof(u32), image++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005163 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005164 if (val != le32_to_cpu(*image)) {
5165 IWL_ERROR("BSM uCode verification failed at "
5166 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5167 BSM_SRAM_LOWER_BOUND,
5168 reg - BSM_SRAM_LOWER_BOUND, len,
5169 val, le32_to_cpu(*image));
5170 return -EIO;
5171 }
5172 }
5173
5174 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5175
5176 return 0;
5177}
5178
5179/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005180 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005181 *
5182 * BSM operation:
5183 *
5184 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5185 * in special SRAM that does not power down during RFKILL. When powering back
5186 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5187 * the bootstrap program into the on-board processor, and starts it.
5188 *
5189 * The bootstrap program loads (via DMA) instructions and data for a new
5190 * program from host DRAM locations indicated by the host driver in the
5191 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5192 * automatically.
5193 *
5194 * When initializing the NIC, the host driver points the BSM to the
5195 * "initialize" uCode image. This uCode sets up some internal data, then
5196 * notifies host via "initialize alive" that it is complete.
5197 *
5198 * The host then replaces the BSM_DRAM_* pointer values to point to the
5199 * normal runtime uCode instructions and a backup uCode data cache buffer
5200 * (filled initially with starting data values for the on-board processor),
5201 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5202 * which begins normal operation.
5203 *
5204 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5205 * the backup data cache in DRAM before SRAM is powered down.
5206 *
5207 * When powering back up, the BSM loads the bootstrap program. This reloads
5208 * the runtime uCode instructions and the backup data cache into SRAM,
5209 * and re-launches the runtime uCode from where it left off.
5210 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005211static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005212{
5213 __le32 *image = priv->ucode_boot.v_addr;
5214 u32 len = priv->ucode_boot.len;
5215 dma_addr_t pinst;
5216 dma_addr_t pdata;
5217 u32 inst_len;
5218 u32 data_len;
5219 int rc;
5220 int i;
5221 u32 done;
5222 u32 reg_offset;
5223
5224 IWL_DEBUG_INFO("Begin load bsm\n");
5225
5226 /* make sure bootstrap program is no larger than BSM's SRAM size */
5227 if (len > IWL_MAX_BSM_SIZE)
5228 return -EINVAL;
5229
5230 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005231 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005232 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005233 * after the "initialize" uCode has run, to point to
5234 * runtime/protocol instructions and backup data cache. */
5235 pinst = priv->ucode_init.p_addr;
5236 pdata = priv->ucode_init_data.p_addr;
5237 inst_len = priv->ucode_init.len;
5238 data_len = priv->ucode_init_data.len;
5239
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005240 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005241 if (rc)
5242 return rc;
5243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005244 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5245 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5246 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5247 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005248
5249 /* Fill BSM memory with bootstrap instructions */
5250 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5251 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5252 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005253 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005254 le32_to_cpu(*image));
5255
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005256 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005257 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005258 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005259 return rc;
5260 }
5261
5262 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5264 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005265 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005266 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005267
5268 /* Load bootstrap code into instruction SRAM now,
5269 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005270 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005271 BSM_WR_CTRL_REG_BIT_START);
5272
5273 /* Wait for load of bootstrap uCode to finish */
5274 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005275 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005276 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5277 break;
5278 udelay(10);
5279 }
5280 if (i < 100)
5281 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5282 else {
5283 IWL_ERROR("BSM write did not complete!\n");
5284 return -EIO;
5285 }
5286
5287 /* Enable future boot loads whenever power management unit triggers it
5288 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005289 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005290 BSM_WR_CTRL_REG_BIT_START_EN);
5291
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005292 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005293
5294 return 0;
5295}
5296
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005297static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005298{
5299 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005300 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005301}
5302
5303/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005304 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005305 *
5306 * Copy into buffers for card to fetch via bus-mastering
5307 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005308static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005309{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005310 struct iwl3945_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005311 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07005312 const struct firmware *ucode_raw;
5313 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005314 const char *name_pre = priv->cfg->fw_name_pre;
5315 const unsigned int api_max = priv->cfg->ucode_api_max;
5316 const unsigned int api_min = priv->cfg->ucode_api_min;
5317 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07005318 u8 *src;
5319 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005320 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07005321
5322 /* Ask kernel firmware_class module to get the boot firmware off disk.
5323 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005324 for (index = api_max; index >= api_min; index--) {
5325 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
5326 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
5327 if (ret < 0) {
5328 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5329 buf, ret);
5330 if (ret == -ENOENT)
5331 continue;
5332 else
5333 goto error;
5334 } else {
5335 if (index < api_max)
5336 IWL_ERROR("Loaded firmware %s, which is deprecated. Please use API v%u instead.\n",
5337 buf, api_max);
5338 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5339 buf, ucode_raw->size);
5340 break;
5341 }
Zhu Yib481de92007-09-25 17:54:57 -07005342 }
5343
Reinette Chatrea0987a82008-12-02 12:14:06 -08005344 if (ret < 0)
5345 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07005346
5347 /* Make sure that we got at least our header! */
5348 if (ucode_raw->size < sizeof(*ucode)) {
5349 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005350 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005351 goto err_release;
5352 }
5353
5354 /* Data from ucode file: header followed by uCode images */
5355 ucode = (void *)ucode_raw->data;
5356
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005357 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08005358 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07005359 inst_size = le32_to_cpu(ucode->inst_size);
5360 data_size = le32_to_cpu(ucode->data_size);
5361 init_size = le32_to_cpu(ucode->init_size);
5362 init_data_size = le32_to_cpu(ucode->init_data_size);
5363 boot_size = le32_to_cpu(ucode->boot_size);
5364
Reinette Chatrea0987a82008-12-02 12:14:06 -08005365 /* api_ver should match the api version forming part of the
5366 * firmware filename ... but we don't check for that and only rely
5367 * on the API version read from firware header from here on forward */
5368
5369 if (api_ver < api_min || api_ver > api_max) {
5370 IWL_ERROR("Driver unable to support your firmware API. "
5371 "Driver supports v%u, firmware is v%u.\n",
5372 api_max, api_ver);
5373 priv->ucode_ver = 0;
5374 ret = -EINVAL;
5375 goto err_release;
5376 }
5377 if (api_ver != api_max)
5378 IWL_ERROR("Firmware has old API version. Expected %u, "
5379 "got %u. New firmware can be obtained "
5380 "from http://www.intellinuxwireless.org.\n",
5381 api_max, api_ver);
5382
5383 printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n",
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005384 IWL_UCODE_MAJOR(priv->ucode_ver),
5385 IWL_UCODE_MINOR(priv->ucode_ver),
5386 IWL_UCODE_API(priv->ucode_ver),
5387 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08005388 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
5389 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005390 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5391 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5392 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5393 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5394 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005395
Reinette Chatrea0987a82008-12-02 12:14:06 -08005396
Zhu Yib481de92007-09-25 17:54:57 -07005397 /* Verify size of file vs. image size info in file's header */
5398 if (ucode_raw->size < sizeof(*ucode) +
5399 inst_size + data_size + init_size +
5400 init_data_size + boot_size) {
5401
5402 IWL_DEBUG_INFO("uCode file size %d too small\n",
5403 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005404 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005405 goto err_release;
5406 }
5407
5408 /* Verify that uCode images will fit in card's SRAM */
5409 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005410 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5411 inst_size);
5412 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005413 goto err_release;
5414 }
5415
5416 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005417 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5418 data_size);
5419 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005420 goto err_release;
5421 }
5422 if (init_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005423 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5424 init_size);
5425 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005426 goto err_release;
5427 }
5428 if (init_data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005429 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5430 init_data_size);
5431 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005432 goto err_release;
5433 }
5434 if (boot_size > IWL_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005435 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5436 boot_size);
5437 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005438 goto err_release;
5439 }
5440
5441 /* Allocate ucode buffers for card's bus-master loading ... */
5442
5443 /* Runtime instructions and 2 copies of data:
5444 * 1) unmodified from disk
5445 * 2) backup cache for save/restore during power-downs */
5446 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005447 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005448
5449 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005450 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005451
5452 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005453 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005454
5455 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005456 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005457 goto err_pci_alloc;
5458
Tomas Winkler90e759d2007-11-29 11:09:41 +08005459 /* Initialization instructions and data */
5460 if (init_size && init_data_size) {
5461 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005462 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005463
5464 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005465 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005466
5467 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5468 goto err_pci_alloc;
5469 }
5470
5471 /* Bootstrap (instructions only, no data) */
5472 if (boot_size) {
5473 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005474 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005475
5476 if (!priv->ucode_boot.v_addr)
5477 goto err_pci_alloc;
5478 }
5479
Zhu Yib481de92007-09-25 17:54:57 -07005480 /* Copy images into buffers for card's bus-master reads ... */
5481
5482 /* Runtime instructions (first block of data in file) */
5483 src = &ucode->data[0];
5484 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005485 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005486 memcpy(priv->ucode_code.v_addr, src, len);
5487 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5488 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5489
5490 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005491 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005492 src = &ucode->data[inst_size];
5493 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005494 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005495 memcpy(priv->ucode_data.v_addr, src, len);
5496 memcpy(priv->ucode_data_backup.v_addr, src, len);
5497
5498 /* Initialization instructions (3rd block) */
5499 if (init_size) {
5500 src = &ucode->data[inst_size + data_size];
5501 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005502 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5503 len);
Zhu Yib481de92007-09-25 17:54:57 -07005504 memcpy(priv->ucode_init.v_addr, src, len);
5505 }
5506
5507 /* Initialization data (4th block) */
5508 if (init_data_size) {
5509 src = &ucode->data[inst_size + data_size + init_size];
5510 len = priv->ucode_init_data.len;
5511 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5512 (int)len);
5513 memcpy(priv->ucode_init_data.v_addr, src, len);
5514 }
5515
5516 /* Bootstrap instructions (5th block) */
5517 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5518 len = priv->ucode_boot.len;
5519 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5520 (int)len);
5521 memcpy(priv->ucode_boot.v_addr, src, len);
5522
5523 /* We have our copies now, allow OS release its copies */
5524 release_firmware(ucode_raw);
5525 return 0;
5526
5527 err_pci_alloc:
5528 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005529 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005530 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005531
5532 err_release:
5533 release_firmware(ucode_raw);
5534
5535 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005536 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005537}
5538
5539
5540/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005541 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005542 *
5543 * Tell initialization uCode where to find runtime uCode.
5544 *
5545 * BSM registers initially contain pointers to initialization uCode.
5546 * We need to replace them to load runtime uCode inst and data,
5547 * and to save runtime data when powering down.
5548 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005549static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005550{
5551 dma_addr_t pinst;
5552 dma_addr_t pdata;
5553 int rc = 0;
5554 unsigned long flags;
5555
5556 /* bits 31:0 for 3945 */
5557 pinst = priv->ucode_code.p_addr;
5558 pdata = priv->ucode_data_backup.p_addr;
5559
5560 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005561 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005562 if (rc) {
5563 spin_unlock_irqrestore(&priv->lock, flags);
5564 return rc;
5565 }
5566
5567 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005568 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5569 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5570 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005571 priv->ucode_data.len);
5572
Tomas Winklera96a27f2008-10-23 23:48:56 -07005573 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005574 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005575 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005576 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5577
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005578 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005579
5580 spin_unlock_irqrestore(&priv->lock, flags);
5581
5582 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5583
5584 return rc;
5585}
5586
5587/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005588 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005589 *
5590 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5591 *
Zhu Yib481de92007-09-25 17:54:57 -07005592 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005593 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005594static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005595{
5596 /* Check alive response for "valid" sign from uCode */
5597 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5598 /* We had an error bringing up the hardware, so take it
5599 * all the way back down so we can try again */
5600 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5601 goto restart;
5602 }
5603
5604 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5605 * This is a paranoid check, because we would not have gotten the
5606 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005607 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005608 /* Runtime instruction load was bad;
5609 * take it all the way back down so we can try again */
5610 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5611 goto restart;
5612 }
5613
5614 /* Send pointers to protocol/runtime uCode image ... init code will
5615 * load and launch runtime uCode, which will send us another "Alive"
5616 * notification. */
5617 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005618 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005619 /* Runtime instruction load won't happen;
5620 * take it all the way back down so we can try again */
5621 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5622 goto restart;
5623 }
5624 return;
5625
5626 restart:
5627 queue_work(priv->workqueue, &priv->restart);
5628}
5629
5630
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005631/* temporary */
5632static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5633 struct sk_buff *skb);
5634
Zhu Yib481de92007-09-25 17:54:57 -07005635/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005636 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005637 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005638 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005639 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005640static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005641{
5642 int rc = 0;
5643 int thermal_spin = 0;
5644 u32 rfkill;
5645
5646 IWL_DEBUG_INFO("Runtime Alive received.\n");
5647
5648 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5649 /* We had an error bringing up the hardware, so take it
5650 * all the way back down so we can try again */
5651 IWL_DEBUG_INFO("Alive failed.\n");
5652 goto restart;
5653 }
5654
5655 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5656 * This is a paranoid check, because we would not have gotten the
5657 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005658 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005659 /* Runtime instruction load was bad;
5660 * take it all the way back down so we can try again */
5661 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5662 goto restart;
5663 }
5664
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005665 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005666
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005667 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005668 if (rc) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005669 IWL_WARNING("Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005670 return;
5671 }
5672
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005673 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005674 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005675 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005676
5677 if (rfkill & 0x1) {
5678 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005679 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005680 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005681 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005682 thermal_spin++;
5683 udelay(10);
5684 }
5685
5686 if (thermal_spin)
5687 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5688 thermal_spin * 10);
5689 } else
5690 set_bit(STATUS_RF_KILL_HW, &priv->status);
5691
Ben Cahill9fbab512007-11-29 11:09:47 +08005692 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005693 set_bit(STATUS_ALIVE, &priv->status);
5694
5695 /* Clear out the uCode error bit if it is set */
5696 clear_bit(STATUS_FW_ERROR, &priv->status);
5697
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005698 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005699 return;
5700
Johannes Berg36d68252008-05-15 12:55:26 +02005701 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005702
5703 priv->active_rate = priv->rates_mask;
5704 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5705
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005706 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005707
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005708 if (iwl3945_is_associated(priv)) {
5709 struct iwl3945_rxon_cmd *active_rxon =
5710 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005711
5712 memcpy(&priv->staging_rxon, &priv->active_rxon,
5713 sizeof(priv->staging_rxon));
5714 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5715 } else {
5716 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005717 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005718 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5719 }
5720
Ben Cahill9fbab512007-11-29 11:09:47 +08005721 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005722 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005723
5724 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005725 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005726
Zhu Yib481de92007-09-25 17:54:57 -07005727 iwl3945_reg_txpower_periodic(priv);
5728
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005729 iwl3945_led_register(priv);
5730
Zhu Yib481de92007-09-25 17:54:57 -07005731 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005732 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005733 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005734
5735 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005736 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005737
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005738 /* reassociate for ADHOC mode */
5739 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5740 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5741 priv->vif);
5742 if (beacon)
5743 iwl3945_mac_beacon_update(priv->hw, beacon);
5744 }
5745
Zhu Yib481de92007-09-25 17:54:57 -07005746 return;
5747
5748 restart:
5749 queue_work(priv->workqueue, &priv->restart);
5750}
5751
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005752static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005753
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005754static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005755{
5756 unsigned long flags;
5757 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5758 struct ieee80211_conf *conf = NULL;
5759
5760 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5761
5762 conf = ieee80211_get_hw_conf(priv->hw);
5763
5764 if (!exit_pending)
5765 set_bit(STATUS_EXIT_PENDING, &priv->status);
5766
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005767 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005768 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005769
5770 /* Unblock any waiting calls */
5771 wake_up_interruptible_all(&priv->wait_command_queue);
5772
Zhu Yib481de92007-09-25 17:54:57 -07005773 /* Wipe out the EXIT_PENDING status bit if we are not actually
5774 * exiting the module */
5775 if (!exit_pending)
5776 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5777
5778 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005779 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005780
5781 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005782 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005783 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005784 spin_unlock_irqrestore(&priv->lock, flags);
5785 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005786
5787 if (priv->mac80211_registered)
5788 ieee80211_stop_queues(priv->hw);
5789
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005790 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005791 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005792 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005793 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5794 STATUS_RF_KILL_HW |
5795 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5796 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005797 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5798 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005799 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005800 STATUS_IN_SUSPEND |
5801 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5802 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005803 goto exit;
5804 }
5805
5806 /* ...otherwise clear out all the status bits but the RF Kill and
5807 * SUSPEND bits and continue taking the NIC down. */
5808 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5809 STATUS_RF_KILL_HW |
5810 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5811 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005812 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5813 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005814 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5815 STATUS_IN_SUSPEND |
5816 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005817 STATUS_FW_ERROR |
5818 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5819 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005820
5821 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005822 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005823 spin_unlock_irqrestore(&priv->lock, flags);
5824
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005825 iwl3945_hw_txq_ctx_stop(priv);
5826 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005827
5828 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005829 if (!iwl3945_grab_nic_access(priv)) {
5830 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005831 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005832 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005833 }
5834 spin_unlock_irqrestore(&priv->lock, flags);
5835
5836 udelay(5);
5837
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005838 iwl3945_hw_nic_stop_master(priv);
5839 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5840 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005841
5842 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005843 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005844
5845 if (priv->ibss_beacon)
5846 dev_kfree_skb(priv->ibss_beacon);
5847 priv->ibss_beacon = NULL;
5848
5849 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005850 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005851}
5852
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005853static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005854{
5855 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005856 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005857 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005858
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005859 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005860}
5861
5862#define MAX_HW_RESTARTS 5
5863
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005864static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005865{
5866 int rc, i;
5867
5868 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5869 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5870 return -EIO;
5871 }
5872
5873 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5874 IWL_WARNING("Radio disabled by SW RF kill (module "
5875 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005876 return -ENODEV;
5877 }
5878
Reinette Chatree903fbd2008-01-30 22:05:15 -08005879 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005880 IWL_ERROR("ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005881 return -EIO;
5882 }
5883
Zhu Yie655b9f2008-01-24 02:19:38 -08005884 /* If platform's RF_KILL switch is NOT set to KILL */
5885 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
5886 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5887 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5888 else {
5889 set_bit(STATUS_RF_KILL_HW, &priv->status);
5890 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5891 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5892 return -ENODEV;
5893 }
Zhu Yib481de92007-09-25 17:54:57 -07005894 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005895
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005896 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005897
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005898 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005899 if (rc) {
5900 IWL_ERROR("Unable to int nic\n");
5901 return rc;
5902 }
5903
5904 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005905 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5906 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005907 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5908
5909 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005910 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
5911 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005912
5913 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005914 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5915 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005916
5917 /* Copy original ucode data image from disk into backup cache.
5918 * This will be used to initialize the on-board processor's
5919 * data SRAM for a clean start when the runtime program first loads. */
5920 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08005921 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005922
Zhu Yie655b9f2008-01-24 02:19:38 -08005923 /* We return success when we resume from suspend and rf_kill is on. */
5924 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5925 return 0;
5926
Zhu Yib481de92007-09-25 17:54:57 -07005927 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5928
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005929 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005930
5931 /* load bootstrap state machine,
5932 * load bootstrap program into processor's memory,
5933 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005934 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005935
5936 if (rc) {
5937 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5938 continue;
5939 }
5940
5941 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005942 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005943
Zhu Yib481de92007-09-25 17:54:57 -07005944 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5945
5946 return 0;
5947 }
5948
5949 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005950 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005951 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005952
5953 /* tried to restart and config the device for as long as our
5954 * patience could withstand */
5955 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5956 return -EIO;
5957}
5958
5959
5960/*****************************************************************************
5961 *
5962 * Workqueue callbacks
5963 *
5964 *****************************************************************************/
5965
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005966static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005967{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005968 struct iwl3945_priv *priv =
5969 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005970
5971 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5972 return;
5973
5974 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005975 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005976 mutex_unlock(&priv->mutex);
5977}
5978
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005979static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005980{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005981 struct iwl3945_priv *priv =
5982 container_of(data, struct iwl3945_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005983
5984 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5985 return;
5986
5987 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005988 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005989 mutex_unlock(&priv->mutex);
5990}
5991
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005992static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005993{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005994 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005995
5996 wake_up_interruptible(&priv->wait_command_queue);
5997
5998 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5999 return;
6000
6001 mutex_lock(&priv->mutex);
6002
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006003 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006004 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
6005 "HW and/or SW RF Kill no longer active, restarting "
6006 "device\n");
6007 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
6008 queue_work(priv->workqueue, &priv->restart);
6009 } else {
6010
6011 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
6012 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6013 "disabled by SW switch\n");
6014 else
6015 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6016 "Kill switch must be turned off for "
6017 "wireless networking to work.\n");
6018 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08006019
Zhu Yib481de92007-09-25 17:54:57 -07006020 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006021 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006022}
6023
6024#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6025
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006026static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006027{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006028 struct iwl3945_priv *priv =
6029 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07006030
6031 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6032 return;
6033
6034 mutex_lock(&priv->mutex);
6035 if (test_bit(STATUS_SCANNING, &priv->status) ||
6036 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6037 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6038 "Scan completion watchdog resetting adapter (%dms)\n",
6039 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006040
Zhu Yib481de92007-09-25 17:54:57 -07006041 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006042 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006043 }
6044 mutex_unlock(&priv->mutex);
6045}
6046
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006047static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006048{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006049 struct iwl3945_priv *priv =
6050 container_of(data, struct iwl3945_priv, request_scan);
6051 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006052 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006053 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006054 .meta.flags = CMD_SIZE_HUGE,
6055 };
6056 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006057 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006058 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006059 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01006060 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04006061 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07006062
6063 conf = ieee80211_get_hw_conf(priv->hw);
6064
6065 mutex_lock(&priv->mutex);
6066
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006067 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006068 IWL_WARNING("request scan called when driver not ready.\n");
6069 goto done;
6070 }
6071
Tomas Winklera96a27f2008-10-23 23:48:56 -07006072 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07006073 * was given the chance to run... */
6074 if (!test_bit(STATUS_SCANNING, &priv->status))
6075 goto done;
6076
6077 /* This should never be called or scheduled if there is currently
6078 * a scan active in the hardware. */
6079 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6080 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6081 "Ignoring second request.\n");
6082 rc = -EIO;
6083 goto done;
6084 }
6085
6086 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6087 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6088 goto done;
6089 }
6090
6091 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6092 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6093 goto done;
6094 }
6095
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006096 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006097 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6098 goto done;
6099 }
6100
6101 if (!test_bit(STATUS_READY, &priv->status)) {
6102 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6103 goto done;
6104 }
6105
6106 if (!priv->scan_bands) {
6107 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6108 goto done;
6109 }
6110
6111 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006112 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006113 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6114 if (!priv->scan) {
6115 rc = -ENOMEM;
6116 goto done;
6117 }
6118 }
6119 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006120 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006121
6122 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6123 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6124
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006125 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006126 u16 interval = 0;
6127 u32 extra;
6128 u32 suspend_time = 100;
6129 u32 scan_suspend_time = 100;
6130 unsigned long flags;
6131
6132 IWL_DEBUG_INFO("Scanning while associated...\n");
6133
6134 spin_lock_irqsave(&priv->lock, flags);
6135 interval = priv->beacon_int;
6136 spin_unlock_irqrestore(&priv->lock, flags);
6137
6138 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006139 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006140 if (!interval)
6141 interval = suspend_time;
6142 /*
6143 * suspend time format:
6144 * 0-19: beacon interval in usec (time before exec.)
6145 * 20-23: 0
6146 * 24-31: number of beacons (suspend between channels)
6147 */
6148
6149 extra = (suspend_time / interval) << 24;
6150 scan_suspend_time = 0xFF0FFFFF &
6151 (extra | ((suspend_time % interval) * 1024));
6152
6153 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6154 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6155 scan_suspend_time, interval);
6156 }
6157
6158 /* We should add the ability for user to lock to PASSIVE ONLY */
6159 if (priv->one_direct_scan) {
6160 IWL_DEBUG_SCAN
6161 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006162 print_ssid(ssid, priv->direct_ssid,
6163 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006164 scan->direct_scan[0].id = WLAN_EID_SSID;
6165 scan->direct_scan[0].len = priv->direct_ssid_len;
6166 memcpy(scan->direct_scan[0].ssid,
6167 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006168 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006169 } else
Bill Moss786b4552008-04-17 16:03:40 -07006170 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006171
6172 /* We don't build a direct scan probe request; the uCode will do
6173 * that based on the direct_mask added to each channel entry */
6174 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006175 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01006176 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07006177 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6178 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6179 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6180
6181 /* flags + rate selection */
6182
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006183 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006184 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6185 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6186 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006187 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006188 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006189 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6190 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006191 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006192 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006193 IWL_WARNING("Invalid scan band count\n");
6194 goto done;
6195 }
6196
6197 /* select Rx antennas */
6198 scan->flags |= iwl3945_get_antenna_flags(priv);
6199
Johannes Berg05c914f2008-09-11 00:01:58 +02006200 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07006201 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6202
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006203 scan->channel_count =
6204 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
6205 n_probes,
6206 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07006207
Reinette Chatre14b54332008-11-04 12:21:35 -08006208 if (scan->channel_count == 0) {
6209 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
6210 goto done;
6211 }
6212
Zhu Yib481de92007-09-25 17:54:57 -07006213 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006214 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006215 cmd.data = scan;
6216 scan->len = cpu_to_le16(cmd.len);
6217
6218 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006219 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006220 if (rc)
6221 goto done;
6222
6223 queue_delayed_work(priv->workqueue, &priv->scan_check,
6224 IWL_SCAN_CHECK_WATCHDOG);
6225
6226 mutex_unlock(&priv->mutex);
6227 return;
6228
6229 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08006230 /* can not perform scan make sure we clear scanning
6231 * bits from status so next scan request can be performed.
6232 * if we dont clear scanning status bit here all next scan
6233 * will fail
6234 */
6235 clear_bit(STATUS_SCAN_HW, &priv->status);
6236 clear_bit(STATUS_SCANNING, &priv->status);
6237
Ian Schram01ebd062007-10-25 17:15:22 +08006238 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006239 queue_work(priv->workqueue, &priv->scan_completed);
6240 mutex_unlock(&priv->mutex);
6241}
6242
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006243static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006244{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006245 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006246
6247 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6248 return;
6249
6250 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006251 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006252 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006253 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006254}
6255
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006256static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006257{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006258 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006259
6260 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6261 return;
6262
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006263 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006264 queue_work(priv->workqueue, &priv->up);
6265}
6266
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006267static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006268{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006269 struct iwl3945_priv *priv =
6270 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006271
6272 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6273 return;
6274
6275 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006276 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006277 mutex_unlock(&priv->mutex);
6278}
6279
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006280#define IWL_DELAY_NEXT_SCAN (HZ*2)
6281
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006282static void iwl3945_post_associate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006283{
Zhu Yib481de92007-09-25 17:54:57 -07006284 int rc = 0;
6285 struct ieee80211_conf *conf = NULL;
6286
Johannes Berg05c914f2008-09-11 00:01:58 +02006287 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006288 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07006289 return;
6290 }
6291
6292
Johannes Berge1749612008-10-27 15:59:26 -07006293 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
6294 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07006295
6296 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6297 return;
6298
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006299 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006300 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006301
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006302 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006303
Zhu Yib481de92007-09-25 17:54:57 -07006304 conf = ieee80211_get_hw_conf(priv->hw);
6305
6306 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006307 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006308
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006309 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6310 iwl3945_setup_rxon_timing(priv);
6311 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006312 sizeof(priv->rxon_timing), &priv->rxon_timing);
6313 if (rc)
6314 IWL_WARNING("REPLY_RXON_TIMING failed - "
6315 "Attempting to continue.\n");
6316
6317 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6318
6319 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6320
6321 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6322 priv->assoc_id, priv->beacon_int);
6323
6324 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6325 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6326 else
6327 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6328
6329 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6330 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6331 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6332 else
6333 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6334
Johannes Berg05c914f2008-09-11 00:01:58 +02006335 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006336 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6337
6338 }
6339
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006340 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006341
6342 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02006343 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006344 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006345 break;
6346
Johannes Berg05c914f2008-09-11 00:01:58 +02006347 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07006348
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08006349 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006350 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006351 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006352 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006353 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6354 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006355 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6356 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006357
6358 break;
6359
6360 default:
6361 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006362 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006363 break;
6364 }
6365
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006366 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006367
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006368 /* we have just associated, don't start scan too early */
6369 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006370}
6371
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006372static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006373{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006374 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006375
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006376 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006377 return;
6378
6379 mutex_lock(&priv->mutex);
6380
6381 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006382 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006383
6384 mutex_unlock(&priv->mutex);
6385}
6386
Johannes Berge8975582008-10-09 12:18:51 +02006387static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006388
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006389static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006390{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006391 struct iwl3945_priv *priv =
6392 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006393
6394 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6395
6396 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6397 return;
6398
Zhu Yia0646472007-12-20 14:10:01 +08006399 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006400 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006401
Zhu Yib481de92007-09-25 17:54:57 -07006402 ieee80211_scan_completed(priv->hw);
6403
6404 /* Since setting the TXPOWER may have been deferred while
6405 * performing the scan, fire one off */
6406 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006407 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006408 mutex_unlock(&priv->mutex);
6409}
6410
6411/*****************************************************************************
6412 *
6413 * mac80211 entry point functions
6414 *
6415 *****************************************************************************/
6416
Zhu Yi5a66926a2008-01-14 17:46:18 -08006417#define UCODE_READY_TIMEOUT (2 * HZ)
6418
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006419static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006420{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006421 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006422 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006423
6424 IWL_DEBUG_MAC80211("enter\n");
6425
Zhu Yi5a66926a2008-01-14 17:46:18 -08006426 if (pci_enable_device(priv->pci_dev)) {
6427 IWL_ERROR("Fail to pci_enable_device\n");
6428 return -ENODEV;
6429 }
6430 pci_restore_state(priv->pci_dev);
6431 pci_enable_msi(priv->pci_dev);
6432
6433 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6434 DRV_NAME, priv);
6435 if (ret) {
6436 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6437 goto out_disable_msi;
6438 }
6439
Zhu Yib481de92007-09-25 17:54:57 -07006440 /* we should be verifying the device is ready to be opened */
6441 mutex_lock(&priv->mutex);
6442
Zhu Yi5a66926a2008-01-14 17:46:18 -08006443 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6444 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6445 * ucode filename and max sizes are card-specific. */
6446
6447 if (!priv->ucode_code.len) {
6448 ret = iwl3945_read_ucode(priv);
6449 if (ret) {
6450 IWL_ERROR("Could not read microcode: %d\n", ret);
6451 mutex_unlock(&priv->mutex);
6452 goto out_release_irq;
6453 }
6454 }
6455
Zhu Yie655b9f2008-01-24 02:19:38 -08006456 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006457
Zhu Yib481de92007-09-25 17:54:57 -07006458 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006459
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006460 iwl3945_rfkill_set_hw_state(priv);
6461
Zhu Yie655b9f2008-01-24 02:19:38 -08006462 if (ret)
6463 goto out_release_irq;
6464
6465 IWL_DEBUG_INFO("Start UP work.\n");
6466
6467 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6468 return 0;
6469
Zhu Yi5a66926a2008-01-14 17:46:18 -08006470 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6471 * mac80211 will not be run successfully. */
6472 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6473 test_bit(STATUS_READY, &priv->status),
6474 UCODE_READY_TIMEOUT);
6475 if (!ret) {
6476 if (!test_bit(STATUS_READY, &priv->status)) {
6477 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6478 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6479 ret = -ETIMEDOUT;
6480 goto out_release_irq;
6481 }
6482 }
6483
Zhu Yie655b9f2008-01-24 02:19:38 -08006484 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006485 IWL_DEBUG_MAC80211("leave\n");
6486 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006487
6488out_release_irq:
6489 free_irq(priv->pci_dev->irq, priv);
6490out_disable_msi:
6491 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006492 pci_disable_device(priv->pci_dev);
6493 priv->is_open = 0;
6494 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08006495 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006496}
6497
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006498static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006499{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006500 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006501
6502 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006503
Zhu Yie655b9f2008-01-24 02:19:38 -08006504 if (!priv->is_open) {
6505 IWL_DEBUG_MAC80211("leave - skip\n");
6506 return;
6507 }
6508
Zhu Yib481de92007-09-25 17:54:57 -07006509 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006510
6511 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006512 /* stop mac, cancel any scan request and clear
6513 * RXON_FILTER_ASSOC_MSK BIT
6514 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08006515 mutex_lock(&priv->mutex);
6516 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006517 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006518 }
6519
Zhu Yi5a66926a2008-01-14 17:46:18 -08006520 iwl3945_down(priv);
6521
6522 flush_workqueue(priv->workqueue);
6523 free_irq(priv->pci_dev->irq, priv);
6524 pci_disable_msi(priv->pci_dev);
6525 pci_save_state(priv->pci_dev);
6526 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006527
Zhu Yib481de92007-09-25 17:54:57 -07006528 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006529}
6530
Johannes Berge039fa42008-05-15 12:55:29 +02006531static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006532{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006533 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006534
6535 IWL_DEBUG_MAC80211("enter\n");
6536
Zhu Yib481de92007-09-25 17:54:57 -07006537 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006538 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006539
Johannes Berge039fa42008-05-15 12:55:29 +02006540 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006541 dev_kfree_skb_any(skb);
6542
6543 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006544 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006545}
6546
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006547static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006548 struct ieee80211_if_init_conf *conf)
6549{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006550 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006551 unsigned long flags;
6552
Johannes Berg32bfd352007-12-19 01:31:26 +01006553 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006554
Johannes Berg32bfd352007-12-19 01:31:26 +01006555 if (priv->vif) {
6556 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006557 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006558 }
6559
6560 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006561 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006562 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006563
6564 spin_unlock_irqrestore(&priv->lock, flags);
6565
6566 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006567
6568 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006569 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006570 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6571 }
6572
Zhu Yi5a66926a2008-01-14 17:46:18 -08006573 if (iwl3945_is_ready(priv))
6574 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006575
Zhu Yib481de92007-09-25 17:54:57 -07006576 mutex_unlock(&priv->mutex);
6577
Zhu Yi5a66926a2008-01-14 17:46:18 -08006578 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006579 return 0;
6580}
6581
6582/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006583 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006584 *
6585 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6586 * be set inappropriately and the driver currently sets the hardware up to
6587 * use it whenever needed.
6588 */
Johannes Berge8975582008-10-09 12:18:51 +02006589static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006590{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006591 struct iwl3945_priv *priv = hw->priv;
6592 const struct iwl3945_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006593 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006594 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006595 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006596
6597 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006598 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006599
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006600 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006601 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006602 ret = -EIO;
6603 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006604 }
6605
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006606 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006607 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006608 IWL_DEBUG_MAC80211("leave - scanning\n");
6609 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006610 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006611 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006612 }
6613
6614 spin_lock_irqsave(&priv->lock, flags);
6615
Johannes Berg8318d782008-01-24 19:38:38 +01006616 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6617 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006618 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006619 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006620 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006621 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6622 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006623 ret = -EINVAL;
6624 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006625 }
6626
Johannes Berg8318d782008-01-24 19:38:38 +01006627 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006628
Johannes Berg8318d782008-01-24 19:38:38 +01006629 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006630
6631 /* The list of supported rates and rate mask can be different
6632 * for each phymode; since the phymode may have changed, reset
6633 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006634 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006635
6636 spin_unlock_irqrestore(&priv->lock, flags);
6637
6638#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6639 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006640 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006641 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006642 }
6643#endif
6644
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006645 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006646
6647 if (!conf->radio_enabled) {
6648 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006649 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006650 }
6651
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006652 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006653 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006654 ret = -EIO;
6655 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006656 }
6657
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006658 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006659
6660 if (memcmp(&priv->active_rxon,
6661 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006662 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006663 else
6664 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6665
6666 IWL_DEBUG_MAC80211("leave\n");
6667
Zhu Yi76bb77e2007-11-22 10:53:22 +08006668out:
Zhu Yia0646472007-12-20 14:10:01 +08006669 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006670 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006671 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006672}
6673
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006674static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006675{
6676 int rc = 0;
6677
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006678 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006679 return;
6680
6681 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006682 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006683
6684 /* RXON - unassoc (to set timing command) */
6685 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006686 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006687
6688 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006689 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6690 iwl3945_setup_rxon_timing(priv);
6691 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006692 sizeof(priv->rxon_timing), &priv->rxon_timing);
6693 if (rc)
6694 IWL_WARNING("REPLY_RXON_TIMING failed - "
6695 "Attempting to continue.\n");
6696
6697 /* FIXME: what should be the assoc_id for AP? */
6698 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6699 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6700 priv->staging_rxon.flags |=
6701 RXON_FLG_SHORT_PREAMBLE_MSK;
6702 else
6703 priv->staging_rxon.flags &=
6704 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6705
6706 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6707 if (priv->assoc_capability &
6708 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6709 priv->staging_rxon.flags |=
6710 RXON_FLG_SHORT_SLOT_MSK;
6711 else
6712 priv->staging_rxon.flags &=
6713 ~RXON_FLG_SHORT_SLOT_MSK;
6714
Johannes Berg05c914f2008-09-11 00:01:58 +02006715 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006716 priv->staging_rxon.flags &=
6717 ~RXON_FLG_SHORT_SLOT_MSK;
6718 }
6719 /* restore RXON assoc */
6720 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006721 iwl3945_commit_rxon(priv);
6722 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006723 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006724 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006725
6726 /* FIXME - we need to add code here to detect a totally new
6727 * configuration, reset the AP, unassoc, rxon timing, assoc,
6728 * clear sta table, add BCAST sta... */
6729}
6730
Johannes Berg32bfd352007-12-19 01:31:26 +01006731static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6732 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006733 struct ieee80211_if_conf *conf)
6734{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006735 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006736 int rc;
6737
6738 if (conf == NULL)
6739 return -EIO;
6740
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006741 if (priv->vif != vif) {
6742 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006743 return 0;
6744 }
6745
Johannes Berg9d139c82008-07-09 14:40:37 +02006746 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006747 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006748 conf->changed & IEEE80211_IFCC_BEACON) {
6749 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6750 if (!beacon)
6751 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006752 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006753 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006754 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006755 if (rc)
6756 return rc;
6757 }
6758
Zhu Yi5a66926a2008-01-14 17:46:18 -08006759 if (!iwl3945_is_alive(priv))
6760 return -EAGAIN;
6761
Zhu Yib481de92007-09-25 17:54:57 -07006762 mutex_lock(&priv->mutex);
6763
Zhu Yib481de92007-09-25 17:54:57 -07006764 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006765 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006766
Johannes Berg4150c572007-09-17 01:29:23 -04006767/*
6768 * very dubious code was here; the probe filtering flag is never set:
6769 *
Zhu Yib481de92007-09-25 17:54:57 -07006770 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6771 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006772 */
Zhu Yib481de92007-09-25 17:54:57 -07006773
Johannes Berg05c914f2008-09-11 00:01:58 +02006774 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006775 if (!conf->bssid) {
6776 conf->bssid = priv->mac_addr;
6777 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006778 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6779 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006780 }
6781 if (priv->ibss_beacon)
6782 dev_kfree_skb(priv->ibss_beacon);
6783
Johannes Berg9d139c82008-07-09 14:40:37 +02006784 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006785 }
6786
Mohamed Abbasfde35712007-11-29 11:10:15 +08006787 if (iwl3945_is_rfkill(priv))
6788 goto done;
6789
Zhu Yib481de92007-09-25 17:54:57 -07006790 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6791 !is_multicast_ether_addr(conf->bssid)) {
6792 /* If there is currently a HW scan going on in the background
6793 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006794 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006795 IWL_WARNING("Aborted scan still in progress "
6796 "after 100ms\n");
6797 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6798 mutex_unlock(&priv->mutex);
6799 return -EAGAIN;
6800 }
6801 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6802
6803 /* TODO: Audit driver for usage of these members and see
6804 * if mac80211 deprecates them (priv->bssid looks like it
6805 * shouldn't be there, but I haven't scanned the IBSS code
6806 * to verify) - jpk */
6807 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6808
Johannes Berg05c914f2008-09-11 00:01:58 +02006809 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006810 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006811 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006812 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006813 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006814 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08006815 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006816 }
6817
6818 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006819 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006820 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006821 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006822 }
6823
Mohamed Abbasfde35712007-11-29 11:10:15 +08006824 done:
Zhu Yib481de92007-09-25 17:54:57 -07006825 IWL_DEBUG_MAC80211("leave\n");
6826 mutex_unlock(&priv->mutex);
6827
6828 return 0;
6829}
6830
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006831static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006832 unsigned int changed_flags,
6833 unsigned int *total_flags,
6834 int mc_count, struct dev_addr_list *mc_list)
6835{
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006836 struct iwl3945_priv *priv = hw->priv;
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006837 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006838
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006839 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6840 changed_flags, *total_flags);
6841
6842 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6843 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6844 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6845 else
6846 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006847 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006848 if (changed_flags & FIF_ALLMULTI) {
6849 if (*total_flags & FIF_ALLMULTI)
6850 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6851 else
6852 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6853 }
6854 if (changed_flags & FIF_CONTROL) {
6855 if (*total_flags & FIF_CONTROL)
6856 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6857 else
6858 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6859 }
6860 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6861 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6862 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6863 else
6864 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6865 }
6866
6867 /* We avoid iwl_commit_rxon here to commit the new filter flags
6868 * since mac80211 will call ieee80211_hw_config immediately.
6869 * (mc_list is not supported at this time). Otherwise, we need to
6870 * queue a background iwl_commit_rxon work.
6871 */
6872
6873 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006874 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006875}
6876
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006877static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006878 struct ieee80211_if_init_conf *conf)
6879{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006880 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006881
6882 IWL_DEBUG_MAC80211("enter\n");
6883
6884 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006885
Mohamed Abbasfde35712007-11-29 11:10:15 +08006886 if (iwl3945_is_ready_rf(priv)) {
6887 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006888 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6889 iwl3945_commit_rxon(priv);
6890 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006891 if (priv->vif == conf->vif) {
6892 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006893 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006894 }
6895 mutex_unlock(&priv->mutex);
6896
6897 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006898}
6899
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006900#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6901
6902static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6903 struct ieee80211_vif *vif,
6904 struct ieee80211_bss_conf *bss_conf,
6905 u32 changes)
6906{
6907 struct iwl3945_priv *priv = hw->priv;
6908
6909 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6910
6911 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6912 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6913 bss_conf->use_short_preamble);
6914 if (bss_conf->use_short_preamble)
6915 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6916 else
6917 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6918 }
6919
6920 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6921 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6922 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6923 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6924 else
6925 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6926 }
6927
6928 if (changes & BSS_CHANGED_ASSOC) {
6929 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6930 /* This should never happen as this function should
6931 * never be called from interrupt context. */
6932 if (WARN_ON_ONCE(in_interrupt()))
6933 return;
6934 if (bss_conf->assoc) {
6935 priv->assoc_id = bss_conf->aid;
6936 priv->beacon_int = bss_conf->beacon_int;
6937 priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF;
6938 priv->timestamp1 = (bss_conf->timestamp >> 32) &
6939 0xFFFFFFFF;
6940 priv->assoc_capability = bss_conf->assoc_capability;
6941 priv->next_scan_jiffies = jiffies +
6942 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6943 mutex_lock(&priv->mutex);
6944 iwl3945_post_associate(priv);
6945 mutex_unlock(&priv->mutex);
6946 } else {
6947 priv->assoc_id = 0;
6948 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6949 }
6950 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6951 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6952 iwl3945_send_rxon_assoc(priv);
6953 }
6954
6955}
6956
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006957static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006958{
6959 int rc = 0;
6960 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006961 struct iwl3945_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006962 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006963
6964 IWL_DEBUG_MAC80211("enter\n");
6965
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006966 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006967 spin_lock_irqsave(&priv->lock, flags);
6968
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006969 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006970 rc = -EIO;
6971 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6972 goto out_unlock;
6973 }
6974
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006975 /* we don't schedule scan within next_scan_jiffies period */
6976 if (priv->next_scan_jiffies &&
6977 time_after(priv->next_scan_jiffies, jiffies)) {
6978 rc = -EAGAIN;
6979 goto out_unlock;
6980 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006981 /* if we just finished scan ask for delay for a broadcast scan */
6982 if ((len == 0) && priv->last_scan_jiffies &&
6983 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6984 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006985 rc = -EAGAIN;
6986 goto out_unlock;
6987 }
6988 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006989 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006990 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006991
6992 priv->one_direct_scan = 1;
6993 priv->direct_ssid_len = (u8)
6994 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6995 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006996 } else
6997 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006998
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006999 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007000
7001 IWL_DEBUG_MAC80211("leave\n");
7002
7003out_unlock:
7004 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007005 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007006
7007 return rc;
7008}
7009
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007010static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007011 const u8 *local_addr, const u8 *addr,
7012 struct ieee80211_key_conf *key)
7013{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007014 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007015 int rc = 0;
7016 u8 sta_id;
7017
7018 IWL_DEBUG_MAC80211("enter\n");
7019
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007020 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007021 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7022 return -EOPNOTSUPP;
7023 }
7024
7025 if (is_zero_ether_addr(addr))
7026 /* only support pairwise keys */
7027 return -EOPNOTSUPP;
7028
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007029 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07007030 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07007031 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
7032 addr);
Zhu Yib481de92007-09-25 17:54:57 -07007033 return -EINVAL;
7034 }
7035
7036 mutex_lock(&priv->mutex);
7037
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007038 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007039
Zhu Yib481de92007-09-25 17:54:57 -07007040 switch (cmd) {
7041 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007042 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007043 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007044 iwl3945_set_rxon_hwcrypto(priv, 1);
7045 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007046 key->hw_key_idx = sta_id;
7047 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7048 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7049 }
7050 break;
7051 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007052 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007053 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007054 iwl3945_set_rxon_hwcrypto(priv, 0);
7055 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007056 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7057 }
7058 break;
7059 default:
7060 rc = -EINVAL;
7061 }
7062
7063 IWL_DEBUG_MAC80211("leave\n");
7064 mutex_unlock(&priv->mutex);
7065
7066 return rc;
7067}
7068
Johannes Berge100bb62008-04-30 18:51:21 +02007069static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07007070 const struct ieee80211_tx_queue_params *params)
7071{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007072 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007073 unsigned long flags;
7074 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007075
7076 IWL_DEBUG_MAC80211("enter\n");
7077
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007078 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007079 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7080 return -EIO;
7081 }
7082
7083 if (queue >= AC_NUM) {
7084 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7085 return 0;
7086 }
7087
Zhu Yib481de92007-09-25 17:54:57 -07007088 q = AC_NUM - 1 - queue;
7089
7090 spin_lock_irqsave(&priv->lock, flags);
7091
7092 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7093 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7094 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7095 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01007096 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007097
7098 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7099 priv->qos_data.qos_active = 1;
7100
7101 spin_unlock_irqrestore(&priv->lock, flags);
7102
7103 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02007104 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007105 iwl3945_activate_qos(priv, 1);
7106 else if (priv->assoc_id && iwl3945_is_associated(priv))
7107 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007108
7109 mutex_unlock(&priv->mutex);
7110
Zhu Yib481de92007-09-25 17:54:57 -07007111 IWL_DEBUG_MAC80211("leave\n");
7112 return 0;
7113}
7114
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007115static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007116 struct ieee80211_tx_queue_stats *stats)
7117{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007118 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007119 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007120 struct iwl3945_tx_queue *txq;
7121 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007122 unsigned long flags;
7123
7124 IWL_DEBUG_MAC80211("enter\n");
7125
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007126 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007127 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7128 return -EIO;
7129 }
7130
7131 spin_lock_irqsave(&priv->lock, flags);
7132
7133 for (i = 0; i < AC_NUM; i++) {
7134 txq = &priv->txq[i];
7135 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007136 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007137
Johannes Berg57ffc582008-04-29 17:18:59 +02007138 stats[i].len = q->n_window - avail;
7139 stats[i].limit = q->n_window - q->high_mark;
7140 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07007141
7142 }
7143 spin_unlock_irqrestore(&priv->lock, flags);
7144
7145 IWL_DEBUG_MAC80211("leave\n");
7146
7147 return 0;
7148}
7149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007150static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007151 struct ieee80211_low_level_stats *stats)
7152{
7153 IWL_DEBUG_MAC80211("enter\n");
7154 IWL_DEBUG_MAC80211("leave\n");
7155
7156 return 0;
7157}
7158
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007159static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007160{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007161 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007162 unsigned long flags;
7163
7164 mutex_lock(&priv->mutex);
7165 IWL_DEBUG_MAC80211("enter\n");
7166
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007167 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007168
Zhu Yib481de92007-09-25 17:54:57 -07007169 spin_lock_irqsave(&priv->lock, flags);
7170 priv->assoc_id = 0;
7171 priv->assoc_capability = 0;
7172 priv->call_post_assoc_from_beacon = 0;
7173
7174 /* new association get rid of ibss beacon skb */
7175 if (priv->ibss_beacon)
7176 dev_kfree_skb(priv->ibss_beacon);
7177
7178 priv->ibss_beacon = NULL;
7179
7180 priv->beacon_int = priv->hw->conf.beacon_int;
7181 priv->timestamp1 = 0;
7182 priv->timestamp0 = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02007183 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07007184 priv->beacon_int = 0;
7185
7186 spin_unlock_irqrestore(&priv->lock, flags);
7187
Mohamed Abbasfde35712007-11-29 11:10:15 +08007188 if (!iwl3945_is_ready_rf(priv)) {
7189 IWL_DEBUG_MAC80211("leave - not ready\n");
7190 mutex_unlock(&priv->mutex);
7191 return;
7192 }
7193
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007194 /* we are restarting association process
7195 * clear RXON_FILTER_ASSOC_MSK bit
7196 */
Johannes Berg05c914f2008-09-11 00:01:58 +02007197 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007198 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007199 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007200 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007201 }
7202
Zhu Yib481de92007-09-25 17:54:57 -07007203 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02007204 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007205
Zhu Yib481de92007-09-25 17:54:57 -07007206 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7207 mutex_unlock(&priv->mutex);
7208 return;
7209 }
7210
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007211 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007212
7213 mutex_unlock(&priv->mutex);
7214
7215 IWL_DEBUG_MAC80211("leave\n");
7216
7217}
7218
Johannes Berge039fa42008-05-15 12:55:29 +02007219static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07007220{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007221 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007222 unsigned long flags;
7223
Zhu Yib481de92007-09-25 17:54:57 -07007224 IWL_DEBUG_MAC80211("enter\n");
7225
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007226 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007227 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07007228 return -EIO;
7229 }
7230
Johannes Berg05c914f2008-09-11 00:01:58 +02007231 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07007232 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07007233 return -EIO;
7234 }
7235
7236 spin_lock_irqsave(&priv->lock, flags);
7237
7238 if (priv->ibss_beacon)
7239 dev_kfree_skb(priv->ibss_beacon);
7240
7241 priv->ibss_beacon = skb;
7242
7243 priv->assoc_id = 0;
7244
7245 IWL_DEBUG_MAC80211("leave\n");
7246 spin_unlock_irqrestore(&priv->lock, flags);
7247
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007248 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007249
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08007250 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007251
Zhu Yib481de92007-09-25 17:54:57 -07007252
7253 return 0;
7254}
7255
7256/*****************************************************************************
7257 *
7258 * sysfs attributes
7259 *
7260 *****************************************************************************/
7261
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007262#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007263
7264/*
7265 * The following adds a new attribute to the sysfs representation
7266 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7267 * used for controlling the debug level.
7268 *
7269 * See the level definitions in iwl for details.
7270 */
7271
7272static ssize_t show_debug_level(struct device_driver *d, char *buf)
7273{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007274 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007275}
7276static ssize_t store_debug_level(struct device_driver *d,
7277 const char *buf, size_t count)
7278{
7279 char *p = (char *)buf;
7280 u32 val;
7281
7282 val = simple_strtoul(p, &p, 0);
7283 if (p == buf)
7284 printk(KERN_INFO DRV_NAME
7285 ": %s is not in hex or decimal form.\n", buf);
7286 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007287 iwl3945_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007288
7289 return strnlen(buf, count);
7290}
7291
7292static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7293 show_debug_level, store_debug_level);
7294
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007295#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007296
Zhu Yib481de92007-09-25 17:54:57 -07007297static ssize_t show_temperature(struct device *d,
7298 struct device_attribute *attr, char *buf)
7299{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007300 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007301
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007302 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007303 return -EAGAIN;
7304
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007305 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007306}
7307
7308static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7309
Zhu Yib481de92007-09-25 17:54:57 -07007310static ssize_t show_tx_power(struct device *d,
7311 struct device_attribute *attr, char *buf)
7312{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007313 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007314 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7315}
7316
7317static ssize_t store_tx_power(struct device *d,
7318 struct device_attribute *attr,
7319 const char *buf, size_t count)
7320{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007321 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007322 char *p = (char *)buf;
7323 u32 val;
7324
7325 val = simple_strtoul(p, &p, 10);
7326 if (p == buf)
7327 printk(KERN_INFO DRV_NAME
7328 ": %s is not in decimal form.\n", buf);
7329 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007330 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007331
7332 return count;
7333}
7334
7335static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7336
7337static ssize_t show_flags(struct device *d,
7338 struct device_attribute *attr, char *buf)
7339{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007340 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007341
7342 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7343}
7344
7345static ssize_t store_flags(struct device *d,
7346 struct device_attribute *attr,
7347 const char *buf, size_t count)
7348{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007349 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007350 u32 flags = simple_strtoul(buf, NULL, 0);
7351
7352 mutex_lock(&priv->mutex);
7353 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7354 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007355 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007356 IWL_WARNING("Could not cancel scan.\n");
7357 else {
7358 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7359 flags);
7360 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007361 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007362 }
7363 }
7364 mutex_unlock(&priv->mutex);
7365
7366 return count;
7367}
7368
7369static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7370
7371static ssize_t show_filter_flags(struct device *d,
7372 struct device_attribute *attr, char *buf)
7373{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007374 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007375
7376 return sprintf(buf, "0x%04X\n",
7377 le32_to_cpu(priv->active_rxon.filter_flags));
7378}
7379
7380static ssize_t store_filter_flags(struct device *d,
7381 struct device_attribute *attr,
7382 const char *buf, size_t count)
7383{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007384 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007385 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7386
7387 mutex_lock(&priv->mutex);
7388 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7389 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007390 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007391 IWL_WARNING("Could not cancel scan.\n");
7392 else {
7393 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7394 "0x%04X\n", filter_flags);
7395 priv->staging_rxon.filter_flags =
7396 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007397 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007398 }
7399 }
7400 mutex_unlock(&priv->mutex);
7401
7402 return count;
7403}
7404
7405static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7406 store_filter_flags);
7407
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007408#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007409
7410static ssize_t show_measurement(struct device *d,
7411 struct device_attribute *attr, char *buf)
7412{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007413 struct iwl3945_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08007414 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007415 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007416 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007417 unsigned long flags;
7418
7419 spin_lock_irqsave(&priv->lock, flags);
7420 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7421 spin_unlock_irqrestore(&priv->lock, flags);
7422 return 0;
7423 }
7424 memcpy(&measure_report, &priv->measure_report, size);
7425 priv->measurement_status = 0;
7426 spin_unlock_irqrestore(&priv->lock, flags);
7427
7428 while (size && (PAGE_SIZE - len)) {
7429 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7430 PAGE_SIZE - len, 1);
7431 len = strlen(buf);
7432 if (PAGE_SIZE - len)
7433 buf[len++] = '\n';
7434
7435 ofs += 16;
7436 size -= min(size, 16U);
7437 }
7438
7439 return len;
7440}
7441
7442static ssize_t store_measurement(struct device *d,
7443 struct device_attribute *attr,
7444 const char *buf, size_t count)
7445{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007446 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007447 struct ieee80211_measurement_params params = {
7448 .channel = le16_to_cpu(priv->active_rxon.channel),
7449 .start_time = cpu_to_le64(priv->last_tsf),
7450 .duration = cpu_to_le16(1),
7451 };
7452 u8 type = IWL_MEASURE_BASIC;
7453 u8 buffer[32];
7454 u8 channel;
7455
7456 if (count) {
7457 char *p = buffer;
7458 strncpy(buffer, buf, min(sizeof(buffer), count));
7459 channel = simple_strtoul(p, NULL, 0);
7460 if (channel)
7461 params.channel = channel;
7462
7463 p = buffer;
7464 while (*p && *p != ' ')
7465 p++;
7466 if (*p)
7467 type = simple_strtoul(p + 1, NULL, 0);
7468 }
7469
7470 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7471 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007472 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007473
7474 return count;
7475}
7476
7477static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7478 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007479#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007480
Zhu Yib481de92007-09-25 17:54:57 -07007481static ssize_t store_retry_rate(struct device *d,
7482 struct device_attribute *attr,
7483 const char *buf, size_t count)
7484{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007485 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007486
7487 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7488 if (priv->retry_rate <= 0)
7489 priv->retry_rate = 1;
7490
7491 return count;
7492}
7493
7494static ssize_t show_retry_rate(struct device *d,
7495 struct device_attribute *attr, char *buf)
7496{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007497 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007498 return sprintf(buf, "%d", priv->retry_rate);
7499}
7500
7501static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7502 store_retry_rate);
7503
7504static ssize_t store_power_level(struct device *d,
7505 struct device_attribute *attr,
7506 const char *buf, size_t count)
7507{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007508 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007509 int rc;
7510 int mode;
7511
7512 mode = simple_strtoul(buf, NULL, 0);
7513 mutex_lock(&priv->mutex);
7514
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007515 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007516 rc = -EAGAIN;
7517 goto out;
7518 }
7519
7520 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7521 mode = IWL_POWER_AC;
7522 else
7523 mode |= IWL_POWER_ENABLED;
7524
7525 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007526 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007527 if (rc) {
7528 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7529 goto out;
7530 }
7531 priv->power_mode = mode;
7532 }
7533
7534 rc = count;
7535
7536 out:
7537 mutex_unlock(&priv->mutex);
7538 return rc;
7539}
7540
7541#define MAX_WX_STRING 80
7542
7543/* Values are in microsecond */
7544static const s32 timeout_duration[] = {
7545 350000,
7546 250000,
7547 75000,
7548 37000,
7549 25000,
7550};
7551static const s32 period_duration[] = {
7552 400000,
7553 700000,
7554 1000000,
7555 1000000,
7556 1000000
7557};
7558
7559static ssize_t show_power_level(struct device *d,
7560 struct device_attribute *attr, char *buf)
7561{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007562 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007563 int level = IWL_POWER_LEVEL(priv->power_mode);
7564 char *p = buf;
7565
7566 p += sprintf(p, "%d ", level);
7567 switch (level) {
7568 case IWL_POWER_MODE_CAM:
7569 case IWL_POWER_AC:
7570 p += sprintf(p, "(AC)");
7571 break;
7572 case IWL_POWER_BATTERY:
7573 p += sprintf(p, "(BATTERY)");
7574 break;
7575 default:
7576 p += sprintf(p,
7577 "(Timeout %dms, Period %dms)",
7578 timeout_duration[level - 1] / 1000,
7579 period_duration[level - 1] / 1000);
7580 }
7581
7582 if (!(priv->power_mode & IWL_POWER_ENABLED))
7583 p += sprintf(p, " OFF\n");
7584 else
7585 p += sprintf(p, " \n");
7586
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007587 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007588
7589}
7590
7591static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7592 store_power_level);
7593
7594static ssize_t show_channels(struct device *d,
7595 struct device_attribute *attr, char *buf)
7596{
Johannes Berg8318d782008-01-24 19:38:38 +01007597 /* all this shit doesn't belong into sysfs anyway */
7598 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007599}
7600
7601static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7602
7603static ssize_t show_statistics(struct device *d,
7604 struct device_attribute *attr, char *buf)
7605{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007606 struct iwl3945_priv *priv = dev_get_drvdata(d);
7607 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007608 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007609 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07007610 int rc = 0;
7611
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007612 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007613 return -EAGAIN;
7614
7615 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007616 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007617 mutex_unlock(&priv->mutex);
7618
7619 if (rc) {
7620 len = sprintf(buf,
7621 "Error sending statistics request: 0x%08X\n", rc);
7622 return len;
7623 }
7624
7625 while (size && (PAGE_SIZE - len)) {
7626 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7627 PAGE_SIZE - len, 1);
7628 len = strlen(buf);
7629 if (PAGE_SIZE - len)
7630 buf[len++] = '\n';
7631
7632 ofs += 16;
7633 size -= min(size, 16U);
7634 }
7635
7636 return len;
7637}
7638
7639static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7640
7641static ssize_t show_antenna(struct device *d,
7642 struct device_attribute *attr, char *buf)
7643{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007644 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007645
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007646 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007647 return -EAGAIN;
7648
7649 return sprintf(buf, "%d\n", priv->antenna);
7650}
7651
7652static ssize_t store_antenna(struct device *d,
7653 struct device_attribute *attr,
7654 const char *buf, size_t count)
7655{
7656 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007657 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007658
7659 if (count == 0)
7660 return 0;
7661
7662 if (sscanf(buf, "%1i", &ant) != 1) {
7663 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7664 return count;
7665 }
7666
7667 if ((ant >= 0) && (ant <= 2)) {
7668 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007669 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007670 } else
7671 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7672
7673
7674 return count;
7675}
7676
7677static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7678
7679static ssize_t show_status(struct device *d,
7680 struct device_attribute *attr, char *buf)
7681{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007682 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
7683 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007684 return -EAGAIN;
7685 return sprintf(buf, "0x%08x\n", (int)priv->status);
7686}
7687
7688static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7689
7690static ssize_t dump_error_log(struct device *d,
7691 struct device_attribute *attr,
7692 const char *buf, size_t count)
7693{
7694 char *p = (char *)buf;
7695
7696 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007697 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007698
7699 return strnlen(buf, count);
7700}
7701
7702static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7703
7704static ssize_t dump_event_log(struct device *d,
7705 struct device_attribute *attr,
7706 const char *buf, size_t count)
7707{
7708 char *p = (char *)buf;
7709
7710 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007711 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007712
7713 return strnlen(buf, count);
7714}
7715
7716static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7717
7718/*****************************************************************************
7719 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007720 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007721 *
7722 *****************************************************************************/
7723
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007724static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007725{
7726 priv->workqueue = create_workqueue(DRV_NAME);
7727
7728 init_waitqueue_head(&priv->wait_command_queue);
7729
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007730 INIT_WORK(&priv->up, iwl3945_bg_up);
7731 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7732 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7733 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7734 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7735 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7736 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7737 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007738 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7739 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7740 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007741
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007742 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007743
7744 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007745 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007746}
7747
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007748static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007749{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007750 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007751
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007752 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007753 cancel_delayed_work(&priv->scan_check);
7754 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007755 cancel_work_sync(&priv->beacon_update);
7756}
7757
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007758static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007759 &dev_attr_antenna.attr,
7760 &dev_attr_channels.attr,
7761 &dev_attr_dump_errors.attr,
7762 &dev_attr_dump_events.attr,
7763 &dev_attr_flags.attr,
7764 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007765#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007766 &dev_attr_measurement.attr,
7767#endif
7768 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007769 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007770 &dev_attr_statistics.attr,
7771 &dev_attr_status.attr,
7772 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007773 &dev_attr_tx_power.attr,
7774
7775 NULL
7776};
7777
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007778static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007779 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007780 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007781};
7782
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007783static struct ieee80211_ops iwl3945_hw_ops = {
7784 .tx = iwl3945_mac_tx,
7785 .start = iwl3945_mac_start,
7786 .stop = iwl3945_mac_stop,
7787 .add_interface = iwl3945_mac_add_interface,
7788 .remove_interface = iwl3945_mac_remove_interface,
7789 .config = iwl3945_mac_config,
7790 .config_interface = iwl3945_mac_config_interface,
7791 .configure_filter = iwl3945_configure_filter,
7792 .set_key = iwl3945_mac_set_key,
7793 .get_stats = iwl3945_mac_get_stats,
7794 .get_tx_stats = iwl3945_mac_get_tx_stats,
7795 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007796 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007797 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007798 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007799};
7800
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007801static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007802{
7803 int err = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007804 struct iwl3945_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007805 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007806 struct iwl_3945_cfg *cfg = (struct iwl_3945_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007807 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007808
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007809 /***********************
7810 * 1. Allocating HW data
7811 * ********************/
7812
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007813 /* Disabling hardware scan means that mac80211 will perform scans
7814 * "the hard way", rather than using device's scan. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007815 if (iwl3945_param_disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07007816 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007817 iwl3945_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07007818 }
7819
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007820 if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) ||
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007821 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
Zhu Yib481de92007-09-25 17:54:57 -07007822 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007823 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Zhu Yib481de92007-09-25 17:54:57 -07007824 err = -EINVAL;
7825 goto out;
7826 }
7827
7828 /* mac80211 allocates memory for this device instance, including
7829 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007830 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007831 if (hw == NULL) {
7832 IWL_ERROR("Can not allocate network device\n");
7833 err = -ENOMEM;
7834 goto out;
7835 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007836
Zhu Yib481de92007-09-25 17:54:57 -07007837 SET_IEEE80211_DEV(hw, &pdev->dev);
7838
Zhu Yib481de92007-09-25 17:54:57 -07007839 priv = hw->priv;
7840 priv->hw = hw;
Zhu Yib481de92007-09-25 17:54:57 -07007841 priv->pci_dev = pdev;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007842 priv->cfg = cfg;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007843
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007844 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
7845 hw->rate_control_algorithm = "iwl-3945-rs";
7846 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7847
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007848 /* Select antenna (may be helpful if only one antenna is connected) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007849 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007850#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007851 iwl3945_debug_level = iwl3945_param_debug;
Zhu Yib481de92007-09-25 17:54:57 -07007852 atomic_set(&priv->restrict_refcnt, 0);
7853#endif
Zhu Yib481de92007-09-25 17:54:57 -07007854
Bruno Randolf566bfe52008-05-08 19:15:40 +02007855 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007856 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007857 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007858
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007859 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007860 BIT(NL80211_IFTYPE_STATION) |
7861 BIT(NL80211_IFTYPE_ADHOC);
7862
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007863 hw->wiphy->fw_handles_regulatory = true;
7864
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007865 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007866 hw->queues = 4;
7867
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007868 /***************************
7869 * 2. Initializing PCI bus
7870 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007871 if (pci_enable_device(pdev)) {
7872 err = -ENODEV;
7873 goto out_ieee80211_free_hw;
7874 }
7875
7876 pci_set_master(pdev);
7877
Zhu Yib481de92007-09-25 17:54:57 -07007878 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7879 if (!err)
7880 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7881 if (err) {
7882 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
7883 goto out_pci_disable_device;
7884 }
7885
7886 pci_set_drvdata(pdev, priv);
7887 err = pci_request_regions(pdev, DRV_NAME);
7888 if (err)
7889 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007890
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007891 /***********************
7892 * 3. Read REV Register
7893 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007894 priv->hw_base = pci_iomap(pdev, 0, 0);
7895 if (!priv->hw_base) {
7896 err = -ENODEV;
7897 goto out_pci_release_regions;
7898 }
7899
7900 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7901 (unsigned long long) pci_resource_len(pdev, 0));
7902 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7903
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007904 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7905 * PCI Tx retries from interfering with C3 CPU state */
7906 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007907
Zhu Yi5a66926a2008-01-14 17:46:18 -08007908 /* nic init */
7909 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007910 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007911
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007912 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Zhu, Yi73d7b5a2008-12-05 07:58:40 -08007913 err = iwl3945_poll_direct_bit(priv, CSR_GP_CNTRL,
7914 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007915 if (err < 0) {
7916 IWL_DEBUG_INFO("Failed to init the card\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08007917 goto out_remove_sysfs;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007918 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007919
7920 /***********************
7921 * 4. Read EEPROM
7922 * ********************/
Zhu Yi5a66926a2008-01-14 17:46:18 -08007923 /* Read the EEPROM */
7924 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007925 if (err) {
Zhu Yi5a66926a2008-01-14 17:46:18 -08007926 IWL_ERROR("Unable to init EEPROM\n");
7927 goto out_remove_sysfs;
7928 }
7929 /* MAC Address location in EEPROM same for 3945/4965 */
7930 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007931 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007932 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7933
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007934 /***********************
7935 * 5. Setup HW Constants
7936 * ********************/
7937 /* Device-specific setup */
7938 if (iwl3945_hw_set_hw_setting(priv)) {
7939 IWL_ERROR("failed to set hw settings\n");
7940 goto out_iounmap;
7941 }
7942
7943 /***********************
7944 * 6. Setup priv
7945 * ********************/
7946 priv->retry_rate = 1;
7947 priv->ibss_beacon = NULL;
7948
7949 spin_lock_init(&priv->lock);
7950 spin_lock_init(&priv->power_data.lock);
7951 spin_lock_init(&priv->sta_lock);
7952 spin_lock_init(&priv->hcmd_lock);
7953
7954 INIT_LIST_HEAD(&priv->free_frames);
7955 mutex_init(&priv->mutex);
7956
7957 /* Clear the driver's (not device's) station table */
7958 iwl3945_clear_stations_table(priv);
7959
7960 priv->data_retry_limit = -1;
7961 priv->ieee_channels = NULL;
7962 priv->ieee_rates = NULL;
7963 priv->band = IEEE80211_BAND_2GHZ;
7964
7965 priv->iw_mode = NL80211_IFTYPE_STATION;
7966
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007967 iwl3945_reset_qos(priv);
7968
7969 priv->qos_data.qos_active = 0;
7970 priv->qos_data.qos_cap.val = 0;
7971
7972
7973 priv->rates_mask = IWL_RATES_MASK;
7974 /* If power management is turned on, default to AC mode */
7975 priv->power_mode = IWL_POWER_AC;
7976 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7977
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007978 err = iwl3945_init_channel_map(priv);
7979 if (err) {
7980 IWL_ERROR("initializing regulatory failed: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007981 goto out_release_irq;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007982 }
7983
7984 err = iwl3945_init_geos(priv);
7985 if (err) {
7986 IWL_ERROR("initializing geos failed: %d\n", err);
7987 goto out_free_channel_map;
7988 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007989
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007990 printk(KERN_INFO DRV_NAME
7991 ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name);
7992
7993 /***********************************
7994 * 7. Initialize Module Parameters
7995 * **********************************/
7996
7997 /* Initialize module parameter values here */
7998 /* Disable radio (SW RF KILL) via parameter when loading driver */
7999 if (iwl3945_param_disable) {
8000 set_bit(STATUS_RF_KILL_SW, &priv->status);
8001 IWL_DEBUG_INFO("Radio disabled.\n");
8002 }
8003
8004
8005 /***********************
8006 * 8. Setup Services
8007 * ********************/
8008
8009 spin_lock_irqsave(&priv->lock, flags);
8010 iwl3945_disable_interrupts(priv);
8011 spin_unlock_irqrestore(&priv->lock, flags);
8012
8013 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
8014 if (err) {
8015 IWL_ERROR("failed to create sysfs device attributes\n");
8016 goto out_free_geos;
8017 }
8018
8019 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
8020 iwl3945_setup_deferred_work(priv);
8021 iwl3945_setup_rx_handlers(priv);
8022
8023 /***********************
8024 * 9. Conclude
8025 * ********************/
8026 pci_save_state(pdev);
8027 pci_disable_device(pdev);
8028
8029 /*********************************
8030 * 10. Setup and Register mac80211
8031 * *******************************/
8032
Zhu Yi5a66926a2008-01-14 17:46:18 -08008033 err = ieee80211_register_hw(priv->hw);
8034 if (err) {
8035 IWL_ERROR("Failed to register network device (error %d)\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008036 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07008037 }
8038
Zhu Yi5a66926a2008-01-14 17:46:18 -08008039 priv->hw->conf.beacon_int = 100;
8040 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008041
Zhu Yib481de92007-09-25 17:54:57 -07008042
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008043 err = iwl3945_rfkill_init(priv);
8044 if (err)
8045 IWL_ERROR("Unable to initialize RFKILL system. "
8046 "Ignoring error: %d\n", err);
8047
Zhu Yib481de92007-09-25 17:54:57 -07008048 return 0;
8049
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008050 out_remove_sysfs:
8051 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008052 out_free_geos:
8053 iwl3945_free_geos(priv);
8054 out_free_channel_map:
8055 iwl3945_free_channel_map(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008056
Zhu Yib481de92007-09-25 17:54:57 -07008057
8058 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07008059 destroy_workqueue(priv->workqueue);
8060 priv->workqueue = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008061 iwl3945_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008062
8063 out_iounmap:
8064 pci_iounmap(pdev, priv->hw_base);
8065 out_pci_release_regions:
8066 pci_release_regions(pdev);
8067 out_pci_disable_device:
8068 pci_disable_device(pdev);
8069 pci_set_drvdata(pdev, NULL);
8070 out_ieee80211_free_hw:
8071 ieee80211_free_hw(priv->hw);
8072 out:
8073 return err;
8074}
8075
Reinette Chatrec83dbf62008-03-21 13:53:41 -07008076static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008077{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008078 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008079 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07008080
8081 if (!priv)
8082 return;
8083
8084 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8085
Zhu Yib481de92007-09-25 17:54:57 -07008086 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008087
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008088 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008089
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008090 /* make sure we flush any pending irq or
8091 * tasklet for the driver
8092 */
8093 spin_lock_irqsave(&priv->lock, flags);
8094 iwl3945_disable_interrupts(priv);
8095 spin_unlock_irqrestore(&priv->lock, flags);
8096
8097 iwl_synchronize_irq(priv);
8098
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008099 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008100
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008101 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008102 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008103
8104 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008105 iwl3945_rx_queue_free(priv, &priv->rxq);
8106 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008107
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008108 iwl3945_unset_hw_setting(priv);
8109 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008110
Tomas Winkler3ac7f142008-07-21 02:40:14 +03008111 if (priv->mac80211_registered)
Zhu Yib481de92007-09-25 17:54:57 -07008112 ieee80211_unregister_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008113
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08008114 /*netif_stop_queue(dev); */
8115 flush_workqueue(priv->workqueue);
8116
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008117 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008118 * priv->workqueue... so we can't take down the workqueue
8119 * until now... */
8120 destroy_workqueue(priv->workqueue);
8121 priv->workqueue = NULL;
8122
Zhu Yib481de92007-09-25 17:54:57 -07008123 pci_iounmap(pdev, priv->hw_base);
8124 pci_release_regions(pdev);
8125 pci_disable_device(pdev);
8126 pci_set_drvdata(pdev, NULL);
8127
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008128 iwl3945_free_channel_map(priv);
8129 iwl3945_free_geos(priv);
Emmanuel Grumbach261415f2008-05-29 16:35:25 +08008130 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07008131 if (priv->ibss_beacon)
8132 dev_kfree_skb(priv->ibss_beacon);
8133
8134 ieee80211_free_hw(priv->hw);
8135}
8136
8137#ifdef CONFIG_PM
8138
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008139static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008140{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008141 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008142
Zhu Yie655b9f2008-01-24 02:19:38 -08008143 if (priv->is_open) {
8144 set_bit(STATUS_IN_SUSPEND, &priv->status);
8145 iwl3945_mac_stop(priv->hw);
8146 priv->is_open = 1;
8147 }
Zhu Yib481de92007-09-25 17:54:57 -07008148
Zhu Yib481de92007-09-25 17:54:57 -07008149 pci_set_power_state(pdev, PCI_D3hot);
8150
Zhu Yib481de92007-09-25 17:54:57 -07008151 return 0;
8152}
8153
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008154static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008155{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008156 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008157
Zhu Yib481de92007-09-25 17:54:57 -07008158 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008159
Zhu Yie655b9f2008-01-24 02:19:38 -08008160 if (priv->is_open)
8161 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008162
Zhu Yie655b9f2008-01-24 02:19:38 -08008163 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008164 return 0;
8165}
8166
8167#endif /* CONFIG_PM */
8168
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008169/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008170#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008171/* software rf-kill from user */
8172static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
8173{
8174 struct iwl3945_priv *priv = data;
8175 int err = 0;
8176
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008177 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008178 return 0;
8179
8180 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
8181 return 0;
8182
Tomas Winklera96a27f2008-10-23 23:48:56 -07008183 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008184 mutex_lock(&priv->mutex);
8185
8186 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008187 case RFKILL_STATE_UNBLOCKED:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008188 if (iwl3945_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008189 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008190 goto out_unlock;
8191 }
8192 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008193 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008194 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008195 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008196 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008197 default:
Tomas Winklera96a27f2008-10-23 23:48:56 -07008198 IWL_WARNING("we received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008199 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008200 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008201out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008202 mutex_unlock(&priv->mutex);
8203
8204 return err;
8205}
8206
8207int iwl3945_rfkill_init(struct iwl3945_priv *priv)
8208{
8209 struct device *device = wiphy_dev(priv->hw->wiphy);
8210 int ret = 0;
8211
8212 BUG_ON(device == NULL);
8213
8214 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008215 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
8216 if (!priv->rfkill) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008217 IWL_ERROR("Unable to allocate rfkill device.\n");
8218 ret = -ENOMEM;
8219 goto error;
8220 }
8221
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008222 priv->rfkill->name = priv->cfg->name;
8223 priv->rfkill->data = priv;
8224 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
8225 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
8226 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008227
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008228 priv->rfkill->dev.class->suspend = NULL;
8229 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008230
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008231 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008232 if (ret) {
8233 IWL_ERROR("Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008234 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008235 }
8236
8237 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8238 return ret;
8239
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008240freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008241 if (priv->rfkill != NULL)
8242 rfkill_free(priv->rfkill);
8243 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008244
8245error:
8246 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8247 return ret;
8248}
8249
8250void iwl3945_rfkill_unregister(struct iwl3945_priv *priv)
8251{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008252 if (priv->rfkill)
8253 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008254
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008255 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008256}
8257
8258/* set rf-kill to the right state. */
8259void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv)
8260{
8261
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008262 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008263 return;
8264
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008265 if (iwl3945_is_rfkill_hw(priv)) {
8266 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
8267 return;
8268 }
8269
8270 if (!iwl3945_is_rfkill_sw(priv))
8271 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008272 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008273 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008274}
8275#endif
8276
Zhu Yib481de92007-09-25 17:54:57 -07008277/*****************************************************************************
8278 *
8279 * driver and module entry point
8280 *
8281 *****************************************************************************/
8282
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008283static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008284 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008285 .id_table = iwl3945_hw_card_ids,
8286 .probe = iwl3945_pci_probe,
8287 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008288#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008289 .suspend = iwl3945_pci_suspend,
8290 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008291#endif
8292};
8293
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008294static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008295{
8296
8297 int ret;
8298 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8299 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008300
8301 ret = iwl3945_rate_control_register();
8302 if (ret) {
8303 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
8304 return ret;
8305 }
8306
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008307 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008308 if (ret) {
8309 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008310 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07008311 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008312#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008313 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008314 if (ret) {
8315 IWL_ERROR("Unable to create driver sysfs file\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008316 goto error_debug;
Zhu Yib481de92007-09-25 17:54:57 -07008317 }
8318#endif
8319
8320 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008321
8322#ifdef CONFIG_IWL3945_DEBUG
8323error_debug:
8324 pci_unregister_driver(&iwl3945_driver);
8325#endif
8326error_register:
8327 iwl3945_rate_control_unregister();
8328 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07008329}
8330
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008331static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008332{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008333#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008334 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008335#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008336 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008337 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07008338}
8339
Reinette Chatrea0987a82008-12-02 12:14:06 -08008340MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08008341
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008342module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008343MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008344module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008345MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008346module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008347MODULE_PARM_DESC(hwcrypto,
8348 "using hardware crypto engine (default 0 [software])\n");
Wu, Fengguang95aa1942008-12-17 16:52:30 +08008349module_param_named(debug, iwl3945_param_debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008350MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008351module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008352MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8353
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008354module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008355MODULE_PARM_DESC(queues_num, "number of hw queues.");
8356
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008357module_exit(iwl3945_exit);
8358module_init(iwl3945_init);